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

如何编写同一条k线只做一次交易动作 [金字塔]

  • 咨询内容: 想请教一下,只想在一条k线做一次交易,无论之后是否符合交易条件,也不再交易,直到等到下条k线开始

     

  • 金字塔客服:

    variable:n=0;

    if n=0 and 开多条件 then begin

       buy.........;

       n:=1;

    end

     

    if n=0 and 开空条件 then begin

       buy..........;

       n:=1;

    end

     

    if n=1 and 开多条件 and enterbars>0 and exitbars>0 then begin

        buy.......;

    end

     

    if n=1 and 开空条件 and enterbars>0 and exitbars>0 then begin

        buyshort.......;

    end

     

    if n=1 and 平多条件 and enterbars>0 and exitbars>0 then begin

        sell.......;

    end

     

    if n=1 and 平空条件 and enterbars>0 and exitbars>0 then begin

        sellshort.......;

    end

     

  • 用户回复: 谢谢,但不是很明白为什么要加个n?

     

  • 网友回复: 全局变量来记录第一次开仓,有了第一次开仓,才能在后续的开平仓里面用enterbars和exitbars的判断

     

  • 网友回复: 按你的写法写了,但没信号,只有第一次的开仓,后面就没有信号了

 

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

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


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

相关文章

    没有相关内容