您现在的位置:程序化交易>> 期货公式>> 文华财经>> 文华财经知识>>正文内容

请帮忙把金字塔的唐奇安通道代码改成文华,谢谢 [文华财经]

  • 咨询内容:

    请帮忙把金字塔的唐奇安通道代码改成文华,谢谢

     

    //中间变量
    INPUT:X(20,1,100,1),NMIN(10,1,100,1),SS(1,1,10000,1);
    X周期高点:=REF(HHV(H,X),1);//X是参数,自行调整
    X周期低点:=REF(LLV(L,X),1);
    手数:=SS;
    开仓时间:=TIME>OPENTIME(1) AND TIME<CLOSETIME(0)-NMIN*100;
    平仓时间:=TIME>=CLOSETIME(0)-NMIN*100;
    {NMIN为参数,CLOSETIME(0)-NMIN*100表示 收盘时间-提前N分钟 N由NMIN控制}
     
    //交易条件:
    开多平空条件:=High>=X周期高点 and 开仓时间 and holding<=0;
    开空平多条件:=Low<=X周期低点 and 开仓时间 and holding>=0;

    //交易系统
    收盘平多:sell(平仓时间 and holding>0, 0, thisclose);
    收盘平空:sellshort(平仓时间 and holding<0,0,thisclose);

    平空:sellshort(开多平空条件 and holding<0, 手数,limitr,X周期高点);
    平多:sell(开空平多条件 and holding>0,手数,limitr,X周期低点);
    开空:buyshort(开空平多条件 and holding=0,手数,limitr,X周期低点);
    开多:buy(开多平空条件 and holding=0, 手数,limitr,X周期高点);

    当前持仓:HOLDING,COLORGRAY,LINETHICK0;
    //当前资产:ASSET,NOAXIS,COLORGRAY;//输出当前资产,但不影响坐标最高最低值

     

  • 文华技术人员:  改写需要时间,改写好后给您及时回复 

     

  • 文华客服:  我等

     

  • 网友回复:  HH:HV(H,20); LL:LV(L,20); H>HH&&CLOSEMINUTE>10,BPK; L<LL&&CLOSEMINUTE>10,SPK; CLOSEMINUTE<=10,CLOSEOUT; AUTOFILTER;
     模型仅供参考

     

  • 网友回复:  请再改一个金子塔到文华模型。input:n(13,1,20,1);
    input:m(70,-200,200,1);
    tn:=1;
    r1:=barslast(day-ref(day,1)<>0);
    r5:ref(o,r1)+0.1*m;
    r6:r5+n;
    r7:r5-n;
    FF:cross(h,r6);
    GG:cross(r7,l);
    JJ:cross(r5,l);
    DD:cross(h,r5);
    if time>091500 and time<150000 thenbeginif FF thenbeginbuy(holding=0,tn,limitr,r6);endif GG thenbeginbuyshort(holding=0,tn,limitr,r7);endif holding>0 and JJ thenbeginsell(1,0,limitr,r5);
    endif holding<0 and DD thenbeginsellshort(1,0,limitr,r5);
    endend//收盘前清仓if time>=151000 thenbeginsellshort(holding<0,0,thisclose);
    sell(holding>0,0,thisclose);end
    持仓:holding,colorwhite,linethick0;
    交易总数:totaltrade,colorwhite,linethick0;
    盈亏:asset-1000000,noaxis,colorred,linethick1; 

 

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

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


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

相关文章

    没有相关内容