Trending or Trading .afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Trending or Trading ?
  4. //  Author/Uploader: Dimitris Tsokakis 
  5. //  E-mail:          
  6. //  Date/Time Added: 2002-03-24 14:15:51
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           advanced
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=177
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=177
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  We have here a simple tool, useful to detect if the Market is trending
  17. //  (bullish or bearish) or trading (moving sideways), based on macd and its
  18. //  signal. Values of "bull" above 70, signal the beginning of a bullish period
  19. //  for the Market as a whole. Values between 30 and 70 indicate a trading
  20. //  period (congestion) and values below 30 announce that the bears supervise
  21. //  the game.
  22. //
  23. //  We create first the MACD composites, based on well known relations
  24. //
  25. //  macd()>signal() (bullish) and
  26. //
  27. //  macd()<=signal() (bearish).
  28. //
  29. //  The results are properly arranged to vary between 0 and 100, whithout
  30. //  disturbing the shape of curves.
  31. //
  32. //  Then we can plot the "bull" and "bear" graph.
  33. //
  34. //------------------------------------------------------------------------------
  35. /*MACD BULL-BEAR*/
  36. ob=Signal()<MACD();
  37. os=Signal()>=MACD();
  38. values5 = os>0;
  39. values6 = ob>0;
  40. AddToComposite(Values5,"~macdbear","V");
  41. AddToComposite(Values6,"~macdbull","V");
  42. Buy=0;