Skip to content

Name Property

Summary

The plot name

Remarks

Displayed in the User Interface when adding an new instance of the Indicator.

Signature

1
public string Name {get;}

Return Value

string

Declaring Type

cAlgo.API.OutputAttribute

Examples

1
2
3
4
5
 //...
 //The plotted indicator name is Simple Moving Average.
 [Output("Simple Moving Average")]
 public IndicatorDataSeries SMA { get; set; }
 //...

Last update: March 23, 2023