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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    CCT Bollinger Band Oscillator
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-07-20 09:44:39
  7. //  Origin:          Steve Karnish, http://www.cedarcreektrading.com
  8. //  Keywords:        bollinger band
  9. //  Level:           medium
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=73
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=73
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Steve Karnish wrote:
  17. //
  18. //  "Bollinger Bands were developed by John Bollinger and are envelopes that
  19. //  are plotted at two (2) standard deviation levels above and below a moving
  20. //  average. The CCT Bollinger Band Oscillator reconfigures the classic bands.
  21. //  The new indicator constructs two (2) parallel lines instead of the erratic
  22. //  envelopes. These parallel lines represent a measurement of two (2) standard
  23. //  deviations from the mean and are assigned zero and 100 on the chart. The
  24. //  indicator represents the price as it travels above and below the mean (50%)
  25. //  and outside the two standard deviations (zero and 100). Penetration of the
  26. //  upper or lower band represents overbought and oversold conditions. When
  27. //  using the CCT Bollinger Band Oscillator, “failure
  28. //  swings” and “divergences” can lead to
  29. //  significant reversals."
  30. //
  31. //------------------------------------------------------------------------------
  32. /* CCT Bollinger Band Oscillator 
  33. **
  34. ** Originally developed by Steve Karnish 
  35. ** http://www.cedarcreektrading.com
  36. **
  37. ** AFL translation by Tomasz Janeczko
  38. **
  39. ** Set scaling: Automatic
  40. ** Grid: Middle, Level 0
  41. */
  42. graph0= 100 * ( C + 2*StDev( C, 21) - MA( C, 21 ) ) / ( 4 * StDev( C, 21 ) );