您现在的位置:程序化交易>> 期货公式>> 金字塔等>> 金字塔知识>>正文内容

为什么统一信号反复开仓 [金字塔]

  • 咨询内容: 在螺纹1710 五分钟图测试为什么会有开仓信号模糊点呢 ? 求指导
    input:grid(60,1,6000,1);
    variable:level=0;
    dist:=barslast(date<>ref(date,1));
    oo:=2900;
    n: = -5;
    ll: oo + n*grid*mindiff;
    hh: oo - n*grid *mindiff;if holding=0  and l > ll+grid*mindiff and h < hh then begin
    dnprice:=oo-grid*mindiff;
    if low<=dnprice  then begin
    buy(1,1,limitr,dnprice);
    level:=-1;
    end
    end
    if holding = 1  and h >hh then begin         //上涨平一首
     
      sell(1,1,limitr,hh);
      end
     
     if holding > 0 and c < ll then begin    // 下跌全平
      sell(1,holding,limitr,ll);
      endif holding>0 and  c > ll then begin        //下跌加仓
          
    upprice:=oo+(level+1)*grid*mindiff;
    dnprice:=oo+(level-1)*grid*mindiff;if high>=upprice  and level >n then begin
    sell(1,1,limitr,upprice);
    level:=level+1;
    endif low<=dnprice and level > n then begin
    buy(1,1,limitr,dnprice);
    level:=level-1;
    endend

     

  • 金字塔客服: 用的固定时间间隔吗?

     

     来源:程序化久久网( WWW.CXH99.COM )

  • 用户回复: 恩 是的, 每次 全部平仓以后再次重新开仓为什么总是反复开仓三首呢?

     

  • 网友回复: 恩,是的 ,每次都会在相邻的三个k线开三首呢  为什么呢  那里有问题呢?求解释

     

  • 网友回复:

    你用debugfile输出开仓条件等信息,配合交易日志进行分析。

    http://www.weistock.com/bbs/dispbbs.asp?boardid=4&Id=49428

     

 

有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友

可联系技术人员 QQ: 511411198  点击这里给我发消息进行 有偿 编写!不贵!点击查看价格!


【字体: 】【打印文章】【查看评论

相关文章

    没有相关内容