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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Know Sure Thing
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:42:59
  7. //  Origin:          Originally developed by Martin Pring
  8. //  Keywords:        rate-of-change,trend
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=18
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=18
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Daily, Short-time Know Sure Thing indicator. This is smoothed version of
  17. //  classical rate-of-change indicator.
  18. //
  19. //------------------------------------------------------------------------------
  20. /*
  21. ** Daily, Short term KST 
  22. ** AFL formula by Tomasz Janeczko 
  23. */
  24. p1 = ma( Roc(Close,10), 10);
  25. p2 = ma( Roc( Close, 15), 10 );
  26. p3 = ma( Roc( Close, 20), 10 ) ;
  27. p4 = ma( Roc( Close, 30), 15);
  28. kst = p1 + 2 * p2 + 3 * p3 + 4 * p4;
  29.  
  30. graph0 = kst / 10;
  31.