Aroon

StockSharp.Algo.Indicators

Aroon indicator.

Inherits: BaseComplexIndicator<IAroonValue>

Constructors

Aroon
public Aroon()
aroon = Aroon()

Initializes a new instance of the Aroon.

Aroon
public Aroon(AroonUp up, AroonDown down)
aroon = Aroon(up, down)

Initializes a new instance of the Aroon.

up
Aroon Up.
down
Aroon Down.

Properties

Down
public AroonDown Down { get; }
value = aroon.Down

Aroon Down.

Length
public int Length { get; set; }
value = aroon.Length
aroon.Length = value

Period length.

Measure
public override IndicatorMeasures Measure { get; }
value = aroon.Measure

IndicatorMeasures.

Up
public AroonUp Up { get; }
value = aroon.Up

Aroon Up.

Methods

CreateValue
protected override IAroonValue CreateValue(DateTime time)
result = aroon.CreateValue(time)

Create .

time
Time
Load
public override void Load(SettingsStorage storage)
aroon.Load(storage)

Load settings.

storage
Settings storage.
Save
public override void Save(SettingsStorage storage)
aroon.Save(storage)

Save settings.

storage
Settings storage.
ToString
public override string ToString()
result = aroon.ToString()

Returns a string representation of the tuple, with values separated by commas.

Returns: A string representing the tuple's values.