The Chande Momentum Oscillator, abbreviated as Chandle, is a technical indicator used in financial markets to measure the momentum of a security’s price. It is similar to the Relative Strength Index (RSI) but uses a different calculation method to provide momentum signals.
Chandle[N](price)
This function takes two parameters:
The Chande Momentum Oscillator is calculated by first determining the positive and negative variations in the price:
Next, calculate the moving averages of these variations over the specified period N:
The final oscillator value is then calculated using the formula:
(Mpos - Mneg) / (Mpos + Mneg) * 100
This results in a value that oscillates between -100 and 100.
Chandle1 = Chandle[20](High)
Chandle2 = Chandle[20](Low)
Result = (Chandle1 + Chandle2) / 2
RETURN Result AS "Average Chandle"
In this example, the Chande Momentum Oscillator is calculated for both the high and low prices over a 20-period span. The average of these two oscillators is then computed and returned as “Average Chandle”.
The Chande Momentum Oscillator is useful for identifying potential buy and sell signals based on its value crossing specific thresholds (-50 for buys, +50 for sells). It can also be used to detect divergences which may indicate potential reversals. Applying a moving average to the oscillator can help smooth out short-term fluctuations and provide clearer signals.