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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Chaikin Volume Accumulation
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:15:07
  7. //  Origin:          Originally developed by Marc Chaikin
  8. //  Keywords:        accumulation
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=8
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=8
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  A simple example of using HHV, LLV functions
  17. //
  18. //------------------------------------------------------------------------------
  19. /* Chaikin Volume Accumulation */
  20. cv = 25; 
  21. Graph0 = ((( CLOSE-LLV( CLOSE,cv )) - (HHV(CLOSE,cv)-CLOSE)) / (HHV(CLOSE,cv) - LLV(CLOSE,cv))) * VOLUME;
  22.