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

我加载在1秒图上应用 [金字塔]

  • 咨询内容:  

    我加载在1秒图上应用,
    突破半小时内最低价超过3点平多开空
    突破半小时内最高价超过3点平空开多

    (当前时间之前的半小时内)

     

    开仓后有大于10点的利润并且利润回撤30%则平仓

     

    循环执行,未平仓不允许开仓

     

  • 金字塔客服:

    if l<ref(llv(l,30*60),1)-3 then begin

        sell(1,0,market);

        buyshort(holding=0,1,market);

    end

     

    if h>ref(hhv(h,30*60),1)+3 then begin

         sellshort(1,0,market);

         buy(holding=0,1,market);

    end

     

    if holding>0 and h-enterprice>10 and (hhv(openprofit,enterbars+1)-openprofit)/hhv(openprofit,enterbars+1)>0.3 then sell(1,0,market);

     

    if holding<0 and enterprice-l>10 and (hhv(openprofit,enterbars+1)-openprofit)/hhv(openprofit,enterbars+1)>0.3 then sellshort(1,0,market);

     

  • 用户回复:

    测试的时候无数据??

     

  • 网友回复: 你切换到1秒中k线上,看看有没有足够多的数据

 

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

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


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

相关文章

    没有相关内容