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.
KeltnerBandDown[period]
Where period specifies the number of days for the moving average calculation used in the Keltner Channel.
Calculation Details:
(high + low + close) / 3.KeltnerBandDown calculates, is derived by subtracting the SMA of the daily range (high – low) from the middle line.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.
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.