I'm trying to express this simple condition:
if (Close [0] < Close[1])
with a Multiple Timeframe:
I can do this with indicators OK:
CCI(BarsArray[2], 20)[0] > 200)
Just can't do it with a simple:
Close [0] < Close[1]
Is it something like if (Close[BarsArray[2], 0] < Close[BarsArray[2], 1])?
Thanks

Comment