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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    CCT StochasticRSI
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-07-20 10:03:37
  7. //  Origin:          Originally developed by Steve Karnish, http://www.cedarcreektrading.com
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=76
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=76
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Steve Karnish wrote:
  17. //
  18. //  "Roger Altman, William Blau, Stanley Kroll, and Tushar Chande have all
  19. //  improved on J. Welles Wilder’s Relative Strength Index. I believe
  20. //  the best of these derivative indicators is the Stochastic RSI. [...] This
  21. //  version is just one of many I use. I like substituting the numbers 3, 5, 8
  22. //  & 13 in this formula. "
  23. //
  24. //------------------------------------------------------------------------------
  25. /* CCT StochRSI
  26. **
  27. ** Originally developed by Steve Karnish 
  28. ** http://www.cedarcreektrading.com
  29. **
  30. ** AFL translation by Tomasz Janeczko
  31. **
  32. ** Set scaling: Custom 0..100
  33. ** Grid: 30/70
  34. */
  35. period = 13;
  36. graph0=100*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI( period ) , period ) ) - LLV(RSI( period ), period ) ) );