SuperTrend
StockSharp.Algo.Indicators
SuperTrend indicator.
Inherits: BaseIndicator
Constructors
SuperTrend
public SuperTrend()
superTrend = SuperTrend()
Initializes a new instance of the SuperTrend class.
SuperTrend
public SuperTrend(AverageTrueRange atr)
superTrend = SuperTrend(atr)
Initializes a new instance of the SuperTrend class.
- atr
- AverageTrueRange
Properties
Length
public int Length { get; set; }
value = superTrend.Length
superTrend.Length = value
ATR period.
Multiplier
public decimal Multiplier { get; set; }
value = superTrend.Multiplier
superTrend.Multiplier = value
Multiplier for ATR.
NumValuesToInitialize
public override int NumValuesToInitialize { get; }
value = superTrend.NumValuesToInitialize
Number of values that need to be processed in order for the indicator to initialize (be IsFormed equals ). if undefined.
Methods
Load
public override void Load(SettingsStorage storage)
superTrend.Load(storage)
Load settings.
- storage
- Settings storage.
OnProcess
protected override IIndicatorValue OnProcess(IIndicatorValue input)
result = superTrend.OnProcess(input)
To handle the input value.
- input
- The input value.
Returns: The resulting value.
Reset
public override void Reset()
superTrend.Reset()
To reset the indicator status to initial. The method is called each time when initial settings are changed (for example, the length of period).
Save
public override void Save(SettingsStorage storage)
superTrend.Save(storage)
Save settings.
- storage
- Settings storage.
ToString
public override string ToString()
result = superTrend.ToString()
Преобразовать к строковому представлению.
Returns: Строковое представление.