MAM.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    MAM
  4. //  Author/Uploader: Salil V Gangal 
  5. //  E-mail:          salil_gangal@yahoo.com
  6. //  Date/Time Added: 2002-11-10 23:19:20
  7. //  Origin:          
  8. //  Keywords:        MAM, Most Anchored Momentum
  9. //  Level:           medium
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=234
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=234
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  MAM - Most Anchored Momentum.
  17. //
  18. //  This indicator is similar to FastTrack Rank, except it has *much* less
  19. //  noise. This indicator is also similar in looks (on chart) to RSI. However,
  20. //  this is *unbounded*, so it does not flatten out at the extremes.
  21. //
  22. //  The author of this indicator has create PDF document, which is available at
  23. //  the following URL ===>
  24. //
  25. //  http://fundvision.com/essays/essays_rudy.shtml
  26. //
  27. //  Regards,
  28. //
  29. //  - Salil V Gangal
  30. //
  31. //------------------------------------------------------------------------------
  32. mamPeriod = 13;
  33. mam = 100*(close/ma(close, (2*mamPeriod) +1) -1);
  34. Plot(mam,"MAM-13",colorSkyBlue,8);
  35. Plot(0,"",colorYellow,1);