PureBytes Links
Trading Reference Links
|
Plot(JurikJMA(Close,21),"JAMI-21",colorYellow,styleLine | styleOwnScale);
Plot(JurikJMA(Close,50),"JAMI-50",colorRed,styleLine | styleOwnScale);
Plot(JurikJMA(Close,200),"JAMI-100",colorBlue,styleLine | styleOwnScale;
//////////////////////////////////////////////////////////////////////////////////////
/*//Formula Name:MACD
//formula Full Name:Moving Average Convergence Divergence
//Formula Script:
Long1 = 26;
Short1 =12;
signl =9;
DIFF = EMA(Close,Short1) - EMA(Close,Long1);
DEA = EMA(DIFF,signl);
MACD1 = 2*(DIFF-DEA);
Color = IIf(MACD1 > 0, colorBrightGreen, colorRed);
Plot (JurikJMA(Diff),"DIFF 12,26",4,1 |styleOwnScale);
Plot (JurikJMA(DEA ),"signal 9",2,1 |styleOwnScale);
Plot (JurikJMA(MACD1),"histogram 12,26",Color,1 |styleHistogram |styleOwnScale);
Hans <hansib@xxxxxxxxx> wrote:
Hello,
anyone has the Ami formula for JMA?
(I only found some C code to clone it)
Thanks
Hans
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups SponsorADVERTISEMENT
---------------------------------
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.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
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:
http://docs.yahoo.com/info/terms/
|