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

这个条件如何编写 [金字塔]

  • 咨询内容: 条件成立开仓,然后不成立平仓,条件又成立再开仓,然后不成立又平仓,然后今天就不再做了,就是一天最多只做两个开仓平仓,但是无论什么,在三点前全部平仓,这个策略如何编写

     

  • 金字塔客服:

    variable:n=0;

    if 开仓条件 and holding=0 and n<2 then buy.........;

    if 平仓条件 and holding>0 then begin

        sell......

        n:=n+1;

    end

     

     

    if time>=145500 then sell.........;

     

     

  • 用户回复:


    variable:n=0;

    if TIME>091500 AND TIME<151300 AND 开多条件 and holding=0 and n<2 then BUY(1,1,MARKET);

    if TIME>091500 AND TIME<151300 AND 平多条件 and holding>0 then begin

        SELL(1,1,MARKET);

        n:=n+1;
    end

    if TIME>091500 AND TIME<151300 AND 开空条件 and holding=0 and n<2 then BUYSHORT(1,1,MARKET);

    if TIME>091500 AND TIME<151300 AND 平空条件 and holding<0 then begin

        SELLSHORT(1,1,MARKET);

        n:=n+1;
    end


    IF TIME>151300 THEN
     BEGIN
    全平空:SELLSHORT(HOLDING<0,0,MARKET);
    全平多:SELL(HOLDING>0,0,MARKET);
    END

     

    这段代码为什么不出现信号

     

  • 网友回复:

    variable:n=0;

    if date<>ref(date,1) then n:=0;

    if TIME>091500 AND TIME<151300 AND 开多条件 and holding=0 and n<2 then BUY(1,1,MARKET);

    if TIME>091500 AND TIME<151300 AND 平多条件 and holding>0 then begin

        SELL(1,1,MARKET);

        n:=n+1;
    end

    if TIME>091500 AND TIME<151300 AND 开空条件 and holding=0 and n<2 then BUYSHORT(1,1,MARKET);

    if TIME>091500 AND TIME<151300 AND 平空条件 and holding<0 then begin

        SELLSHORT(1,1,MARKET);

        n:=n+1;
    end


    IF TIME>151300 THEN
     BEGIN
    全平空:SELLSHORT(HOLDING<0,0,MARKET);
    全平多:SELL(HOLDING>0,0,MARKET);
    END

     

    加了一个全局变量重置,看看效果咋样

     

  • 网友回复:

    就今天上午的行情,为什么在2314.8 和2314.2两上价位了上开了空单?

 

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

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


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

相关文章

    没有相关内容