Hull Moving Average | Aussie Stock Forums

After reading Alan Hull – How to reduce lag in a moving average, I did a math exercise to see if I could remove the 0.5 overcompensation which he left in his calculations, and the point of post is to present a method that shows how to remove that final 0.5 overcompensation. I’m not saying it legit, and I’m definitely not spuiking a new moving average formula. (ewww))

Hull explains his lag reduction method below.

A quick summary of his calculations are;

MA10 = (9+8+7+6+5+4+3+2+1+0)/10 = 4.5
MA5 = (9+8+7+6+5)/5 = 7
MA5-MA10 = 7 – 4.5 = 2.5
Final = 7 + 2.5 = 9.5

A centred MA (non-lagging) would have a value of 9, Hull’s method give 9.5, that’s 0.5 of target.

Hull stops there and I understand why he left 0.5 overcompensation in his calculations. It’s because he smooths his data with an WMA of a WMA, which creates more lags yet smooths the data more.

My interest was in getting rid of that final 0.5, and here’s a method, I’m not saying that the method is legit, it is a fudge, but it is no more of a fudge than what Hull does in his calculations. Anyway here it is;

Subtract 8 from 9 and then divide by 2 that gives you 0.5.
Subtract the 0.5 from the 9.5 and that give you 9, which is the non-lagging target MA value.
Voila all the lag is gone, well no, not really, and definitely not gone in any real life data (overshoot effect).

Fudge = 9.5 – (9-8)/2 = 9 // Bang on target

Fudge = Final – (Todays_Price – Prevous_Price) / 2

AmiBroker code for all the above math looks like this.

JDtempMA = MA(C,5) + MA(C,5) – MA(C,10) ;
JDMA = JDtempMA – (JDtempMA – Ref(JDtempMA,-1)) / 2 ;

In my opinion WMA() is a better plot than MA(). The WMA is divided by 3 instead of 2.

JDtempWMA = WMA(C,5) + WMA(C,5) – WMA(C,10) ;
JDWMA = JDtempWMA – (JDtempWMA – Ref(JDtempWMA,-1)) / 3 ; // No Lag Baby (pfft n heh)

At the end it’s just a math exercise (fudge) nothing more, nothing less. Anyway I just thought I’d dump it here. I do realize that the last thing a chartist needs is another hacked up squiggly line to clutter up their charts. I apologies for the mess. I’m almost certain that Hull (or others) would have calculated that final tweak (I’m definitively not claiming any of it it as original work), and all thanks go to A. Hull for crafting an interesting MA fudge.

1643855365133.png

Be the first to comment

Leave a Reply

Your email address will not be published.


*