KeltnerBandCenter

Category: Indicators

The KeltnerBandCenter function in ProBuilder language calculates the center line of the Keltner Channel, which is a popular technical analysis indicator used to identify potential volatility and trend directions in a market. The center line is essentially a moving average of the typical price over a specified period.

Syntax:

KeltnerBandCenter[period]

Where period specifies the number of bars used to calculate the moving average of the typical price.

Calculation Details:

  • Typical Price: Calculated as (high + low + close) / 3.
  • The center line of the Keltner Channel is a simple moving average of this typical price over the specified period.

Example:

myCenterLine = KeltnerBandCenter[20]

This example calculates the center line of the Keltner Channel using a 20-period moving average of the typical price.

Additional Information:

The Keltner Channel is composed of three lines: the center line described here, and two outer bands which are calculated based on the average true range (ATR) added to and subtracted from the center line. The position of the price relative to these bands can help traders identify potential breakout or reversal opportunities. The KeltnerBandCenter function specifically helps in understanding the underlying trend by smoothing out price movements over the specified period.

Related Instructions:

  • KeltnerBandDown indicators
  • KeltnerBandUp indicators
  • Logo Logo
    Loading...