Skip to content

Middle Property

Summary

Gets or sets the middle of the highest high and the lowest low of the period.

Signature

1
public abstract IndicatorDataSeries Middle {get; set;}

Return Value

IndicatorDataSeries

Declaring Type

cAlgo.API.Indicators.DonchianChannel

Examples

1
2
3
4
 //...
 private DonchianChannel donchian;
 //...
 Print("Middle Value = {0}", donchian.Middle.LastValue);

Last update: March 30, 2023