CustomIndicatorKeltner Method (Series, numeric, SummatorType, Double)

GF Charts Help
Keltner Channel

Namespace:  GF.Clients.Charts.Custom
Assembly:  GF.Clients.Charts (in GF.Clients.Charts.dll) Version: a2f537322cdaf87d2796303449681c087e96766d
Syntax

public ISeriesArray Keltner(
	Series Input,
	numeric Window,
	SummatorType AverageType,
	double NumDev
)

Parameters

Input
Type: GF.Clients.Charts.TimeSeriesSeries
Input data (historical series or another indicator) that will be processed by the indicator. Category: Data.
Window
Type: GF.Clients.Charts.Custom.EL.Runtimenumeric
Processing window size or period of indicator. Category: Periods.
AverageType
Type: GF.Clients.Charts.TimeSeries.Indicators.SummatorsSummatorType
Parameter: Moving Average. Category: Data.
NumDev
Type: SystemDouble
Parameter: # deviations. Category: Data.

Return Value

Type: ISeriesArray
Array of series: Top, Middle, Bottom
Remarks

Keltner Channel

Default: Window=20, AverageType=Exponential, NumDev=1.5

Output: Top, Middle, Bottom

Examples

Keltner(InputData, 20, SummatorType.Exponential, 1.5)
See Also

Reference