Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Telegram!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Indikatoren

Composite High/Low Momentum Blau_HLM - Indikator für den MetaTrader 5

Ansichten:
1046
Rating:
(18)
Veröffentlicht:
2016.03.21 15:28
Aktualisiert:
2016.11.22 07:34
blau_hlm.mq5 (6.44 KB) ansehen
\MQL5\Include\
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance

Urheber: Andrey N. Bolkonsky

Der Composite High-Low Momentum Wird in den folgenden Buch von William Blau beschrieben: "Momentum, Direction, and Divergence: Applying the Latest Momentum Indicators for Technical Analysis".

  • Die Datei WilliamBlau.mqh muss in das folgende Verzeichnis kopiert werden: terminal_data_folder\MQL5\Include\
  • Die Datei Blau_HLM.mq5 Muss in den folgenden Ordner kopiert werden terminal_data_folder\MQL5\Indicators\

Composite High-Low Momentum Indicator by William Blau

Composite High-Low Momentum Indicator by William Blau

Berechnung:

Der Composite High/Low Momentum Wird wie folgt berechnet:

HLM(q) = HMU(q) - LMD(q)

wobei:

  • q - Die Anzahl der der Bars, die für die Berechnung des Up Trend Momentum and Down Trend Momentum verwendet werden;
  • HMU(q) - Aufwärtstrend Momentum (q bars);
  • LMD(q) - Abwärtstrend Momentum (q bars).

Der geglättete Composite High/Low Momentum wird wie folgt berechnet:

HLM(q,r,s,u) = EMA(EMA(EMA( HLM(q) ,r),s),u) = EMA(EMA(EMA( HMU(q)-HMD(q) ,r),s),u)

wobei:

  • q - number of bars, used in the calculation of Up Trend Momentum and Down Trend Momentum;
  • HMU(q) - Aufwärtstrend Momentum (q bars);
  • LMD(q) - Down Trend Momentum (q bars);
  • HLM(q)=HMU(q)-LMD(q) - Composite High/Low Momentum;
  • EMA(HLM(q),r) - 1st smoothing - EMA(r), angewendet auf the Composite High/Low Momentum;
  • EMA(EMA(...,r),s) - 2nd smoothing - EMA(s), angewendet auf result of the 1st smoothing;
  • EMA(EMA(EMA(...,r),s),u) - 3rd smoothing - EMA(u), angewendet auf result of the 2nd smoothing.
//--- Eingabeparameter
  • q - Anzahl der Bars die für die Kalkulation des HLM verwendet werden (Standard q=2);
  • r - period of the 1st EMA, angewendet auf HLM (by default r=20);
  • s - period of the 2nd EMA, angewendet auf result of the 1st smoothing (by default s=5);
  • u - period of the 3rd EMA, angewendet auf result of the 2nd smoothing (by default u=3).
Hinweis:
  • q>0;
  • r>0, s>0, u>0. Wenn r, s or u = 1 sind, Dann wird keine Glättung verwendet;
  • Min. rates = (q-1+r+s+u-3+1).

Übersetzt aus dem Russischen von MetaQuotes Ltd.
Originalpublikation: https://www.mql5.com/ru/code/382

Ergodic CSI-Oscillator Blau_Ergodic_CSI Ergodic CSI-Oscillator Blau_Ergodic_CSI

Ergodic CSI-Oscillator von William Blau.

Ergodic CMI-Oscillator Blau_Ergodic_CMI Ergodic CMI-Oscillator Blau_Ergodic_CMI

Ergodic CMI-Oscillator by Willam Blau.

Directional Trend Index Blau_DTI Directional Trend Index Blau_DTI

Directional Trend Index (DTI) Indicator von William Blau.

Ergodic DTI-Oscillator Blau_Ergodic_DTI Ergodic DTI-Oscillator Blau_Ergodic_DTI

Der Ergodic DTI-Oscillator (Directional Trend Index) von William Blau.