int closeBarIndex3 = CurrentBars[3] - AnchorONELookBackPeriod;
so I thought that was what I was doing below
double close3Price = Close[closeBarIndex3]
that needs to be double close3Price = Closes[closeBarIndex3][AnchorONELookBackPeriod] /// ie set to 30
if so creates an error in the LOG, it does compile
or does this just mean Closes[int barSeriesIndex][int barsAgo] Closes[3][30]
I THINK THIS WILL MEAN THAT MY OTHER INDICATOR IS INCORRECT AS WELL

Comment