- It is important that a value is assigned on every call to OnBarUpdate for that series. Because its a circular ring buffer, if values are not assigned to it for every bar update, its possible to discover old values once the buffer is full.
- As covered in the documentation, IsValidDataPoint, IsValidDataPointAt, Reset and ResetAt are not valid calls. As a result, there is no way to skip plotting values of the series.
- If a value is not assigned during OnBarUpdate it will remain the default value.
If a Series<T> is created with a different look back from the one set for the indicator, there is no way to know that it was set differently. There is no way to query a Series<T> itself to see what sort of look back it is using.
If a Series<T> is only keeping the last 256 values, how does a chart plot more then 256 values on screen if there are more then 256 values visible?

Comment