mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-08-02 23:27:43 +00:00
68 lines
5.1 KiB
Markdown
68 lines
5.1 KiB
Markdown
# Chaikin Oscillator (CHO) Professional
|
|
|
|
## 1. Summary (Introduction)
|
|
|
|
The Chaikin Oscillator (CHO) is a momentum indicator developed by Marc Chaikin. It is an "indicator of an indicator," as it is derived from the Accumulation/Distribution Line (ADL). The CHO measures the momentum of the ADL by comparing a fast and a slow moving average of the ADL.
|
|
|
|
Its primary purpose is to anticipate changes in the direction of the ADL, and by extension, to signal shifts in buying and selling pressure.
|
|
|
|
Our `CHO_Pro` implementation is a unified, professional version that allows the underlying ADL calculation to be based on either **standard** or **Heikin Ashi** candles, selectable from a single input parameter.
|
|
|
|
## 2. Mathematical Foundations and Calculation Logic
|
|
|
|
The Chaikin Oscillator is calculated by subtracting a slow moving average of the Accumulation/Distribution Line from a fast moving average of the ADL.
|
|
|
|
### Required Components
|
|
|
|
* **Accumulation/Distribution Line (ADL):** The underlying cumulative money flow indicator.
|
|
* **Fast MA Period:** The period for the shorter-term MA of the ADL (standard is 3).
|
|
* **Slow MA Period:** The period for the longer-term MA of the ADL (standard is 10).
|
|
* **MA Method:** The type of moving average to use (classic is EMA).
|
|
|
|
### Calculation Steps (Algorithm)
|
|
|
|
1. **Calculate the Accumulation/Distribution Line (ADL):** First, the full ADL data series is calculated.
|
|
|
|
* $\text{Money Flow Multiplier (MFM)} = \frac{(\text{Close} - \text{Low}) - (\text{High} - \text{Close})}{\text{High} - \text{Low}}$
|
|
* $\text{Money Flow Volume (MFV)} = \text{MFM} \times \text{Volume}$
|
|
* $\text{ADL}_i = \text{ADL}_{i-1} + \text{MFV}_i$
|
|
|
|
2. **Calculate the Fast and Slow MAs of the ADL:** Compute two separate moving averages on the ADL data series.
|
|
$\text{FastMA}_{\text{ADL}} = \text{MA}(\text{ADL}, \text{Fast Period})$
|
|
$\text{SlowMA}_{\text{ADL}} = \text{MA}(\text{ADL}, \text{Slow Period})$
|
|
|
|
3. **Calculate the Chaikin Oscillator:** Subtract the Slow MA from the Fast MA.
|
|
$\text{CHO}_i = \text{FastMA}_{\text{ADL}, i} - \text{SlowMA}_{\text{ADL}, i}$
|
|
|
|
## 3. MQL5 Implementation Details
|
|
|
|
Our MQL5 implementation follows a highly modular, component-based design to ensure accuracy, reusability, and maintainability.
|
|
|
|
* **Component-Based Design:** The Chaikin Oscillator does not recalculate the Accumulation/Distribution Line internally. Instead, its calculator (`CHO_Calculator.mqh`) **reuses** our existing, standalone `AD_Calculator.mqh` module. This is a prime example of our "Pragmatic Modularity" principle, eliminating code duplication and ensuring that both the ADL and CHO indicators are always based on the exact same, robust ADL calculation logic.
|
|
|
|
* **Object-Oriented Logic:**
|
|
* The `CHO_Calculator` contains a pointer to an `AD_Calculator` object.
|
|
* The Heikin Ashi version (`CCHOCalculator_HA`) is achieved simply by instructing the main calculator to instantiate the Heikin Ashi version of the ADL module (`CADCalculator_HA`). The CHO's own logic (calculating MAs and the difference) remains identical, as it operates on the ADL data it receives, regardless of its source.
|
|
|
|
* **Flexible MA Types:** While the classic CHO uses EMAs, our version allows the user to select from four different moving average types (**SMA, EMA, SMMA, LWMA**) via the `InpMaMethod` input parameter, providing greater flexibility.
|
|
|
|
* **Stability via Full Recalculation:** The indicator employs a "brute-force" full recalculation within `OnCalculate` to ensure the multi-stage calculation remains stable and accurate.
|
|
|
|
## 4. Parameters
|
|
|
|
* **Fast Period (`InpFastPeriod`):** The period for the shorter-term MA of the ADL. Default is `3`.
|
|
* **Slow Period (`InpSlowPeriod`):** The period for the longer-term MA of the ADL. Default is `10`.
|
|
* **MA Method (`InpMaMethod`):** The type of moving average to use for the Fast and Slow MAs. Default is `MODE_EMA`.
|
|
* **Volume Type (`InpVolumeType`):** Allows the user to select between Tick Volume and Real Volume for the underlying ADL calculation.
|
|
* **Candle Source (`InpCandleSource`):** Allows the user to select the candle type for the underlying ADL calculation (`Standard` or `Heikin Ashi`).
|
|
|
|
## 5. Usage and Interpretation
|
|
|
|
* **Zero Line Crossovers:** This is the most direct signal from the CHO.
|
|
* **Bullish Crossover:** When the oscillator crosses above the zero line, it indicates that buying pressure (accumulation) is strengthening.
|
|
* **Bearish Crossover:** When the oscillator crosses below the zero line, it indicates that selling pressure (distribution) is strengthening.
|
|
* **Divergence:** This is the CHO's most powerful signal.
|
|
* **Bullish Divergence:** Price makes a lower low, but the CHO makes a higher low. This suggests that selling pressure is waning despite the lower price, often foreshadowing a bottom.
|
|
* **Bearish Divergence:** Price makes a higher high, but the CHO makes a lower high. This suggests that the rally is not supported by strong buying pressure and may be nearing exhaustion.
|
|
* **Caution:** The Chaikin Oscillator is a momentum indicator. It should be used in conjunction with price action analysis or trend-following tools to confirm signals.
|