Page 4 of 6

Re: Heikin-Ashi Smoothed

PostPosted: Fri Oct 17, 2014 11:54 am
by Apprentice
MTF MCP Heikin-Ashi Smoothed Added.

Re: Heikin-Ashi Smoothed

PostPosted: Sun Oct 19, 2014 6:24 pm
by easytrading
hello ,
could anyone help to develop a strategy for this indicator based on HA smothed bar color changing with the option of deferent timeframes please, thanks.

Re: Heikin-Ashi Smoothed

PostPosted: Mon Oct 20, 2014 10:45 am
by Apprentice
U can use Heiken_AshiSmoothed_N_Bars_Strategy.lua
Set Count of bars Parameter to 1
viewtopic.php?f=31&t=3655

Re: Heikin-Ashi Smoothed

PostPosted: Wed Aug 19, 2015 4:10 am
by Apprentice
MTF MCP Heikin-Ashi Smoothed Added.

Re: Heikin-Ashi Smoothed

PostPosted: Thu Aug 20, 2015 11:06 am
by gregoryyul
Hi

Thanks for creating the MTF MCP Indicator.

It's working well for me but I can't figure out how to get the bar graph representation for the current chart, I only get the coloured arrows.

Can you pls explain how to do this?

Thanks for your time

Re: Heikin-Ashi Smoothed

PostPosted: Tue Aug 25, 2015 9:45 am
by all_in
gregoryyul wrote:Hi

Thanks for creating the MTF MCP Indicator.

It's working well for me but I can't figure out how to get the bar graph representation for the current chart, I only get the coloured arrows.

Can you pls explain how to do this?

Thanks for your time


I'd like to know this as well.

Also, am I right in saying, that until the bar closes, the indicator could repaint?
If so, could it be made to only display when the specific timeframe period has completed?
i.e. Looking at the M5 chart, the H1 HA is bullish, but the H1 candle hasn't completed and could change.

Thanks

Re: Heikin-Ashi Smoothed

PostPosted: Wed Aug 26, 2015 10:05 am
by Apprentice
gregoryyul
Try MTF MCP Heikin-Ashi Smoothed (2).lua
ALL_IN
MTF MCP indicator will reflect change in HASM indicator.

Re: Heikin-Ashi Smoothed

PostPosted: Mon Sep 07, 2015 2:04 pm
by all_in
Thanks

Re: Heikin-Ashi Smoothed

PostPosted: Sun Oct 25, 2015 8:55 pm
by jarmush
all_in: Yes, it can change colors. Heikin Ashi OPEN is allways in the middle of the previous Heikin Ashi candle, but other candles use most actual values so can change colors (including HA CLOSE - have a look at this: http://www.technicalindicators.net/indi ... hi-candles). And the HA variations behave the same. Hope this helps.

Re: Heikin-Ashi Smoothed

PostPosted: Tue Oct 27, 2015 3:39 am
by Apprentice
"HASM" will not use HA formula to calculate.
It is calculated as follows.
open = MVA(MVA(OPEN, N1)[-1] + MVA(CLOSE, N1) / 2, N2)
close = MVA(MVA(OPEN, N1) + MVA(CLOSE, N1) + MVA(HIGH, N1) + MVA(LOW, N1)/ 2, N2)
high = MAX(open, close, MVA(HIGH, N1), N2)
low = MIN(open, close, MVA(LOW, N1), N2)