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:
4032
Note:
(13)
Publié:
2018.12.18 19:15
SRSI.mq5 (11.22 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Slow Relative Strength Index was described in Stock&Commodities (July 2015).

It has six input parameters:

  • Period - calculation period
  • Smoothing - smoothing period
  • Applied price
  • Overbought - overbought level
  • Middle level - middle level
  • Oversold - oversold level

Calculation:

SRSI = 50.0 * (1.0+ChgRatio)

where:

ChgRatio =NetChgAvg / TotChgAvg
TotChgAvg = PrevTotChgAvg + SF * (Abs(Change) - PrevTotChgAvg)
NetChgAvg = PrevNetChgAvg + SF * (Change - PrevNetChgAvg)
Change= MA - PrevMA
SF = 1.0 / Period

MA - EMA(Applied price, Smoothing)


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

Time_Averaged_Price Time_Averaged_Price

Time Averaged Price indicator

Time_Averaged_MA Time_Averaged_MA

Time Averaged MA indicator

Smoothed_RSI Smoothed_RSI

Smoothed RSI indicator

SineWMA SineWMA

Sine Weighted MA indicator