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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Trending Ribbon
  4. //  Author/Uploader: Jim Wiehe 
  5. //  E-mail:          
  6. //  Date/Time Added: 2006-07-17 06:22:25
  7. //  Origin:          It leaked out of my brain.
  8. //  Keywords:        ADX and MACD
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=635
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=635
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  This uses the nifty ribbon function in Amibroker. I use this in most of my
  17. //  price charts because it reduces the clutter with too many indicators on the
  18. //  screen. So if the ribbon is green both the MACD and ADX have started
  19. //  trending up. If the ribbon is red both the MACD and ADX are trending down.
  20. //
  21. //------------------------------------------------------------------------------
  22. // Paste the code below to your price chart somewhere and green ribbon means both
  23. // both MACD and ADX trending up so if the red ribbon shows up the MACD and the ADX 
  24. // are both trending down.
  25. _SECTION_BEGIN("trending ribbon");
  26. uptrend=PDI()>MDI()AND Signal()<MACD();
  27. downtrend=MDI()>PDI()AND Signal()>MACD();
  28. Plot( 2, /* defines the height of the ribbon in percent of pane width */"ribbon",
  29. IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */
  30. styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
  31. _SECTION_END();