to be able to change the way the plot is displayed on the panel.
The online docs mention that there are undocumented features.
The default behavior shows the name such as "PriorDay Close" to the left most portion
of the line plotted on the panel. The plotted line goes only part way across the chart.
We wish to optionally show the plots across the screen and suppress the display of the name.
The indicator we are replacing had that behavior which is the reason we are trying to support
that particular look.
We have for instance a plot in the Initialize() area such as....
....
Add(new Plot(new Pen(Color.HotPink,4), PlotStyle.Line,"PriorDay Close "));
We can see how to keep the plots from being shown in the panel which controls options.
That is be ensuring that
PlotsConfigurable = true;
genDataSeries = new DataSeries(this);
What is it that needs to happen for us to secure our objective in the alternative
display of the plots.
Thanks in advance.
Comment