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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Vertical Horizontal Filter
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:34:26
  7. //  Origin:          Presented in TASC magazine
  8. //  Keywords:        trend,moving average
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=16
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=16
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Vertical Horizontal Filter indicator. This filter identifies when a stock
  17. //  is trending and when it is in a congestion phase so the analyst can apply
  18. //  the correct type of analysis indicator, such as moving average for trends
  19. //  or stochastics for congestion. VHF readings above 0.3 to 0.38 indicate a
  20. //  trending market while readings below this point are considered congestion.
  21. //  (Thanks to Carlton McEachern for the description)
  22. //
  23. //------------------------------------------------------------------------------
  24. /*Vertical Horizontal Filter
  25.   AFL implementation by Tomasz Janeczko */
  26. num = hhv( close, 28 ) - llv( close, 28 );
  27. denom = sum( abs( close - ref( close, -1 ) ), 28 );
  28. graph0=100*num/denom;