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

请问,日内以来的开仓次数,如何表达 [金字塔]

  • 咨询内容: 如题,谢谢

     

  • 金字塔客服:

    用全局变量,开一次仓开仓次数加1,例如

    VARIABLE:n=0;

    if date<>ref(date,1) then n:=0;
    if 开仓条件 then begin
    buy();
    n:=n+1;
    end

    n就是开仓次数

    [此贴子已经被作者于2015/1/29 9:42:07编辑过]

     

  • 用户回复: H10:=REF(HHV(H,5),1);L10:=REF(LLV(L,5),1);VARIABLE:m=0;if date<>ref(date,1) then m:=0; 
    if h>h10 and holding<=entervol*1  and (m=0 or m=1) and time>091600 and time<150000 then begin     sellshort(1,0,market);     buy(1,1,market);     m:=m+1;     end if l<l10 and holding<=entervol*-1 and (m=0 or m=1) and time>091600 and time<150000 then begin     sell(1,0,market);     buyshort(1,1,market);     m:=m+1;     end 

       if L<ENTERPRICE-20 and enterbars>0 then begin sell(1,entervol,market);  end if h>ENTERPRICE+20 and enterbars>0 then begin sellshort(1,entervol,market); end
    if time>=151000 then begin sellshort(1,0,market);  sell(1,0,market);  m:=0;  end
    这样写,哪个地方错了,一笔交易都没有

     

  • 网友回复:

    把全部代码贴出来,不要一直贴你认为错误的那一部分

     

  • 网友回复: 这就是全部了

 

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

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


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

相关文章

    没有相关内容