DynamicZonesRSI

StockSharp.Algo.Indicators

Dynamic Zones RSI indicator.

Inherits: DecimalLengthIndicator

Constructors

DynamicZonesRSI
public DynamicZonesRSI()
dynamicZonesRSI = DynamicZonesRSI()

Initializes a new instance of the DynamicZonesRSI.

Properties

Length
public override int Length { get; set; }
value = dynamicZonesRSI.Length
dynamicZonesRSI.Length = value

Period length. By default equal to 1.

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

IndicatorMeasures.

NumValuesToInitialize
public override int NumValuesToInitialize { get; }
value = dynamicZonesRSI.NumValuesToInitialize

Number of values that need to be processed in order for the indicator to initialize (be IsFormed equals ). if undefined.

OverboughtLevel
public decimal OverboughtLevel { get; set; }
value = dynamicZonesRSI.OverboughtLevel
dynamicZonesRSI.OverboughtLevel = value

Overbought level.

OversoldLevel
public decimal OversoldLevel { get; set; }
value = dynamicZonesRSI.OversoldLevel
dynamicZonesRSI.OversoldLevel = value

Oversold level.

Methods

Load
public override void Load(SettingsStorage storage)
dynamicZonesRSI.Load(storage)

Load settings.

storage
Settings storage.
OnProcessDecimal
protected override decimal? OnProcessDecimal(IIndicatorValue input)
result = dynamicZonesRSI.OnProcessDecimal(input)

To handle the input value.

input
The input value.

Returns: The new value of the indicator.

Reset
public override void Reset()
dynamicZonesRSI.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).

Save
public override void Save(SettingsStorage storage)
dynamicZonesRSI.Save(storage)

Save settings.

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

Преобразовать к строковому представлению.

Returns: Строковое представление.