Many coditions for opening orders. Your Advise.

 
How is it possible that an EA has more than one condition for opening orders.Advise ,Example appreciated.
 
tafadzwa:
How is it possible that an EA has more than one condition for opening orders.Advise ,Example appreciated.
if(condition1 && condition2) OrderSend();
 
tafadzwa:
How is it possible that an EA has more than one condition for opening orders.Advise ,Example appreciated.

if(condition1) OrderSend();    //OP_BUY
if(condition2) OrderSend();    //OP_SELL
if(condition3) OrderSend();    //OP_BUYSTOP
.....

It is possible with EA  open trades like it is possible to open without EA trades with more than one condition

you can make condition for first trade then a different for opening second trade...