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
Indicators

HA EMA3 Indicator - indicator for MetaTrader 5

Views:
4294
Rating:
(11)
Published:
2018.04.18 17:22
HAEMA3.mq5 (14.53 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

This indicator is a moving average built on Heiken Ashi candlesticks.

It has two parameters:

  • Period - calculation period;
  • Method - calculation method.

Calculation formulas:

MA1 = MA(HA_Close),
MA2 = MA(MA1),
MA3 = MA(MA2)

where:

HA_Close[i] = ((Open[i] + High[i] + Low[i] + Close[i])/4 + HA_Open[i] + Max(High[i],HA_Open[i]) + Min(Low[i],HA_Open[i]))/4,
HA_Open[i] = ((Open[i+1] + High[i+1] + Low[i+1] + Close[i+1])/4 + HA_Open[i+1])/2.

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

BW_Zone_Trading BW_Zone_Trading

Modified BW Zone Trading - a modified indicator of Bill Williams' zone trading.

DPO_Bar DPO_Bar

Detrended Price Oscillator Bar - price chart without a trend.

LRL LRL

Linear regression line (LSMA) - a moving average calculated by the linear regression method.

LR_Ratio LR_Ratio

The indicator displays the ratio of two LSMAs.