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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    CCT FibAccordion
  4. //  Author/Uploader: Tomasz Janeczko 
  5. //  E-mail:          tj@amibroker.com
  6. //  Date/Time Added: 2001-07-20 09:49:12
  7. //  Origin:          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=74
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=74
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Steve Karnish wrote:
  17. //
  18. //  "The FibAccordion is the difference between two moving averages that are
  19. //  assigned fibonacci numbers. Try building your own by taking any two moving
  20. //  averages with different fibonacci numbers and subtracting one from another
  21. //  and plotting the results. Use either a simple or exponential average and
  22. //  vary the fibonacci numbers until you build an oscillator that you are
  23. //  comfortable with."
  24. //
  25. //------------------------------------------------------------------------------
  26. /* CCT FibAccordion
  27. **
  28. ** Originally developed by Steve Karnish 
  29. ** http://www.cedarcreektrading.com
  30. **
  31. ** AFL translation by Tomasz Janeczko
  32. **
  33. ** Set scaling: Automatic
  34. ** Grid: Middle
  35. */
  36. graph0= EMA( C,13 ) - EMA( C, 144 );