Auteur: Andrey N. Bolkonsky
De Ergodic CMI-Oscillator, gebaseerd op de Candlestick Momentum Index, is beschreven door William Blau in zijn boek "Momentum, Direction, and Divergence: Applying the Latest Momentum Indicators for Technical Analysis".
- Plaats WilliamBlau.mqh in terminal_data_folder\MQL5\Include\
- Plaats Blau_CMI.mq5 in terminal_data_folder\MQL5\Indicators\

Ergodic CMI-Oscillator door William Blau
Berekening:
De Ergodic CMI-Oscillator wordt als volgt gedefinieerd:
Ergodic_CMI(price1,price2,q,r,s,u) = CMI(price1,price2,q,r,s,u)
SignalLine(price1,price2,q,r,s,u,ul) = EMA( Ergodic_CMI(price1,price2,q,r,s,u) ,ul)
waarbij:
- Ergodic_CMI() - Ergodic - Candlestick Momentum Index CMI(price1,price2,q,r,s,u);
- SignalLine() - Signaallijn - exponentieel voortschrijdend gemiddelde EMA(ul), toegepast op de Ergodic;
- ul - periode van een signaallijn.
- grafische plot #0 - Ergodic (Candlestick Momentum Index):
- q - aantal bars, gebruikt in de berekening van de Candlestick Momentum (standaard q=1);
- r - periode van de 1e EMA(r), toegepast op de Candlestick Momentum (standaard r=20);
- s - periode van de 2e EMA(s), toegepast op het resultaat van de 1e smoothing (standaard s=5);
- u - periode van de 3e EMA(u), toegepast op het resultaat van de 2e smoothing (standaard u=3);
- grafische plot #1 - Signaallijn:
- ul - periode van de Signaallijn - EMA(ul), toegepast op de Ergodic (standaard ul=3);
- AppliedPrice1 - prijs type (standaard AppliedPrice1=PRICE_CLOSE);
- AppliedPrice2 - prijs type (standaard AppliedPrice2=PRICE_OPEN).
- q>0;
- r>0, s>0, u>0. Als r, s of u gelijk zijn aan 1, wordt er geen smoothing gebruikt;
- ul>0. Als ul=1, zijn de signaal- en hoofdlijnen hetzelfde;
- Minimale tarieven = (q-1+r+s+u+ul-4+1).
Gerelateerde berichten
- PCA Synthetics: Automatische Coëfficiëntselectie voor MetaTrader 5
- iExposure Indicator: Beheer je Handelsposities Efficiënt met MetaTrader 5
- Efficiënt Grafische Objecten Kopiëren in MetaTrader 5 met ChartObjectsCopyPaste
- Efficiëntie Ratio (ER) Berekenen met de CEROnRingBuffer voor MetaTrader 5
- Verbeter je Handelsstrategieën met de ColorXADX Indicator voor MetaTrader 5