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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Bollinger oscillator
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-06-16 08:01:18
  7. //  Origin:          Bollinger bands and related oscillators were developed by John Bollinger
  8. //  Keywords:        bollinger,standard deviation
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=4
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=4
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  A simple example of using StDev function
  17. //
  18. //------------------------------------------------------------------------------
  19. /* Bollinger Oscillator */
  20. Graph0 = ( CLOSE - MA( CLOSE, 14 ) )/ StDev( CLOSE, 14);