Table of Contents

Class T3MovingAverage

Namespace
StockSharp.Algo.Indicators
Assembly
StockSharp.Algo.dll

T3 Moving Average.

[Display(ResourceType = typeof(LocalizedStrings), Name = "T3MA", Description = "T3MovingAverage")]
public class T3MovingAverage : LengthIndicator<decimal>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
T3MovingAverage
Implements
IPersistable
ICloneable<IIndicator>
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

int

VolumeFactor

Volume factor.

[Display(ResourceType = typeof(LocalizedStrings), Name = "Volume", Description = "VolumeFactor", GroupName = "General")]
public decimal VolumeFactor { get; set; }

Property Value

decimal

Methods

CalcIsFormed()

Calc IsFormed.

protected override bool CalcIsFormed()

Returns

bool

IsFormed

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.

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()

Returns

string