您现在的位置:程序化交易>> 期货公式>> 交易开拓者(TB)>> 开拓者知识>>正文内容

请老师帮忙看一下这个怎么计算 [开拓者 TB]

  • 咨询内容:
    源码如下,利用两条均线金叉后的最高点和死叉后的最低点画转折线,帮忙看一下怎么求取图中转折点的位置和价格:

    //------------------------------------------------------------------------

    Params
    Numeric N1(5);
    Numeric N2(20);
    Vars
    Series<Numeric> Line1;
    Series<Numeric> Line2;
    Series<Numeric> exhl;
    Series<Numeric> hhbar;
    Series<Numeric> llbar;

    Events
    OnBar(ArrayRef<Integer> indexs)
    {
    Line1 = XAverage(c,n1);
    Line2 = XAverage(c,n2);
    if(line1<line2)
    {
    exhl=Min(l,exhl);
    }
    if(line1>line2)
    {
    exhl=max(h,exhl);
    }
    hhbar=NthCon(h==exhl,1);
    llbar=NthCon(l==exhl,1);

    //PlotNumeric("Line1",Line1);
    //PlotNumeric("Line2",Line2);
    if(h==exhl)
    {
    if(hhbar[1]>llbar[1])
    {Unplot("exhl",llbar+1);
    PlotNumeric("exhl",exhl);
    }else if(hhbar[1]<llbar[1])
    {Unplot("exhl",hhbar[1]+1);
    PlotNumeric("exhl",exhl);
    }
    }
    if(l==exhl)
    {
    if(hhbar[1]<llbar[1])
    {
    Unplot("exhl",hhbar+1);
    PlotNumeric("exhl",exhl);
    }else if (hhbar[1]>llbar[1])
    {
    Unplot("exhl",llbar[1]+1);
    PlotNumeric("exhl",exhl);
    }
    }


    }

    //------------------------------------------------------------------------
    // 编译版本 GS2015.12.25

 

有思路,想编写各种指标公式,交易模型,选股公式,还原公式的朋友

可联系技术人员 QQ: 262069696  点击在线交流或微信号:cxh99cxh99  进行 有偿收费 编写!

怎么收费,代编流程等详情请点击阅读!

(注:由于人数限制,QQ或微信请选择方便的一个联系我们就行,加好友时请简单备注下您的需求,否则无法通过。谢谢您!)


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

相关文章

    没有相关内容