Auteur: Andrey N. Bolkonsky
De Ergodic CSI-Oscillator, gebaseerd op de Candlestick Index, wordt 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_Ergodic_CSI.mq5 in terminal_data_folder\MQL5\Indicators\

Ergodic CSI-Oscillator door William Blau
Berekening:
De CSI-Oscillator wordt als volgt gedefinieerd:
Ergodic_CSI(price1,price2,q,r,s,u) = CSI(price1,price2,q,r,s,u)
SignalLine(price1,price2,q,r,s,u,ul) = EMA( Ergodic_CSI(price1,price2,q,r,s,u) ,ul)
waarbij:
- Ergodic_CSI() - Ergodische lijn - Candlestick Index CSI(price1,price2,q,r,s,u);
- SignalLine() - Signaallijn - EMA(ul), toegepast op Ergodic;
- ul - periode van een Signaallijn.
- Grafische plot #0 - Ergodische lijn (Candlestick Index):
- q - aantal candles, gebruikt in de berekening van Candlestick Momentum (standaard q=1);
- r - periode van de 1e EMA, toegepast op Candlestick Momentum (standaard r=20);
- s - periode van de 2e EMA, toegepast op het resultaat van de 1e smoothing (standaard s=5);
- u - periode van de 3e EMA, toegepast op het resultaat van de 2e smoothing (standaard u=3);
- Grafische plot #1 - Signaallijn:
- ul - periode van een Signaallijn, EMA(ul) wordt toegepast op 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 is aan 1, wordt de smoothing niet gebruikt;
- ul>0. Als ul=1, zijn de Signaal- en Ergodische lijnen hetzelfde;
- Min. 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