i am developing an indicator which has two plots, first being a bar and the second a line. I would like the line plot to plot on top of the bar plot.
protected override void Initialize() { Add(new Plot(new Pen(Color.Red, 4), PlotStyle.Bar, "Sells")); Add(new Plot(new Pen(Color.Black, 2), PlotStyle.Line, "Vol")); ...
regards
Comment