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

TB代码转金字塔 [金字塔]

  • 咨询内容:

    Params
     Numeric Length(21);
    Vars 
     NumericSeries TmpValue;
     Numeric SumVol;
     Numeric CMFValue;
    Begin
     If(High > Low)
      TmpValue = ((Close - Low) - (High - Close)) / (High - Low) * Vol;
        SumVol = SummationFC(Vol, Length);
     If(SumVol <> 0) 
         CMFValue = SummationFC(TmpValue, Length) / SumVol;
     PlotNumeric("CMF", CMFValue);
     PlotNumeric("Ref", 0);
    End;

     

    请修改成金字塔指标

     

  • 金字塔客服:  INPUT:Length(21,1,100,1);

    VARIABLE:TmpValue:=0;

    TmpValue:=IF(H<>l,((Close - Low) - (High - Close)) / (High - Low) * Vol,0);
    SumVol:=IF(H<>L,sum(Vol,Length),0);

    CMFValue:=IF(SumVol<>0,sum(TmpValue, Length) / SumVol,0);

    CMF:CMFValue;

    仅供参考。

 

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

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

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

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


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

相关文章

    没有相关内容