I would now like to include an array of RTY data to the script (RTY5minute,15minute, 60minute, 1daily). I've already combined the RTY data series with the ES data series. I just don't know how to add the second array of data. Do I code it like this:
ES5[0][0], ES15[1][0], ES60[2][0], ES1DY[3][0], RTY5[4][0], RTY15[5][0], RTY60[6][0], RTY1DY[7][0].
protected override void OnBarUpdate()
{ if(BarsInProgress == 7)
{ if(CurrentBars[7] < 1) return;
Thanks.

Comment