Alım-satım robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook üzerinde bulun!
Fan sayfamıza katılın
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
- Görüntülemeler:
- 16214
- Derecelendirme:
- Yayınlandı:
- Güncellendi:
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
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)

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

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

RSO is an Oscillator version of RSI.

A variation of the Laguerre filter indicator.