Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 4885
- Rating:
- Published:
- 2018.04.18 17:22
-
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

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

Detrended Price Oscillator Bar - price chart without a trend.