images/contents.gifimages/index.gifimages/prev1.gifimages/next1.gif

KELTNER()

Definition Keltner Channel center line. The Keltner centerline is a moving average of the specified period (for the study function, a simple moving average is always used). The upper and lower channel lines are the centerline plus and minus a scale factor times the modified moving average of true range. To obtain the upper channel line, specify a positive multiplier; to obtain the lower line, specify a negative multiplier. Note that since the true range is used, the data series must be an unqualified instrument name.

Syntax images/aspen00000215.gif

Formula Center Line:

images/aspen00000216.gif

Where:

CL = center line

EAVG = exponential moving average

n = number of bars

P = price

And:

Average True Range:

images/aspen00000217.gif

Where:

ATR = average true range

R = range

n = number of bars

H = high

L = low

And:

Upper Channel Line:

images/aspen00000218.gif

Where:

UP = upper channel value

CL = center line

ATR = average true range

C = constant

And:

Lower Channel Line:

images/aspen00000219.gif

Where:

DN = lower channel value

CL = center line

ATR = average true range

C = constant

Parameters SERIES
Required if the formula name declares the SERIES parameter.

INPUT
Required if the formula name declares the INPUT parameter.

PERIOD
Required if the formula name declares the PERIOD parameter.

<shift>
A number, positive or negative, enclosed in brackets defining the number of bars (periods) to shift the formula line. Typically used only in formulas that will be rendered in chart windows.

<multiplier>
Number of bars. See Center Line calculation, above.

Examples KELTNER_EX1(SERIES,PERIOD=9,MULT=12)=KELTNER(SERIES,PERIOD,MULT)

KELTNER_EX2(INPUT,PERIOD=9,MULT=12)=KELTNER(INPUT,PERIOD,MULT)