PureBytes Links
Trading Reference Links
|
Buff Dormeier Volume weighted MACD that was discussed in a past issue of TASC and Bollinger raving about it... I noticed that a lot of the indicators don't mirror what is in the articles... Researching this I found out that MS does its calculations for is volume adjusted and weighted averages differently...
Preston seems to be have solved this problem so I with his adjustment I have made this VWMACD... Does this seem correct?
{Volume Weighted MACD - Buff Dormeier}
p1:= Input("Short Term Periods", 3,100,12);
p2:= Input("Long Term Periods", 5,200,26);
VWMACD:=(Sum(C*V,p1)/Sum(V,p1)) - (Sum(C*V,p2)/Sum(V,p2));
VWMACD;
Mov(VWMACD, 9, E);
VWMACD - Mov(VWMACD, 9, E);
{End}
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
equismetastock-digest@xxxxxxxxxxxxxxx
equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|