AddPlot(new Stroke(Brushes.Orange, 2), PlotStyle.Dot, "Buystop");
AddPlot(new Stroke(Brushes.Tomato, 2), PlotStyle.Dot, "SellStop");
AddPlot(new Stroke(Brushes.Chocolate, 2), PlotStyle.Dot, "Shares");
I'm setting the values like this:
Value[0] = BuyPrice;
Value[1] = SellPrice;
Value[2] = Qty;
I'm trying to display these values in Market Analyzer. The only one that is working is Value[0] = BuyPrice
The other values always display 0
Print statements will show the correct numbers of Value[1] and Value[2]
What am I missing?

Comment