PureBytes Links
Trading Reference Links
|
Assuming Mov(CLOSE,3,E) is a 3 day EMA....
X = EMA(Close,3);
X = X + EMA(Close-X,3);
Or to duplicate the Metastock format below:
EMA(Close,3) + EMA(Close-EMA(Close,3),3);
Terry
--
Hi Guys can someone please convert this Metastock Lag Reduced Moving
Average into AB code for dumb ol'me? I'm struggling to convert it.
Mov(CLOSE,3,E)+Mov((CLOSE-Mov(CLOSE,3,E)),3,E);
Thanks in advance.
Dumb Ol'Bruiser
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|