Mas Tiger,

mohon dibantu aku pingin Ea buy saja
kalu sudah seperti ini terus supaya buka OP berikutnya setelah step salah jalan tercapai (maksudnya kalo buy kemudian harga turun akan otomatis OP dengan SL dan TP sesuai seeting diatas ditambahain apa... ? biar EA ini kerjaanya OP sesuai step dan TP SL setting


extern double Lots=0.1;
extern int Step=20;
extern int StopLoss=100;
extern int TakeProfit=25;
extern int MagicNumber=12345;
extern string txComment="Order EA1";
extern int Slippage=5

if (OrdersTotal()==0)
OrderSend(Symbol(),OP_BUY,Lots,Ask,Slippage,Ask-StopLoss*Point, ask+TakeProfit*Point,txComment,MagicNumber);
Maksudnya melakukan hedging ya  

mungkin ditambahi code seperti ini
Code:
OrderSelect(OrdersTotal()-1,SELECT_BY_POS,MODE_TRADES)
if (OrderType()=0)
   {
   if (Bid<OrderOpenPrice()-Step*Point) OrderSend(Symbol(),OP_SELL,Lots,Bid,Slippage,Bid+StopLoss*Point, Bid-TakeProfit*Point,txComment,MagicNumber);
   }
else if (OrderType()=0)
   {
   if (Ask>OrderOpenPrice()+Step*Point) OrderSend(Symbol(),OP_BUY,Lots,Ask,Slippage,Ask-StopLoss*Point, Ask+TakeProfit*Point,txComment,MagicNumber);
   }