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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Simple Momentum
  4. //  Author/Uploader: Alex Fler 
  5. //  E-mail:          alexfler@mail.ru
  6. //  Date/Time Added: 2005-08-06 22:46:26
  7. //  Origin:          Simple Momentum
  8. //  Keywords:        momentum
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=539
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=539
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  The momentum of a security is the ratio of today's price compared to the
  17. //  price x-time periods ago. Similar to what you'll find in Metastock ,Trade
  18. //  Station 2000i or Advanced Get
  19. //
  20. //------------------------------------------------------------------------------
  21. /* Momentum indicator */
  22. /* The momentum of a security is the ratio of today's price compared to the price x-time periods ago */
  23. /* Coded by Alex Fler */
  24. periods=Param("Periods",14,2,200,1);
  25. Plot( mom=(Close/Ref(Close,-periods)-1),_DEFAULT_NAME(),ParamColor("Color", colorCycle ), ParamStyle("Style") );
  26. Plot(0,"",colorBlue,style=32);