PureBytes Links
Trading Reference Links
|
I am currently interested in anything that improves the MACD. RWI is
the closest I have come across. The code below seems to be missing
the function JurikJMA, or do I need to include a dll?
rgds, Pal
--- In amibroker@xxxxxxxxxxxxxxx, l washington <goldwing01_1999@xxxx>
wrote:
>
> 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@xxxx> 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 --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/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/
|