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
Vues:
3006
Note:
(9)
Publié:
2018.06.16 10:01
Blau_TSI.mq5 (13.86 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The William Blau True Strength Index indicator shows the William Blau true strength index.

It has seven input parameters:

  • Period - calculation period;
  • Applied price - the calculation price;
  • First smoothing period - the initial smoothin period;
  • Second smoothing period - the secondary smoothing period;
  • Third smoothing period - the resulting smoothing period;
  • Upper level - the overbought level;
  • Lower level - the oversold level.

Based on the True Strength Index calculation formula described in the MQL5: Create your own indicator article and on William Blau's postulate of three-period smoothing, the indicator calculation formula is as follows:

TSI(Price,Period,fs,ss,ts) = 100 * EMA(EMA(EMA( mtm(Price,Period) ,fs),ss),ts) / EMA(EMA(EMA( |mtm(Price,Period)| ,fs),ss),ts)

where:

mtm(Price,Period) = Price[i] - Price[i-Period+1],
fs - First smoothing period,
ss - Second smoothing period,
ts - Third smoothing period

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

Blau_TS_Stochastic Blau_TS_Stochastic

William Blau Stochastic.

Blau_Trend_Momentum Blau_Trend_Momentum

William Blau Trend Momentum.

Blau_TStoch Blau_TStoch

William Blau Stochastic.

ZigZag on Fractals ZigZag on Fractals

ZigZag based on the Fractals indicator.