How do I access the values of Senkouspan A and B that are shifted 26 periods in the future in the Ichimoku indicator (MT5)?
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...

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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!