PureBytes Links
Trading Reference Links
|
Elementary math.
MACD fluctuates between positive and negative values, often crossing
through zero. You code contains DIVISION by MACD, thus
division BY ZERO.
ANY number divided by zero results in +/- INFINITY.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "trikerito" <trikero@xxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, February 04, 2008 6:39 PM
Subject: [amibroker] Re: roc of macd
excusme, TJ,buy i've tried previosly also whith same efect's.
also hidden macd plot and only displaying roc (original or
calculated) allways have similar results.it don't be a (more or
less) "smooth" plot at all.
i've just retried with
k=Ref (MACD(5,13),-3);
j=MACD (5,13);
r= (k-j)/k;
code lines and is the same
can you put a graph of that¿?
thanks
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <groups@xxx>
wrote:
>
> It functions properly but of course ROC requires POSITIVE period
parameter (you specified negative).
>
> roc(macd(12,24),-3); // WRONG
>
> roc(macd(12,24),3); // correct
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "trikerito" <trikero@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Monday, February 04, 2008 4:54 PM
> Subject: [amibroker] roc of macd
>
>
> Hi.
>
> it seems that roc of a macd() like roc(macd(12,24),-3) doesnt
> function properly.
>
> allways plot a flat line whith litle "sparks", but no correctily.
>
> also i've tried
>
> P = ParamField( "Price field" );
> periods = Param("Periods", 15, 1, 200, 1 );
> k=Ref (MACD(5,13),-3);
> j=MACD (5,13);
> r= (k-j)/k;
>
>
> //Plot( ROC( P, periods,absmode=True), _DEFAULT_NAME(), ParamColor
> ( "Color", colorCycle ), ParamStyle("Style") );
> //Plot( r, _DEFAULT_NAME(), ParamColor( "Color", colorCycle ),
> ParamStyle("Style") );
> Plot( j, _DEFAULT_NAME(), ParamColor( "Color", colorCycle ),
> ParamStyle("Style") );
> Plot( k, _DEFAULT_NAME(), ParamColor( "Color", colorCycle ),
> ParamStyle("Style") );
>
> so
> k and j are ploted ok, but r (calculated roc) is the same than
> original roc(macd,-3), a flat line with "needles", but nothing
> similar than a roc of a EMA or other indicators.
>
> a math bug of ami¿? ¿?something i wrote wrong¿? ¿?any soolution¿?
>
> tia.
>
>
>
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|