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

反手开仓 [金字塔]

  • 咨询内容: 我现在想编写一段反手的代码!5日均线上穿10日均线做多,下穿反手做空,再上穿就直接平仓不再开仓!求大神指教!

     

  • 金字塔客服:

    ma5:ma(c,5);

    ma10:ma(c,10);

    variable:n=0;

    if cross(ma5,ma10)  and holding=0 and n=0 then begin

        buy(holding=0,1,market);

        n:=1;

    end

     

    if cross(ma10,ma5) then begin

       sell(holding>0,1,market);

       buyshort(holding=0,1,market);

    end

     

    if cross(ma5,ma10) and holding>0 and n=1 then begin

        sellshort(holding<0,1,market);

    end

    [此贴子已经被作者于2014/3/28 14:50:57编辑过]

 

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

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


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

相关文章

    没有相关内容