KeltnerBandDown

Category: Indicators

The KeltnerBandDown function in ProBuilder language is used to calculate the lower boundary of the Keltner Channel, a popular technical analysis indicator. This function helps traders identify potential oversold conditions when the price of an asset falls below this lower line.

Syntax:

KeltnerBandDown[period]

Where period specifies the number of days for the moving average calculation used in the Keltner Channel.

Calculation Details:

  • The middle line of the Keltner Channel is a simple moving average (SMA) of the typical price over a specified period. The typical price is calculated as (high + low + close) / 3.
  • The lower line, which is what KeltnerBandDown calculates, is derived by subtracting the SMA of the daily range (high – low) from the middle line.

Example Usage:

lowerBand = KeltnerBandDown[14]

This example calculates the lower line of the Keltner Channel using a 14-day period for both the moving average of the typical price and the average daily range.

Additional Information:

The Keltner Channel is a volatility-based envelope set above and below an exponential moving average. This indicator is similar to Bollinger Bands, but uses the average true range for band width instead of standard deviation. It is often used to spot potential breakouts or breakdowns by comparing the current price to these dynamic support and resistance levels.

Related Instructions:

  • KeltnerBandCenter indicators
  • KeltnerBandUp indicators
  • Logo Logo
    Loading...