Summary
Plot type.
Remarks
The type of the output plotted on the output panel. Default = Line
Supported types are:
Line
Points
Histogram
Syntax
public PlotType PlotType{ get; set; }
Example 1
//... //The result is plotted as a Histogram. [Output("Commodity Channel Index", PlotType = PlotType.Histogram)] public IndicatorDataSeries SMA { get; set; } public override void Calculate(int index) { //... }
Example 2
//... //Plot the result as a set of yellow points. [Output("Main", LineColor = "Yellow", PlotType = PlotType.Points)] public IndicatorDataSeries Result { get; set; } //...