移动止损另类写法,请高手指正
一小时周期做单,将买单止损移动到上根K线的最低点之下3个点,将卖单止损移动到上根K线的最高点之上7个点。写成下面的样子为什么测试时不能修改止损?请专家大哥指正,给个正确的代码更好L1H1>L2H1 上根K线的最低点>上上根K线最低点 后面的H1代表1小时周期
H1H1<H2H1上根K线的最高点<上上根K线最高点 后面的H1代表1小时周期
for( int cnt=0;cnt<total;cnt++)
{OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
if(OrderSymbol()==Symbol())// check for symbol
{ if(OrderType()==OP_BUY) // long position is opened
{if(L1H1>L2H1)//*TrailingStop)
{OrderModify(OrderTicket(),OrderOpenPrice(),L1H1-3*Point,OrderTakeProfit(),0,0);
} }
else{if(OrderType()==OP_SELL)
{if(H1H1<H2H1)//(Point*TrailingStop
{OrderModify(OrderTicket(),OrderOpenPrice(),H1H1+7*Point,OrderTakeProfit(),0,0);
}
}}}}
}
页:
[1]