I havent seen this error before, and it is annoying for 2 reasons:
1. The data has been in use for some time and has never given this issue before
2. The logic of the error is weird (for me, at least YMMV)

These are the errors, and they only appeared the times I have copied here. The WMA has a maximum test during optimization of 32 bars, and FisherTransform of 11 .... the CurrentBar settings are >200 on the OnBarUpdate() ...
Error on calling 'OnBarUpdate' method for indicator 'WMA' on bar 49:
You are accessing an index with a value that is invalid since its out of range.
I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart.
Error on calling 'OnBarUpdate' method for indicator 'FisherTransform':
You are accessing an index with a value that is invalid since its out of range.
I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart.
Error on calling 'OnBarUpdate' method for indicator 'FisherTransform' on bar 1584:
You are accessing an index with a value that is invalid since its out of range.
I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart.,
So how can I have a lack of data at bar 1584?


How can I locate that bar in the chart of the Strategy Analyzer without manually counting?
Once again, Thanks !
Jon

Comment