View Single Post
  #4 (permalink)  
Old 12-11-2006, 05:27 PM
pooshkin pooshkin is offline
Junior Member
 
Join Date: Oct 2006
Posts: 25
pooshkin is on a distinguished road
ok, i have 666 as magic number to trades that open in the ea
is this code any good?
Code:
   if(OrderSelect(ticket, SELECT_BY_TICKET) == true) // open trades
   { 
   if(OrderMagicNumber() == 666){
   return(0);} // no trades
   }
else
trade
Reply With Quote