If I have 2 time frames, 100 Tick (index 0) and 50 Tick (index 1) with CalculateOnBarClose = True and I say:
If(BarsInProgess == 1)
{
if(Lows[0][0] < Lows[1][0])
{
x=1
}
}
If that is the case how would you reference the current 100 tick bar that is currently being formed?
I am asking as I have some logic that is not working as I thought.

Comment