mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-07-27 20:47:44 +00:00
new files added
This commit is contained in:
+71
@@ -0,0 +1,71 @@
|
||||
# MACD SuperSmoother Pro Suite
|
||||
|
||||
## 1. Summary (Introduction)
|
||||
|
||||
The **MACD SuperSmoother Pro Suite** is an advanced evolution of the classic MACD indicator. It replaces the traditional Exponential Moving Averages (EMAs) with John Ehlers' **SuperSmoother Filter**.
|
||||
|
||||
The SuperSmoother filter is designed to remove aliasing noise from price data while retaining the underlying trend with exceptional fidelity. Unlike standard averages that simply lag, the SuperSmoother uses digital signal processing principles to create a curve that is both incredibly smooth and responsive.
|
||||
|
||||
This results in a MACD system that produces cleaner signals, fewer whipsaws in ranging markets, and a more precise representation of market momentum.
|
||||
|
||||
The suite consists of four professional-grade indicators, all powered by a unified calculation engine:
|
||||
|
||||
1. **`MACD_SuperSmoother_Pro`:** The complete package. Displays the MACD Line, Signal Line, and Histogram in one window.
|
||||
2. **`MACD_SuperSmoother_Line_Pro`:** Displays only the MACD Line. Ideal for building custom systems or testing different signal line strategies.
|
||||
3. **`MACD_SuperSmoother_Histogram_Pro`:** Displays only the Histogram. Perfect for compact layouts.
|
||||
4. **`MACD_SuperSmoother_Chart_Overlay`:** Displays the two underlying SuperSmoother Filters (Fast and Slow) directly on the price chart.
|
||||
|
||||
## 2. Mathematical Foundations
|
||||
|
||||
The core logic mirrors the standard MACD but utilizes superior components:
|
||||
|
||||
1. **MACD Line:** The difference between a Fast and a Slow SuperSmoother Filter.
|
||||
* $\text{MACD Line}_t = \text{SuperSmoother}(P, \text{Period}_{fast})_t - \text{SuperSmoother}(P, \text{Period}_{slow})_t$
|
||||
* The filter characteristics are defined by the **Period** (cutoff frequency).
|
||||
|
||||
2. **Signal Line:** A smoothed version of the MACD Line.
|
||||
* Our suite allows this smoothing to be a standard MA (SMA, EMA, etc.) OR another SuperSmoother Filter.
|
||||
|
||||
3. **Histogram:** The difference between the MACD Line and the Signal Line.
|
||||
* $\text{Histogram}_t = \text{MACD Line}_t - \text{Signal Line}_t$
|
||||
|
||||
## 3. MQL5 Implementation Details
|
||||
|
||||
* **Unified Calculator Engine:** All indicators share a single, robust engine (`MACD_SuperSmoother_Calculator.mqh`). This ensures mathematical consistency and efficient resource usage.
|
||||
* **O(1) Incremental Calculation:** The indicators are optimized for high performance. They process only new bars (`prev_calculated`), ensuring zero lag and minimal CPU usage.
|
||||
* **Heikin Ashi Integration:** Built-in support for all Heikin Ashi price types. The calculation engine automatically handles the transformation of raw price data into Heikin Ashi values before processing.
|
||||
|
||||
## 4. Parameters
|
||||
|
||||
### SuperSmoother MACD Settings (Common)
|
||||
|
||||
* **Fast Period:** The lookback period for the fast filter (e.g., 12).
|
||||
* **Slow Period:** The lookback period for the slow filter (e.g., 26).
|
||||
* **Price Source:** Selects the input data (Standard or Heikin Ashi).
|
||||
|
||||
### Signal Line Settings (Oscillators Only)
|
||||
|
||||
* **Signal MA Type:** Selects the smoothing method for the Signal Line.
|
||||
* **`SMOOTH_SuperSmoother`:** Uses a SuperSmoother filter.
|
||||
* **Standard MAs:** SMA, EMA, SMMA, LWMA, TMA, DEMA, TEMA.
|
||||
* **Signal Period:** Lookback period for the selected signal type.
|
||||
|
||||
## 5. Usage and Interpretation
|
||||
|
||||
### Signal Line Crossover
|
||||
|
||||
* **Buy:** When the MACD Line (Blue) crosses **above** the Signal Line (Red).
|
||||
* **Sell:** When the MACD Line crosses **below** the Signal Line.
|
||||
* *Advantage:* Due to the SuperSmoother's noise rejection, these crossovers tend to be more definitive and less prone to "false starts" than standard MACD signals.
|
||||
|
||||
### Zero Line Crossover & Chart Overlay
|
||||
|
||||
* **Oscillator:** Crossing the zero line indicates a shift in trend direction.
|
||||
* **Chart Overlay:** This corresponds exactly to the **crossover of the Fast and Slow SuperSmoother lines** on the price chart.
|
||||
* **Fast > Slow:** Bullish Trend.
|
||||
* **Fast < Slow:** Bearish Trend.
|
||||
|
||||
### Histogram Analysis
|
||||
|
||||
* **Momentum:** Growing histogram bars indicate accelerating momentum. Shrinking bars warn of a potential slowdown or reversal.
|
||||
* **Divergence:** Divergences between the histogram peaks and price action are powerful reversal signals.
|
||||
Reference in New Issue
Block a user