Class IchimokuSenkouALine
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.Algo.dll
Senkou (A) line.
public class IchimokuSenkouALine : LengthIndicator<decimal>, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
- Inheritance
-
IchimokuSenkouALine
- Implements
-
IPersistableICloneable<IIndicator>
- Inherited Members
- Extension Methods
Constructors
IchimokuSenkouALine(IchimokuLine, IchimokuLine)
Initializes a new instance of the IchimokuSenkouALine.
public IchimokuSenkouALine(IchimokuLine tenkan, IchimokuLine kijun)
Parameters
tenkan
IchimokuLineTenkan line.
kijun
IchimokuLineKijun line.
Properties
Kijun
Kijun line.
[Browsable(false)]
public IchimokuLine Kijun { get; }
Property Value
Length
Period length. By default equal to 1.
public override int Length { get; set; }
Property Value
Tenkan
Tenkan line.
[Browsable(false)]
public IchimokuLine Tenkan { get; }
Property Value
Methods
OnProcess(IIndicatorValue)
To handle the input value.
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
input
IIndicatorValueThe input value.
Returns
- IIndicatorValue
The resulting value.