28评论

0收藏

请教高手这段代码 的意思?

avatar zhouyu5415 | 6061 人阅读 | 28 人评论 | 2015-01-15

double maxProfitPrice = 0.0;
void posProcess(){
    int orders = OrdersTotal();
   if(orders == 0) maxProfit =0.0;
   if(orders>0){
      for(int i=orders-1;i>=0;i--){
         if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) continue;
         if(isBuySymbol() ){
            if(Bid>OrderStopLoss()+dTsp*pPoint /* && Bid>OrderOpenPrice() +dTsp*pPoint*/ ){
               orderModifyTrailStop(Bid-dTsp*pPoint);
               maxProfit = OrderProfit();
               maxProfitPrice = Bid;
            }
            if(OrderProfit()>maxProfit && NormalizeDouble(maxProfit,Digits)>0.0){
               maxProfit = OrderProfit();
               maxProfitPrice = Bid;
""
还没有人打赏,支持一下

评论|共 28 个

johnxia

发表于 2015-1-15 17:27:26 | 显示全部楼层

可惜不能帮你

quekuazz

发表于 2015-1-15 18:32:15 | 显示全部楼层

赚钱,赚积分。顶....

龙崔版纪

发表于 2015-1-15 18:57:25 | 显示全部楼层

看看什么EA,,,

yigmh

发表于 2015-1-15 19:48:41 | 显示全部楼层

nice!!!!!!!!!!!!

纯情

发表于 2015-1-16 08:44:03 | 显示全部楼层

回复看看

毕村内富

发表于 2015-1-16 09:43:52 | 显示全部楼层

[s:145]

bolelove1314

发表于 2015-1-16 22:27:22 | 显示全部楼层

不懂啊

陈小熊

发表于 2015-8-13 16:33:46 | 显示全部楼层

double maxProfitPrice = 0.0;
void posProcess(){
    int orders = OrdersTotal();//获取订单数
   if(orders == 0) maxProfit =0.0;
   if(orders>0){//订单数大于0
      for(int i=orders-1;i>=0;i--){
         if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) //选择失败,继续选择下一个
            continue;
         if(isBuySymbol() ){//isBuySymbol()这个函数什么意思?
            if(Bid>OrderStopLoss()+dTsp*pPoint /* && Bid>OrderOpenPrice() +dTsp*pPoint*/ ){//当前卖价大于订单的止损价加上dTsp*pPoint(具体意思联系上下文)
               orderModifyTrailStop(Bid-dTsp*pPoint);//应该是修改止损?
               maxProfit = OrderProfit();//代码太少懒得写了。。。
               maxProfitPrice = Bid;
            }
            if(OrderProfit()>maxProfit && NormalizeDouble(maxProfit,Digits)>0.0){
               maxProfit = OrderProfit();
               maxProfitPrice = Bid;
               }

fayokey

发表于 2015-8-13 21:12:45 | 显示全部楼层

学习学习

123下一页
您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则