Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

FIR_filter - indicateur pour MetaTrader 5

Publié par:
Vladimir
Vues:
10317
Note:
(24)
Publié:
2010.06.09 10:23
Mise à jour:
2016.11.22 07:32
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur 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

Traduit du russe par MetaQuotes Ltd.
Code original : 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.