Check if indicator arrow signal wa appear on last 8 previous candle.
-
Hi I need some help.
I have a custom indicator signal that will appearing a arrow symbols.
But I want to filter it with MA cross line.Normally the arrow signal will appear first before MA line cross over.
How can I make my EA check the arrow on the last 8 previous candle?
-
From what I understand, you want to check if there is an arrow somewhere in the last 8 candles. Only for custom indicators you have extra options in the Condition block. Try this option:

I didn't tested it, but it should work, because if the highest value is EMPTY_VALUE, the Condition block itself would not pass if either value equals to EMPTY_VALUE.Otherwise you can try this block - Indicator moves within limits. This block and these special options in Condition are the only places in the EA builder where some indicator values in the past can be checked.