Summary
Sets the Width of the Output property.
Remarks
This Width will be used when the line for this Output is plotted.
Syntax
public float Thickness{ get; set; }
Example 1
//... //The result is plotted as a line with thickness level five [Output("Simple Moving Average", Thickness = 5)] public IndicatorDataSeries SMA { get; set; } public override void Calculate(int index) { //... }