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

请问为何图表上没有开平仓信号? [金字塔]

  • 咨询内容: 我把系统双击应用于图表,但是图表没有显示开平仓信号,请问是怎么回事?谢谢!以下是代码和图表:
    //函数定义a1:=valuewhen(todaybar=1,high);a2:=valuewhen(todaybar=1,low);a3:=time>=020000;a4:=time<230000;a5:=a3 and a4;a6:=time>=002300;
    //做多条件if holding=0 and a5 and close>a1 then beginbuy(1,1,marketr);end
    //平多条件if holding>0 and close<a2then beginsell(1,0,marketr);end
    //做空条件if holding=0 and a5 and close<a2then beginbuyshort(1,1,marketr);end
    //平空条件if holding<0 and close>a1then beginsellshort(1,0,marketr);end
    //收盘平仓if a6 and holding>0then beginsell(1,0,marketr);end
    if a6 and holding<0then beginsellshort(1,0,marketr);end

    此主题相关图片如下:没有开平仓信号.jpg


     

  • 金字塔客服:

    这边是有信号的, 全是信号

    用户代码是不是用的不是上面给的?用下面的代码呢?

    a1:=valuewhen(todaybar=1,high);
    a2:=valuewhen(todaybar=1,low);
    a3:=time>=020000;
    a4:=time<230000;
    a5:=a3 and a4;
    a6:=time>=002300;


    //做多条件
    if holding=0 and a5 and close>a1
    then begin
    buy(1,1,marketr);
    end


    //平多条件
    if holding>0 and close<a2
    then begin
    sell(1,0,marketr);
    end


    //做空条件
    if holding=0 and a5 and close<a2
    then begin
    buyshort(1,1,marketr);
    end


    //平空条件
    if holding<0 and close>a1
    then begin
    sellshort(1,0,marketr);
    end


    //收盘平仓
    if a6 and holding>0
    then begin
    sell(1,0,marketr);
    end


    if a6 and holding<0
    then begin
    sellshort(1,0,marketr);
    end

     

     

  • 用户回复: 1.用户代码是不是用的不是上面给的?代码是我自己写的,用的就是贴出来的代码;
    2.用下面的代码呢?我复制了您的代码,应用于图标,居然全是信号;我对比了我的代码和您的代码,我没看到有什么区别啊,为什么我用自己原来的代码不行,用你的就可以呢?

     

  • 网友回复: 你代码没编译或者用错代码之类的

     

  • 网友回复: 我复制了您的代码,应用于图标,居然全是信号;我对比了我的代码和您的代码,我没看到有什么区别啊,为什么我用自己原来的代码不行,用你的就可以呢?

 

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

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


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

相关文章

    没有相关内容