Skip to content

Name Property

Summary

The name of the Indicator.

Remarks

The name is displayed to the left of the indicator panel.

Signature

1
public string Name {get;}

Return Value

string

Declaring Type

cAlgo.API.IndicatorAttribute

Examples

1
2
3
4
5
6
7
8
 namespace cAlgo.Indicators
 {
     [Indicator("IndicatorName")]
     public class SampleIndicator : Indicator
     {
         //...
     }
 }

Last update: March 17, 2023