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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Vertical Horizontal Filter (VHF)
  4. //  Author/Uploader: Jayson 
  5. //  E-mail:          jcasavant@adelphia.net
  6. //  Date/Time Added: 2002-11-03 03:05:47
  7. //  Origin:          Adam White
  8. //  Keywords:        trend
  9. //  Level:           basic
  10. //  Flags:           indicator,commentary
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=229
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=229
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  A trend Measuring Indicator
  17. //
  18. //------------------------------------------------------------------------------
  19. pds=18; 
  20. smooth=6;
  21. hcp=HHV(C,pds);
  22. lcp=LLV(C,pds);
  23. mcp=C-Ref(C,-1);
  24. sav=Sum(abs(mcp),pds);  
  25. Vhf=(Hcp-Lcp)/sav;
  26. Plot(EMA(vhf,smooth),"Vertical Horizontal Filter",colorBlue,4); 
  27. Title=WriteIf(Vhf>Ref(Vhf,-1)AND Ref(Vhf,-1)>Ref(Vhf,-2),EncodeColor(colorGreen)+" VHF is currently rising.",EncodeColor(colorYellow)+" VHF is Falling."); 
  28. //VHF Commentary
  29. WriteIf(Vhf>Ref(Vhf,-1)AND Ref(Vhf,-1)>Ref(Vhf,-2),"n VHF has been rising over the last 3 days. A rising VHF may indicate a trend is developing or strengthening"," n VHF has been falling over the last 3 days. A falling VHF may indicate a Congestion phase is developing OR that the current trend is coming to and end"); 
  30. "n Developed by Adam White VHF is used to measure the degree of trendiness of a stock. It can be used in 3 ways....";
  31. "n 1) VHF Levels Above or below a given Level indicate the degree of trend. The higher the reading the stronger the trend.";
  32. "n 2) Direction of VHF can help to determine whether a trending or congestive phase is developing. A rising VHF means a trend is in place OR developing while a falling VHF may spell an end to that trend";
  33. "n 3) VHF is Contrarian. Expect congestion to follow an exceptionally High reading. A very Low reading may lead to A new trend." ; 
  34.