Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
SRSI - indicator for MetaTrader 5
- Views:
- 4262
- Rating:
- Published:
- 2018.12.18 19:15
- Need a robot or indicator based on this code? Order it on Freelance Go to 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)
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/22511