Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

Blau_Stochastic_Index - indicateur pour MetaTrader 5

Vues:
2339
Note:
(9)
Publié:
2018.06.16 10:00
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The Blau Stochastic Index Oscillator indicator shows the William Blau stochastic index.

It has five input parameters:

  • Period - calculation period;
  • First smooth period - the initial smoothing period;
  • Second smooth period - the secondary smoothing period;
  • Signal period - signal period;
  • Method - calculation method.

Calculations:

Stochastic[i] = 100*Diff[i]/Range[i]-50,
Signal[i] = 100*Diff_MA3[i]/Range_MA3[i]-50

where:

Diff_MA3 = MA(Diff_MA2, Method, Signal period),
Diff_MA2 = MA(Diff_MA1, Method, Second period),
Diff_MA1 = MA(Diff, Method, First period),
Range_MA3 = MA(Range_MA2, Method, Signal period),
Range_MA2 = MA(Range_MA1, Method, Second period),
Range_MA1 = MA(Range, Method, First period),
Diff[i] = Close[i]-Min,
Range[i] = Max-Min,
Max, Min are the highest and the lowest price within the range from (i-Period+1) to (i)

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20512

Blau_SM Blau_SM

William Blau Stochastic Momentum.

Blau_Mtm Blau_Mtm

William Blau Momentum.

Blau_Trend_Momentum Blau_Trend_Momentum

William Blau Trend Momentum.

Blau_TS_Stochastic Blau_TS_Stochastic

William Blau Stochastic.