There is 2 moving average in my indicator. I want to create a line in the chart for both with AddPlot.
But only one line show up.
In if (State == State.SetDefaults) there is AddPlot(Brushes.Yellow, "CMAmultiple0");
AddPlot(Brushes.Aqua, "CMAmultiple1");
In OnBarUpdate()
Value[0] = cma0; and Value[1] = cma1; if i print them both it return the right answer and both cma's.
But only Value[0] = cma0; produce a line in the chart.
Whats wrong? I did like in the tutorial https://ninjatrader.com/support/helpGuides/nt8/ Indicator which adds three value series
Thank you

Comment