Watch how to download trading robots for free
Find us on Twitter!
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:
3386
Rating:
(11)
Published:
2018.06.06 13:59
REMA.mq5 (7.4 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Regularized EMA by Cris Satchwell.

It has two parameters:

  • Period - period;
  • Applied price - price used for calculations.

Calculation:

REMA[i] = (REMA[i-1]*(1 + 2*Lambda) + Alpha*(Price[i] - REMA[i-1]) - Lambda*REMA[i-2])/(1 + Lambda)

where

Alpha=2/(Period + 1),
Lambda=0.5.

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

PVI_Smoothed PVI_Smoothed

Smoothed Positive Volume Index

Universal 1.64 Universal 1.64

Universal trailing of positions and pending orders.

RMO RMO

The tend indicator: Rahul Mohindar Oscillator

Simple_Support_Resistance Simple_Support_Resistance

An indicator of current support/resistance levels.