请问从历史交易记录判断停损或停利的写法有错误

楼主  收藏   举报   帖子创建时间:  2019-05-05 15:12 回复:0 关注量:225
double histt,histcb,histcs;
  
  for(int i=OrdersHistoryTotal()-1;i>0;i--){
  OrderSelect(i, SELECT_BY_POS, MODE_HISTORY);
  if(OrderSymbol()==Symbol()){
  histt=OrderCloseTime();
  
  if(OrderType()==OP_BUY && OrderOpenPrice()>OrderClosePrice()){histcb=OrderClosePrice();}else if(OrderType()==OP_BUY && OrderOpenPrice()
打赏