Summary
The plot name
Remarks
Displayed in the User Interface when adding an new instance of the Indicator.
Syntax
public string Name{ get; }
Example 1
//... //The plotted indicator name is Simple Moving Average. [Output("Simple Moving Average")] public IndicatorDataSeries SMA { get; set; } //...