多单移动止损:
- if(TrailingStop>0)
- {
- if(Bid-OrderOpenPrice()>Point*TrailingStop)
- {
- if(OrderStopLoss()<Bid-Point*TrailingStop)
- {
- //--- modify order and exit
- if(!OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green))
- Print("OrderModify error ",GetLastError());
- return;
- }
- }
- }
复制代码
|