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 <[EMAIL PROTECTED]>: > 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? > > >
