Help, 2 different trades?

 
I need to make 2 buy or 2 sell trades, with one having a TP and the other running with a trailing stop. 

Current EA only does one.

Tried:
OrderSend()&&()
And
OrderSend()&&OrderSend()
Neither is working.

Should it be:
If(OrdersTotal<2) to open 2 trades 
And close one position at a certain TP
Then 
ModifyOrder(TrailingStop)

Dont know the exact code off the top of my head just wondering if I'm on the right track
 
Rochelle Carter:
I need to make 2 buy or 2 sell trades, with one having a TP and the other running with a trailing stop. 

Current EA only does one.

Tried:
OrderSend()&&()
And
OrderSend()&&OrderSend()
Neither is working.

Should it be:
If(OrdersTotal<2) to open 2 trades 
And close one position at a certain TP
Then 
ModifyOrder(TrailingStop)

Dont know the exact code off the top of my head just wondering if I'm on the right track

Take profit, stop loss and trailing in one same trade buy/sell ;)

 
Kenneth Parling:

Take profit, stop loss and trailing in one same trade buy/sell ;)

How does it only close one and not both with in the trade with all 3 being used?