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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    10-20 Indicator
  4. //  Author/Uploader: Dennis Skoblar 
  5. //  E-mail:          DennisAndLisa@sbcglobal.net
  6. //  Date/Time Added: 2005-06-14 04:09:34
  7. //  Origin:          Dave Landry On Swing Trading by Dave Landry
  8. //  Keywords:        Dave Landry,Landry,10-20 indicator
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=471
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=471
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Shows how many points the stock has gone in a 20 day (one month) period.
  17. //  The ideal would be for a stock to move 10 points in a 20 day period.
  18. //
  19. //------------------------------------------------------------------------------
  20. _SECTION_BEGIN("TenTwentyValue");
  21. TenTwentyValue = HHV(H,20)-LLV(L,20);
  22. Plot(TenTwentyValue,"10/20 Value",colorRed,styleLine);
  23. _SECTION_END();