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

一个开拓者tb模型的自适应均线的写法,求改成金字塔的 [金字塔]

  • 咨询内容:

    Params
     NumericSeries Price(1);
     Numeric EffRatioLength(10);
     Numeric FastAvgLength(2);
     Numeric SlowAvgLength(30);
    Vars
     Numeric NetChg(0);
     Numeric TotChg(0);
     Numeric EffRatio(0);
     Numeric ScaledSFSqr(0);
     NumericSeries AMAValue; 
     Numeric SFDiff;
    Begin
     if(CurrentBar == 0)
     {
      AMAValue = Price;
     }Else
     {
      NetChg = Abs( Price - Price[EffRatioLength] );
      TotChg = Summation( Abs( Price - Price[1] ), EffRatioLength );  
      EffRatio = IIF(TotChg > 0, NetChg / TotChg, 0);
      SFDiff = 2 / ( FastAvgLength + 1 ) - 2 / ( SlowAvgLength + 1 );  
      ScaledSFSqr = Sqr( 2 / ( SlowAvgLength + 1 ) + EffRatio * SFDiff );  
      AMAValue = AMAValue[1] + ScaledSFSqr * ( Price - AMAValue[1] );
     }
     Return AMAValue;
    End

     请大虾帮忙改下。。。。

    [此贴子已经被作者于2013-2-27 13:37:15编辑过]

     

  • 金字塔客服:

    直接贴这样的代码,要有人同时精通TB和金字塔,才能帮你改

    你还是把每句话都给注释一下

 

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

可联系技术人员 QQ: 262069696  点击在线交流进行 有偿 编写!不贵!点击查看价格!


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

相关文章

    没有相关内容