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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Derivative Oscillator
  4. //  Author/Uploader: Dan 
  5. //  E-mail:          
  6. //  Date/Time Added: 2003-03-15 12:22:53
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=263
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=263
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Derivative Oscillator as mentioned in Constance Brown's book Technical
  17. //  Analysys for Trading Professional.
  18. //
  19. //------------------------------------------------------------------------------
  20. /* CBDerivative */
  21. /* Set Scaling to Automatic, Show dates On, Percent On, Middle On */
  22. Graph0= (EMA(EMA(RSI(14),5),3))-(MA(EMA(EMA(RSI(14),5),3),9));
  23. Graph0Style = 2; 
  24. Graph0Color = 4;