can someone help to program so tat i can buy and sell at the same time...some scripts or etc...
i appreciate it...
example:
if (Stoch1>=Stoch2)
{
ticket=OrderSend(Symbol(), OP_BUY, Lots, Ask, 3, Ask-Stoploss*Point, Ask+TakeProfit*Point, "-", 0, 0, Green);
ticket=OrderSend(Symbol(), OP_SELL, Lots, Bid, 3, Ask-Stoploss*Point, Bid-TakeProfit*Point,"-", 0, 0, Red);
}
the problem is it wil only buy..but i ned it to execute both order...thanks..

