Running EA on several charts without interference, maybe SelectOrder()? - page 3

 
whroeder1:
oSend = OrderSend(Symbol(), OP_BUY, 0.01, Ask, 3, Bid-200*Point, NULL,NULL, magic);

Alert("Order opened for this particular asset");
All you've done is suppressed the warning, you haven't checked anything.

Gotcha, I think, as I don't do this part, return oSend (instead of TicketNumber) I'm not really doing the check. 

if( TicketNumber > 0 )
   {
   Print("Order placed # ", TicketNumber);
   }
else
   {
   Print("Order Send failed, error # ", GetLastError() );
   }

 As everything seems to work I will put this on my product backlog and fix in a future. 
Did I understand it correctly then? Even though I haven't done it correctly yet. 

Thanks for the help. 

Reason: