Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

FIR_filter - indicator for MetaTrader 5

Published by:
Vladimir
Views:
10234
Rating:
(24)
Published:
2010.06.09 10:23
Updated:
2016.11.22 07:32
fir_filter.mq5 (2.41 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to 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

Translated from Russian by MetaQuotes Ltd.
Original code: 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.