PureBytes Links
Trading Reference Links
|
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
__,_._,___
|