Hi,
I have a real time chart (opened clicking on Live data symbol) with several bar (more than 100 bars) and I am collecting real time data
If I manually apply to this chart an indicator like BollingerLowerBand I see the graph, all the historical calculated values and for the last LIVE bars I see a NaN value (correct! because I use CLOSE to calculate the indicator)
If I run an Live System (I am using the example BollingerbandPenetration) and I programmatically
do this in the Startup (having previously declared Private BBU As BollingerBandUpper):
BBL =
New BollingerBandLower(14, 1.5)BBL.SetInputs(Close)
BBL.ChartSettings.Color = Color.Crimson
BBL.ChartSettings.ShowInChart =
TrueI see the labbel BBL added to the chart but all historical values are NaN
I supposed I have to wait to collect new 14 bars aftert LIVE system startup before having a value.... not true... always nan
what I am missing?
Thanks a lot
GB