Table of Contents

Class DoubleExponentialMovingAverage

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

Double Exponential Moving Average.

[Display(ResourceType = typeof(LocalizedStrings), Name = "DEMA", Description = "DoubleExponentialMovingAverage")]
[Doc("topics/api/indicators/list_of_indicators/dema.html")]
public class DoubleExponentialMovingAverage : LengthIndicator<decimal>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
DoubleExponentialMovingAverage
Implements
Derived
Inherited Members
Extension Methods

Remarks

Constructors

DoubleExponentialMovingAverage()

Initializes a new instance of the DoubleExponentialMovingAverage.

public DoubleExponentialMovingAverage()

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

Methods

CalcIsFormed()

Calc IsFormed.

protected override bool CalcIsFormed()

Returns

bool

IsFormed

OnProcessDecimal(IIndicatorValue)

To handle the input value.

protected override decimal? OnProcessDecimal(IIndicatorValue input)

Parameters

input IIndicatorValue

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