Watch how to download trading robots for free
Find us on Facebook!
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
Views:
2803
Rating:
(7)
Published:
2018.07.13 15:33
FIR.mq5 (6.97 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Indicator FIR is a symmetrically weighted filter (Finite Impulse Response Filter).

It has one input parameter:

  • Applied price - price used for calculations.

Calculations:

FIR = (Price(0) + 2*Price(1) + 2*Price(2) + Price(3)) / 6

where:

Price = SMA(1, Applied price)

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/21239

EURX EURX

Indicator EURX displays index EUR.

EMA_With_Trend_Adjustment EMA_With_Trend_Adjustment

EMA_With_Trend_Adjustment - a moving average with exponential smoothing and correction by its trend component.

MM MM

Oscillator MM (Market Mode) allows assessing the market state: In trend state or in cyclic state.

MV_OBV MV_OBV

Unlike standard On Balance Volume calculated on Close prices only, and indicator MultiVote OBV is calculated on HLC prices, which resulted in its higher sensitivity.