您需要 登录 才可以下载或查看,没有帐号?注册
该函数演示如何修改多单止损。
for(int l_pos_76 = OrdersTotal() - 1; l_pos_76 l_pos_76--)
{
OrderSelect(l_pos_76, SELECT_BY_POS, MODE_TRADES);
if(OrderType() =OP_SELL // check for opened position
OrderSymbol()==Symbol()) // check for symbol
{
if(OrderType()==OP_BUY) // long position is opened
{
// should it be closed?
// check for trailing stop
{
OrderModify(OrderTicket(),OrderOpenPrice(),OrderOpenPrice()-200*Point,0,0,Green);
return(0);}
}
}
}复制代码
外汇交易有很大的风险性,本站所有资源均来自网络,请选择使用,如若出现亏损,本站不承担任何责任!