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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Chaikin Money Flow
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:07:10
  7. //  Origin:          Originally developed by Marc Chaikin
  8. //  Keywords:        accumulation,distribution,trend
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=6
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=6
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Chaikin Money Flow Indicator Appeared in the January 94 issue of Stocks
  17. //  & Commodities magazine Like the popular Chaikin A/D Oscillator
  18. //  developed by Marc Chaikin, the Chaikin Money Flow indicator is based on the
  19. //  Accumulation/Distribution line. It is created by summing the values of the
  20. //  Accumulation/Distribution Line for 21 periods and then dividing by a 21
  21. //  period sum of the volume. The interpretation of the Chaikin Money Flow
  22. //  indicator is based on the assumption that market strength is usually
  23. //  accompanied by prices closing in the upper half of their daily range with
  24. //  increasing volume. Likewise, market weakness is usually accompanied by
  25. //  prices closing in the lower half of their daily range with increasing
  26. //  volume. If prices consistently close in the upper half of their daily
  27. //  high/low range on increased volume, then the indicator will be positive
  28. //  (i.e., above the zero line). This indicates that the market is strong.
  29. //  Conversely, if prices consistently close in the lower half of their daily
  30. //  high/low range on increased volume, then the indicator will be negative
  31. //  (i.e., below the zero line). This indicates that the market is weak. The
  32. //  Chaikin Money Flow indicator provides excellent confirmation signals of
  33. //  trendline and support/resistance breakouts. For example, if a security's
  34. //  prices have recently penetrated a downward sloping trendline (signaling a
  35. //  potential trend reversal), you may want to wait for further confirmation by
  36. //  allowing the Chaikin Money Flow indicator to cross above the zero line.
  37. //  This may indicate an overall shift from a downtrend to a new uptrend. A
  38. //  divergence between the Chaikin Money Flow indicator and prices are also
  39. //  significant. For example, if the most recent peak of the indicator is lower
  40. //  than it's prior peak, yet prices are continuing upward, this may indicate
  41. //  weakness.
  42. //
  43. //------------------------------------------------------------------------------
  44. /* 
  45. Chaikin Money Flow Indicator
  46. */  
  47. Graph0 = sum(((( C-L )-( H-C )) / ( H-L ))*V, 21 ) / sum(V,21);