IchimokuSenkouBLine

StockSharp.Algo.Indicators

Senkou (B) line.

Inherits: DecimalLengthIndicator

Constructors

IchimokuSenkouBLine
public IchimokuSenkouBLine(IchimokuLine kijun)
ichimokuSenkouBLine = IchimokuSenkouBLine(kijun)

Initializes a new instance of the IchimokuLine.

kijun
Kijun line.

Properties

Kijun
public IchimokuLine Kijun { get; }
value = ichimokuSenkouBLine.Kijun

Kijun line.

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

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

Methods

CalcIsFormed
protected override bool CalcIsFormed()
result = ichimokuSenkouBLine.CalcIsFormed()

Calc IsFormed.

Returns: IsFormed

OnProcessDecimal
protected override decimal? OnProcessDecimal(IIndicatorValue input)
result = ichimokuSenkouBLine.OnProcessDecimal(input)

To handle the input value.

input
The input value.

Returns: The new value of the indicator.

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