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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    ADXR
  4. //  Author/Uploader: Jayson Casavant 
  5. //  E-mail:          jcasavant@adelphia.net
  6. //  Date/Time Added: 2002-11-07 00:51:21
  7. //  Origin:          Wells Wilder
  8. //  Keywords:        Market strength
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=230
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=230
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Developed by Wells Wilder ADXR is a component of the Directional Movement
  17. //  System. The indicator is used to determine if the market under study is
  18. //  trending or consolidating. According to Wilder values greater than 25
  19. //  indicate the use of Trend following systems or indicators. Values less than
  20. //  25 may be better suited to consolidation indicators.
  21. //
  22. //  Perhaps more useful is to simply note if the indicator is rising or
  23. //  falling. A rising ADXR indicates a trend is either forming or in place, a
  24. //  falling ADXR indicates a weakening trend or consolidation phase. Note that
  25. //  a rising ADXR indicates trend strength not direction.
  26. //
  27. //------------------------------------------------------------------------------
  28. /* Developed by Wells Wilder ADXR is a component of the Directional Movement System. The indicator is used to determine if the market under study is trending or consolidating. According to Wilder values greater than 25 indicate the use of Trend following systems or indicators. Values less than 25 may be better suited to consolidation indicators.
  29. Perhaps more useful is to simply note if the indicator is rising or falling. A rising ADXR indicates a trend is either forming or in place, a falling ADXR indicates a weakening trend or consolidation phase. Note that a rising ADXR indicates trend strength not direction.*/                                                       
  30.  
  31. pds=14;
  32. Adxr = ( ADX(pds) + Ref( ADX(pds), -14 ) )/2;
  33. Plot(ADxr,"",colorWhite,4);
  34.