Moving Trend Bands (MTB).afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Moving Trend Bands (MTB)
  4. //  Author/Uploader: Uenal Mutlu 
  5. //  E-mail:          uenal.mutlu@t-online.de
  6. //  Date/Time Added: 2003-04-08 21:00:27
  7. //  Origin:          Moving Trend: William Rafter, "The Moving Trend", TASC 1/2003 p38 The idea of Moving Trend Bands (MTB) is IMHO by  me.
  8. //  Keywords:        Moving Trend, Bands, MTB
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=266
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=266
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Around the Moving Trend Average an upper and lower band similar to
  17. //  Bollinger Bands is implemented. Maybe this is even better than BB (?).
  18. //
  19. //------------------------------------------------------------------------------
  20. /*
  21.    Moving Trend Bands (MTB)  [experimental]
  22.    Written 030408We by uenal.mutlu@t-online.de 
  23.    Similar to Bollinger Bands, maybe better?
  24. */
  25. // mid = LinearReg(C, Prefs(4));
  26.    mid = TSF(C, Prefs(4));
  27.    sd  = StDev(mid, Prefs(4));
  28.    top = mid + 1 * sd;  // check 1
  29.    bot = mid - 1 * sd;
  30.    Plot(C, "Moving Trend Bands (MTB)   C",
  31.      colorBlack, 1 + 8);
  32. // Plot(mid,  "mid", colorRed, 1);
  33.    Plot(top,  "top", colorWhite, 1);
  34.    Plot(bot,  "bot", colorWhite, 1);