เนื่องจากต้องการนำ traing stop ไปใช้
จึงลองแกะจาก EAbuilder มา
ไม่ทราบว่าแบบนี้ถูกไหม
///Trailing stop Buy
int TrailingStop = 30;
if(Bid - OrderOpenPrice() > Point * TrailingStop)
{
if(OrderStopLoss() < Bid - Point * TrailingStop)
{
OrderModify(OrderTicket(), OrderOpenPrice(), Bid - Point * TrailingStop, OrderTakeProfit(), 0, MediumSeaGreen);
if (!EachTickMode) BarCount = Bars; อันนี้ไว้ทำอะไรครับ ใช่เพื่อให้ปรับ eack tick mode ไหม
continue; อันนี้ไม่รู้ทำไมเป็น continue
}
}