Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter üzerinde bulun!
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
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Göstergeler

Simple Continuous ParabolicSAR - MetaTrader 5 için gösterge

Görüntülemeler:
8009
Derecelendirme:
(23)
Yayınlandı:
2015.01.22 12:29
Güncellendi:
2016.11.22 07:32
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
  • For any instruments and time frames.
  • The main variable of the period ParabolicSARPeriod.

The principal calculation of the indicator consist of 9 lines

 max=0;
 min=0;
for(int j=1; j<=ParabolicSARPeriod; j++)
     {
   max=max+Highest(High,j,i)/ParabolicSARPeriod;
   min=min+Lowest(Low,j,i)/ParabolicSARPeriod;
     }
max= NormalizeDouble(max,_Digits);
min= NormalizeDouble(min,_Digits);

As a comparison simple ParabolicSAR is shown

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/1832

RSI_2HTF RSI_2HTF

A colored cloud formed by two RSI oscillators with different timeframes.

MA_2HTF MA_2HTF

A colored cloud formed by two moving averages with different timeframes.

ColorCCI ColorCCI

The classic CCI with the colored signal levels. For the moments of time, when the CCI indicator is in oversold and overbought zones, there are change of the indicator color corresponding to the trend direction. The growing trend colors the indicator in lettuce green, the falling into the red one.

MFI_HTF MFI_HTF

The MFI oscillator with the timeframe selection option available in input parameters.