Hi I have an EA and I add my Alert function into OnTick()
this is the code
int one=1;
int two=2;
if(Symbol()=="AUDCAD" && one<two){Alert("Buy ",Symbol());}
The alert function but It reapeats every single second...how can I modify to obtain the alrt once a time?