Table of Contents

Class WaveTrendOscillator

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

Wave Trend Oscillator.

[Display(ResourceType = typeof(LocalizedStrings), Name = "WTO", Description = "WaveTrendOscillator")]
[IndicatorIn(typeof(CandleIndicatorValue))]
public class WaveTrendOscillator : BaseComplexIndicator, IComplexIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
WaveTrendOscillator
Implements
IPersistable
ICloneable<IIndicator>
Derived
Inherited Members
Extension Methods

Constructors

WaveTrendOscillator()

Initializes a new instance of the WaveTrendOscillator.

public WaveTrendOscillator()

Properties

AveragePeriod

Average period for WT2.

[Display(ResourceType = typeof(LocalizedStrings), Name = "SMA", Description = "SimpleMovingAverage", GroupName = "General")]
public int AveragePeriod { get; set; }

Property Value

int

DPeriod

D period.

[Display(ResourceType = typeof(LocalizedStrings), Name = "Period", Description = "Period", GroupName = "General")]
public int DPeriod { get; set; }

Property Value

int

EsaPeriod

ESA period.

[Display(ResourceType = typeof(LocalizedStrings), Name = "EMA", Description = "ExponentialMovingAverage", GroupName = "General")]
public int EsaPeriod { get; set; }

Property Value

int

Measure

public override IndicatorMeasures Measure { get; }

Property Value

IndicatorMeasures

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

Load(SettingsStorage)

Load settings.

public override void Load(SettingsStorage storage)

Parameters

storage SettingsStorage

Settings storage.

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

Save(SettingsStorage)

Save settings.

public override void Save(SettingsStorage storage)

Parameters

storage SettingsStorage

Settings storage.

ToString()

public override string ToString()

Returns

string