Please forgive me if this is documented somewhere - I've looked without success - but if I have a five-minute chart and I want to reference some indicator value on a one-minute chart, I would do this in the strategy:
Add(PeriodType.Minute, 1); // BarsArray[1]
if ( DoubleStochastics (BarsArray[1], 11).K[1] > 90 )
But what do I do if I want to reference the Open/High/Low/Close of an actual price bar on that same one-minute chart? In pseudo-code it would be something like Close[0](BarsArray[1] - although that's definitely not right.
Thanks in advance.

Comment