PureBytes Links
Trading Reference Links
|
You had your comparison arrow backward. Try this and see,
CCIval=CCI();
CCITurningup = CCIval > Ref(CCIval,-1); // avoid IIF for logic
printf("current cci %g, last cci %g, cci turning up or not %
g ",CCIval, Ref(CCIval,-1), CCITurningup);
plot(CCIval, "CCI", colorred);
plotshapes(CCITurningup * shapeuparrow, colorgreen);
Plotting the CCI and buy shape would have shown you what was going on.
Barry
--- In amibroker@xxxxxxxxxxxxxxx, "murthysuresh" <money@xxx> wrote:
>
> i am using the commentary to check and it does not add up. is my
eye
> missing something.
>
> simple code checks if the cci is retracing back. so the new cci bar
> should be higher than the old cci bar and the difference should be
> CCIval=CCI();
> CCITurningup=IIf(CCIval<Ref(CCIval,-1),1,0);
> printf(" currentcci %g old cci %g cci turning up or not %
g ",CCIval,
> Ref(CCIval,-1), CCITurningup);
>
> the results are currentcci -137.288 old cci -177.073 cci turning
up or
> not 0
>
> why am i not getting a 1. it looks obvious to me.
>
> strange day with issues for me.
>
------------------------------------
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/
|