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

当2处以后出现价格大于等于a,我们就平仓,怎么编写 [金字塔]

  • 咨询内容:


    图片点击可在新窗口打开查看
    1处有一手空单,当运行到2处(C上穿白线(ma(c,30))的时候,我们停下来计算一个值a,a=ma(c,30)+2*atr    (ma(c,30)和ATR都是2处这根K线的。。。

    当2处以后出现价格大于等于a,我们就平仓。怎么编写···

     

  • 金字塔客服: 工作人员在处理,稍后回复

     

  • 用户回复: 谢谢

     

  • 网友回复:

    {1处有一手空单,当运行到2处(C上穿白线(ma(c,30))的时候,
    我们停下来计算一个值a,a=ma(c,30)+2*atr   
    (ma(c,30)和ATR都是2处这根K线的。。。
    当2处以后出现价格大于等于a,我们就平仓。怎么编写···
    5分钟周期股指}
     
    variable:aa=0,bb=0;
    ma30:=ma(c,30);
    atr:=stkindi('','atr.atr',0,2);
    cond:=开空条件;
    if cond and holding=0 then begin
    buyshort(1,1,market);
    aa:=0;
    end
    if aa=0 and holding<0 and cross(c,ma30) then begin
    aa:=1;
    bb:=ma30+2*atr;
    end

    if aa=1 and c>bb then begin
    sellshort(1,0,market);
    aa:=0;
    bb:=0;
    end

    仅供参考

     

  • 网友回复:

    ma30:=ma(c,30);
    cond1:=holding<0;
    cond2:=cross(c,ma30);
    variable:a:=0;

    if cond2 and cond1 then   
    begin
       a:=ma30+2*STKINDI('' ,'ATR.ATR' ,0 ,1 ,0 );

       hh:=c;
    end
    if hh<c then sellshort(1,0,market);

     

    仅供参考

     

 

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

可联系技术人员 QQ: 262069696  点击在线交流进行 有偿 编写!不贵!点击查看价格!


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

相关文章