Chaikin Oscillator
Description
The Chaikin Oscillator is a volume indicator that lets the trader know whether new highs are also accompanied by new volumes. This oscillator is a simple MACD that is applied to the accumulation/distribution line. Hereby, the difference between a 3-day exponential moving average and a 10-day exponential smoothed average for the accumulation/distribution line is calculated.
Interpretation
The interpretation of the Chaikin Oscillator is similar to the principle of the accumulation/distribution. All an oscillator does is show the changes in liquidity for the instrument.
Usage
Return value
double
When using this method with an index (e.g. ChaikinOscillator(3, 10)[int barsAgo] ), the value of the indicator will be outputted for the referenced bar.
Parameters
inSeries Input data series for the indicator
fast Number of bars included in the calculation for the fast EMA
slow Number of bars included in the calculation for the slow EMA
Visualization
Example
Last updated