How do I access the values of Senkouspan A and B that are shifted 26 periods in the future in the Ichimoku indicator (MT5)?

 
Since the values of SSA and SSB are 26 periods in the future, and you cannot access them with say, SSA[-26] or SSB[-26], how do I use those values in an EA?

If you just access the values of SSA and SSB, it won't use the values 26 periods ahead but will use the current value of SSA and SSB below the current price.

How do I unshift the Kumo and access its values?

The final condition in my EA is whether the future Kumo is red or green.

Much appreciated to anyone that can solve this problem! 
 
Your topic has been moved to the section: Technical Indicators
 

The values shift only in display, not in the arrays (neither they have more elements than other buffers), to access the latest value in the future (displaced values) you access it as if it was the latest candle, that would be SSA[0]

The value at the current candle would be SSA[26]. You would get the same result accessing current price though...