Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

RSI Trend Indicator - indicatore per MetaTrader 5

Visualizzazioni:
14380
Valutazioni:
(27)
Pubblicato:
2017.07.20 13:40
Aggiornato:
2017.08.30 12:14
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

A simple trend indicator moves like ZigZag, based on the rate of RSI changes. If RSI moves down from 65 or moves up from 35, trend line draws. These change limits are selective parameters and could be change by user. Each point of trend line connects to the next RSI change point.

//--- input parameters
input int InpUpperRSI  = 65;     // Upper limit of RSI changes
input int InpLowerRSI  = 35;     // Lower limit of RSI changes
input int InpRSIPeriod = 14;     // RSI Period

Uptrend points are price high and downtrend are price low. Uptrend lines are blue and downtrend are red in the main chart window.

RSI Trend Indicator (65, 35)

RSI Trend Indicator (65, 35)

MA Zigzag Trend MA Zigzag Trend

Another ZigZag trend indicator based on extremum points of SMA indicator.

CMqlParams CMqlParams

MqlParams container class that uses method chaining to quickly add params and reduce lines of code.

RSO, Relative Strength Oscillator RSO, Relative Strength Oscillator

RSO is an Oscillator version of RSI.

Laguerre stripped Laguerre stripped

A variation of the Laguerre filter indicator.