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?
