Table of Contents

Class DonchianMiddle

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

Represents the middle band of Donchian Channels.

[IndicatorHidden]
public class DonchianMiddle : BaseIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
DonchianMiddle
Implements
IPersistable
ICloneable<IIndicator>
Inherited Members
Extension Methods

Constructors

DonchianMiddle(Highest, Lowest)

Initializes a new instance of the DonchianMiddle.

public DonchianMiddle(Highest upperBand, Lowest lowerBand)

Parameters

upperBand Highest

UpperBand

lowerBand Lowest

LowerBand

Properties

LowerBand

Lower band indicator.

public Lowest LowerBand { get; }

Property Value

Lowest

UpperBand

Upper band indicator.

public Highest UpperBand { get; }

Property Value

Highest

Methods

CalcIsFormed()

Calc IsFormed.

protected override bool CalcIsFormed()

Returns

bool

IsFormed

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.