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

FIR_filter - MetaTrader 5 için gösterge

Yayınlayan:
Vladimir
Görüntülemeler:
10312
Derecelendirme:
(24)
Yayınlandı:
2010.06.09 10:23
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

The indicator shows moving average, calculated using the digital filter. In this example the Hann Window is used.

You can use the other filter coefficients, just modify them in OnInit():

   for(int k=0;k<Per;k++)
   {
      w[k]=0.5-0.5*MathCos(2.*pi*(k+1)/(Per+1));
      wsum+=w[k];
   }

FIR_filter

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

WPR_Hist WPR_Hist

It searches for tops or bottoms of price movement.

HI LO Indicator HI LO Indicator

This is HILO Indicator

Export historical data Export historical data

The script purpose is to export historical rates data to format, convenient for analysis in external programs.

A simple RKD Expert Advisor  based on a specified custom RKD indicator A simple RKD Expert Advisor based on a specified custom RKD indicator

This is a simple Expert Advisor, that uses a specified custom RKD indicator.