Table of Contents

Class IchimokuSenkouALine

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

Senkou (A) line.

public class IchimokuSenkouALine : LengthIndicator<decimal>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable, ILengthIndicator
Inheritance
IchimokuSenkouALine
Implements
IPersistable
ICloneable<IIndicator>
Inherited Members
Extension Methods

Constructors

IchimokuSenkouALine(IchimokuLine, IchimokuLine)

Initializes a new instance of the IchimokuSenkouALine.

public IchimokuSenkouALine(IchimokuLine tenkan, IchimokuLine kijun)

Parameters

tenkan IchimokuLine

Tenkan line.

kijun IchimokuLine

Kijun line.

Properties

Kijun

Kijun line.

[Browsable(false)]
public IchimokuLine Kijun { get; }

Property Value

IchimokuLine

Length

Period length. By default equal to 1.

public override int Length { get; set; }

Property Value

int

Tenkan

Tenkan line.

[Browsable(false)]
public IchimokuLine Tenkan { get; }

Property Value

IchimokuLine

Methods

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.