mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-08-07 17:47:44 +00:00
53 lines
3.6 KiB
Markdown
53 lines
3.6 KiB
Markdown
# McGinley Dynamic Professional
|
|
|
|
## 1. Summary (Introduction)
|
|
|
|
The McGinley Dynamic indicator, developed by John R. McGinley, is a more responsive and reliable alternative to traditional moving averages. It automatically adjusts its speed based on the speed of the market itself, hugging prices more closely and minimizing whipsaws.
|
|
|
|
Our `McGinleyDynamic_Pro` implementation is a unified, professional version that allows the calculation to be based on either **standard** or **Heikin Ashi** price data, selectable from a single input parameter.
|
|
|
|
## 2. Mathematical Foundations and Calculation Logic
|
|
|
|
The core of the McGinley Dynamic is its unique, self-adjusting smoothing factor.
|
|
|
|
### Required Components
|
|
|
|
* **Length (N):** The base period for the indicator.
|
|
* **Source Price (P):** The price series used for the calculation.
|
|
|
|
### Calculation Steps (Algorithm)
|
|
|
|
1. **Initialization:** The first value is typically an `N`-period moving average of the price.
|
|
2. **Recursive Calculation:** All subsequent values are calculated using the formula:
|
|
$\text{MD}_i = \text{MD}_{i-1} + \frac{P_i - \text{MD}_{i-1}}{N \times (\frac{P_i}{\text{MD}_{i-1}})^4}$
|
|
|
|
The key component is the denominator, which contains the ratio $(\frac{P_i}{\text{MD}_{i-1}})$ that measures the speed of the market and adjusts the indicator's responsiveness.
|
|
|
|
## 3. MQL5 Implementation Details
|
|
|
|
Our MQL5 implementation is a highly robust and definition-true representation, specifically engineered to handle the mathematical sensitivity of the McGinley formula, especially on volatile instruments.
|
|
|
|
* **Modular Calculation Engine (`McGinleyDynamic_Calculator.mqh`):**
|
|
The entire calculation logic is encapsulated within a reusable include file.
|
|
* **`CMcGinleyDynamicCalculator`**: The base class that handles price preparation.
|
|
* **`CMcGinleyDynamicCalculator_HA`**: A child class that overrides the data preparation step to use smoothed Heikin Ashi prices.
|
|
* **`CMcGinleyFilter`**: A dedicated internal class that manages the stateful, recursive calculation, ensuring stability.
|
|
|
|
* **Robust Initialization and Overflow Protection:**
|
|
* **SMA Initialization:** The recursive calculation is properly "primed" by using an `N`-period Simple Moving Average for its first value, as suggested by modern, robust implementations.
|
|
* **Overflow Protection:** To prevent floating-point overflows on highly volatile instruments (like cryptocurrencies), the `(Price / Previous_Value)` ratio is "clamped" within a reasonable range before the `^4` power is applied. This makes the indicator stable under all market conditions.
|
|
|
|
* **Stability via Full Recalculation:** We employ a "brute-force" full recalculation within `OnCalculate` for maximum stability.
|
|
|
|
## 4. Parameters
|
|
|
|
* **Length (`InpLength`):** The base period for the indicator. Default is `14`.
|
|
* **Applied Price (`InpSourcePrice`):** The source price for the calculation. This unified dropdown menu allows you to select from all standard and Heikin Ashi price types.
|
|
|
|
## 5. Usage and Interpretation
|
|
|
|
* **Trend Identification:** The McGinley Dynamic is primarily used as a dynamic trend line. When the price is above the line, the trend is considered bullish. When the price is below the line, the trend is considered bearish.
|
|
* **Dynamic Support and Resistance:** The line itself can act as a more reliable level of dynamic support or resistance compared to traditional moving averages.
|
|
* **Crossovers:** Crossovers of the price and the McGinley Dynamic line can be used as trade signals.
|
|
* **Caution:** While it reduces whipsaws, it is still a lagging indicator. It should be used in conjunction with other forms of analysis for confirmation.
|