Class T3MovingAverage
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.Algo.dll
T3 Moving Average.
[Display(ResourceType = typeof(LocalizedStrings), Name = "T3MA", Description = "T3MovingAverage")]
[Doc("topics/indicators/t3_moving_average.html")]
public class T3MovingAverage : LengthIndicator<decimal>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
- Inheritance
-
T3MovingAverage
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
T3MovingAverage()
Initializes a new instance of the T3MovingAverage.
public T3MovingAverage()
Properties
NumValuesToInitialize
Number of values that need to be processed in order for the indicator to initialize (be IsFormed equals true). null if undefined.
public override int NumValuesToInitialize { get; }
Property Value
VolumeFactor
Volume factor.
[Display(ResourceType = typeof(LocalizedStrings), Name = "Volume", Description = "VolumeFactor", GroupName = "General")]
public decimal VolumeFactor { get; set; }
Property Value
Methods
CalcIsFormed()
Calc IsFormed.
protected override bool CalcIsFormed()
Returns
OnProcessDecimal(IIndicatorValue)
To handle the input value.
protected override decimal? OnProcessDecimal(IIndicatorValue input)
Parameters
input
IIndicatorValueThe input value.
Returns
- decimal?
The new value of the indicator.
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).
public override void Reset()
ToString()
public override string ToString()