Class Trix
Triple Exponential Moving Average.
Inherited Members
Namespace: StockSharp.Algo.Indicators
Assembly: StockSharp.Algo.dll
Syntax
[DescriptionLoc("Str752", false)]
public class Trix : LengthIndicator<IIndicatorValue>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Remarks
http://www2.wealth-lab.com/WL5Wiki/TRIX.ashx http://www.incrediblecharts.com/indicators/trix_indicator.php.
Constructors
Trix()
Initializes a new instance of the VolumeWeightedMovingAverage.
Declaration
public Trix()
Properties
IsFormed
Whether the indicator is set.
Declaration
public override bool IsFormed { get; }
Property Value
Type | Description |
---|---|
Boolean |
Overrides
StockSharp.Algo.Indicators.LengthIndicator<StockSharp.Algo.Indicators.IIndicatorValue>.IsFormed
RocLength
The length of period RateOfChange.
Declaration
[DescriptionLoc("Str753", false)]
[CategoryLoc("General")]
public int RocLength { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
OnProcess(IIndicatorValue)
To handle the input value.
Declaration
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
Type | Name | Description |
---|---|---|
IIndicatorValue | input | The input value. |
Returns
Type | Description |
---|---|
IIndicatorValue | The resulting value. |
Overrides
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).
Declaration
public override void Reset()
Overrides
StockSharp.Algo.Indicators.LengthIndicator<StockSharp.Algo.Indicators.IIndicatorValue>.Reset()
Implements
Ecng.Serialization.IPersistable
Ecng.Common.ICloneable<>