IchimokuSenkouALine

StockSharp.Algo.Indicators

Senkou (A) line.

Inherits: DecimalLengthIndicator

Constructors

IchimokuSenkouALine
public IchimokuSenkouALine(IchimokuLine tenkan, IchimokuLine kijun)
ichimokuSenkouALine = IchimokuSenkouALine(tenkan, kijun)

Initializes a new instance of the IchimokuSenkouALine.

tenkan
Tenkan line.
kijun
Kijun line.

Properties

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

Kijun line.

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

Period length. By default equal to 1.

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

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

Tenkan
public IchimokuLine Tenkan { get; }
value = ichimokuSenkouALine.Tenkan

Tenkan line.

Methods

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

To handle the input value.

input
The input value.

Returns: The new value of the indicator.