1 step closer i think, but it isnt opening the 2nd order
Inserted Code
if (myOrderType==3)
{TotalOrders = OrdersTotal();
for (i=0; i<TotalOrders; i++)
{
if (OrderSelect(i,SELECT_BY_POS,MODE_TRADES))
{
if ((OrderSymbol() == Symbol()) && (OrderType() == OP_BUY))
{
if ((Bid-OrderOpenPrice()) >= Pips)
{
OrderSend(Symbol(),OP_BUY,(LotSize * Multiplier) ,Ask,slippage,Ask-StopLoss,Ask+TakeProfit-Pips,"Stacker Buy",MagicNumber,0,Blue);
}
}
}
}
}
}