Time[highestBarsAgo]; will NOT compile error CS0201 - i have this in the OnBarUpdate area - is that where it goes or in State.Configure
I do not really follow this
Therefore the bar index would be CurrentBar - HighestBar().
HighestBar() from what time frame - I am looking for highestbar of last 78 bars of a dataseries, that dataseries could be a 30 minute bar and that would be 6 days of 30 charts
so I am using startBarIndexmaxHigh1 ie named maxHigh1 to reference the HighestBar of dataseries Closes[1]
startBarIndexmaxHigh1 = Bars.GetBar( highestBarsAgo );// from the Time[highestBarsAgo]
or
startBarIndexmaxHigh1 = ( CurrentBar - HighestBar() ); // again how does this identify with the correct dataseries HighestBar(Highs[1], 78);
Thanks again

Comment