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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Absolute Breadth Index
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 07:36:16
  7. //  Origin:          Originaly developed by Norman G. Fosback.
  8. //  Keywords:        breadth
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=1
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=1
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  The Absolute Breadth Index (ABI) is a market momentum indicator that was
  17. //  developed by Norman G. Fosback. The ABI shows how much activity,
  18. //  volatility, and change is taking place on the New York Stock Exchange while
  19. //  ignoring the direction prices are headed. You can think of the ABI as an
  20. //  "activity index". High readings indicate market activity and change, while
  21. //  low readings indicate lack of change. In Mr. Fosback's book, Stock Market
  22. //  Logic, he indicates that historically, high values typically lead to higher
  23. //  prices three to twelve months later.
  24. //
  25. //------------------------------------------------------------------------------
  26. /*
  27. Absolute Breadth Index
  28. AFL implementation by Tomasz Janeczko.
  29. */
  30. graph0 = abs( AdvIssues() - DecIssues() );