PureBytes Links
Trading Reference Links
|
if cannot be used with arrays outside of a loop
Try this
Buy = isnull(myMA1)==0 and (myMA1 > MyMA2);
--
Cheers
Graham Kav
AFL Writing Service
http://www.aflwriting.com
2008/8/1 ozzyapeman <zoopfree@xxxxxxxxxxx>:
> Thanks Mike! That seems to do the trick. Just one quick follow-up question.
> I noticed that when either myMA1 or myMA2 have empty values (e.g. near left
> edge of chart, before sufficient data has built up) I am getting false buy
> signals.
>
> How do I created a condition to not Buy if one of these variables is empty?
> Would something like this work:
>
> if (myMA1 NOT NULL) Buy = (myMA1 > MyMA2);
>
> or maybe:
>
> if(myMA1>0) Buy = (myMA1 > MyMA2);
>
> Or should I put some similar condition inside the BarCount loop?
>
>
>
------------------------------------
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/
|