รบกวน Admin หรือผู้รู้ครับ
ผมจะสามารถให้ OrderModify (TrailingStop)ทุกOrder ที่เข้าเงื่อนไขตามที่เราตั้งไว้ได้ไหมครับ
เช่น EA เปิดทั้งหมด 10 Order
TrailingStop ที่ 150 pips พอถึง150 pips แล้ว Order ที่ EA เปิดไว้ เข้าเงื่อนไข TrailingStop 5 Order
จะต้องเขียน code แบบไหน ครับถึงจะ Modify 5 Order ที่เข้าเงื่อนไขตามที่เราตั้งไว้พร้อมกันครับ
ขอบคุณครับ
จากcode นี้ จะ Modify แค่ ทีละ1 Order ครับ
{
int ordertotal=OrdersTotal()-1;
for(;ordertotal>=0;ordertotal--){
int Count=OrderSelect(ordertotal,MODE_TRADES);
if(OrderMagicNumber( )== Magic )
if(OrderType()== OP_BUY) // long position is opened
{
if(TrailingStop>0)
{
if(Bid-OrderOpenPrice()>Point*TrailingStop)
if(OrderStopLoss()<Bid-Point*TrailingStop)
{
int res=OrderModify(OrderTicket(),OrderOpenPrice(),NormalizeDouble(Bid-Point*TrailingStop,Digits),OrderTakeProfit(),0,Green);
if(!res)
Print("Error in OrderModify. Error code=",GetLastError());
else
Print("Order modified successfully.");
}
}
}
else
{
if(TrailingStop>0)
{
if((OrderOpenPrice()-Ask)>(Point*TrailingStop))
if((OrderStopLoss()>(Ask+Point*TrailingStop)) || (OrderStopLoss()==0))
{
int res=OrderModify(OrderTicket(),OrderOpenPrice(),NormalizeDouble(Ask-Point*TrailingStop,Digits),OrderTakeProfit(),0,Red);
if(!res)
Print("Error in OrderModify. Error code=",GetLastError());
else
Print("Order modified successfully.");
}
}
}
return (TrailingStop);
}