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

FIR_filter - indicatore per MetaTrader 5

Pubblicati da::
Vladimir
Visualizzazioni:
10281
Valutazioni:
(24)
Pubblicato:
2010.06.09 10:23
Aggiornato:
2016.11.22 07:32
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

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

Tradotto dal russo da MetaQuotes Ltd.
Codice originale 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.