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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    The Saturation Indicator D_sat
  4. //  Author/Uploader: Dimitris Tsokakis 
  5. //  E-mail:          tsokakis@oneway.gr
  6. //  Date/Time Added: 2002-12-01 14:38:17
  7. //  Origin:          
  8. //  Keywords:        
  9. //  Level:           medium
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=238
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=238
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  There are some discrete phases for a bullish trend. The beginning is
  17. //  usually sharp, the market changes direction quickly,
  18. //
  19. //  Short positions are covered with rush, Long entries may be obliged to
  20. //  follow gap ups etc.
  21. //
  22. //  The rate of change is becoming slower, premature profit taking appears as
  23. //  long as new buyers are added to the list.
  24. //
  25. //  Intermediate good market news keep on giving bullish pulses, buyers search
  26. //  for new opportunities not to loose the trend but not to buy expensive
  27. //  shares
  28. //
  29. //  and this makes a circular money transfer with an always repeated result :
  30. //  The directional movement of the market.
  31. //
  32. //  When the buying and selling pressure come to some equilibium, we have the
  33. //  saturation point and this is the end of the main trend.
  34. //
  35. //  Some stocks may moove higher for a while but the market has already
  36. //  prepared the next bearish phase.
  37. //
  38. //  Last summer I designed a nice indicator giving a graphic emphasis to this
  39. //  saturation phenomena of bullish movements.
  40. //
  41. //  It is the RSI of the smoothed CMO and it will be called D_sat .
  42. //
  43. //------------------------------------------------------------------------------
  44. /*The Saturation Indicator D_sat, by Dimitris Tsokakis, Dec 2002*/
  45. P=30;
  46. CMO30=100*((Sum(IIf(C>Ref(C,-1),(C-Ref(C,-1)),0),P))-(Sum(IIf(C<Ref(C,-1),(Ref(C,-1)-C),0),P)))/((Sum(IIf(C>Ref(C,-1),(C-Ref(C,-1)),0),P)+(Sum(IIf(C<Ref(C,-1),(Ref(C,-1)-C),0),P))));
  47. C1=DEMA(CMO30,30);
  48. D_sat10=RSIA(C1,10);
  49. D_sat5=RSIA(C1,5);
  50. Plot(D_sat10,"D_sat10",1,1);Plot(D_sat5,"D_sat5",5,1);Plot(D_sat5-D_sat10,"D_sat difference",9,2);
  51.