Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
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:
5854
Note:
(13)
Publié:
2018.07.09 13:46
Mise à jour:
2018.09.19 14:22
Stoch_RSI.mq5 (11.72 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

StochRSI (Stochastic Relative Strength Index) was developed Tushar Chande and Stanley Kroll in 1994. The developers aimed to increasing the sensitivity of RSI (Relative Strength Index), the disadvantage of which is fluctuation between boundary lines and no signals to open a position.

The indicator has seven configurable parameters:

  • RSI Period - RSI calculation period;
  • Stoch Period - Stochastic calculation period;
  • Stoch Slowing K - K line deceleration period;
  • Stoch Slowing D - D line deceleration period;
  • Applied price - the calculation price;
  • Overbought - overbought level;
  • Oversold - oversold level.

Calculation:

K = SMA(SKI, Stoch Slowing K)

D = SMA(K, Stoch Slowing D)

If Min != Max:

SKI = 100.0 * (RSI - Min) / (Max - Min)

otherwise:

SKI = 100.0

RSI = RSI(RSI Period, Applied price)

Max, Min - the highest and the lowest value of RSI over Stoch Period

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

RIND RIND

Indicator "Range Indicator."

SRange_Contraction SRange_Contraction

A signal indicator of daily ranges.

TAI TAI

Indicator Trend Analysis Index.

TII TII

Indicator Trend Intensity Index.