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

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Bull/Bear Volume
  4. //  Author/Uploader: Nick Molchanoff 
  5. //  E-mail:          nkm at dr dot com
  6. //  Date/Time Added: 2004-09-29 22:12:49
  7. //  Origin:          
  8. //  Keywords:        Volume, Bull, Bear, Average
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=382
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=382
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  An approximation of the average Bull Volume component versus the average
  17. //  Bear Volume component of total Volume. Displays an interesting and helpful
  18. //  view of the ebb and flow of Bull and Bear Volume pressure in the market.
  19. //  Shows what the bears are up to while the bulls are in control and vice
  20. //  versa. You can see bull pressure building (or bear pressure diminishing) in
  21. //  advance of a bullish price move (especially in sideways markets and
  22. //  horizonal rectangular consolidations). The graph moves in curves from which
  23. //  you can often extrapolate reasonably accurate and useful projections of
  24. //  future Bull or Bear Volume Action.
  25. //
  26. //------------------------------------------------------------------------------
  27. /* 
  28. A approximation of the average Bull Volume component versus the average Bear Volume component of total Volume.  Dieplays an interesting and helpful view of the ebb and flow of Bull and Bear Volume pressure in the market.  Shows what the bears are up to while the bulls are in control and vice versa.  You can see bull pressure building (or bear pressure diminishing) in advance of a bullish price move (especially in sideways markets and horizonal rectangular consolidations).  The graph moves in curves from which you can often extrapolate reasonably accurate and useful projections of future Bull or Bear Volume Action.
  29. Features:
  30.  Total Volume MA Histogram and Line
  31.  Bull Volume MA Histogram and Line
  32.  Bear Volume MA Histogram and Line
  33.  Currently Selected Bull Volume Level
  34.  Currently Selected Bear Volume Level
  35.  Bull/Bear Volume Convergence/Divergence Oscillator
  36.  Rising and Falling Convergence/Divergence  Background Shadows
  37. ***All components of the indicator can be toggled on and off via the parameter window if the display is too busy or too sparse for your tastes. Set your own defaults in the code.***
  38. I tried to use all AB color constants for compatibility but the available greys are too dark - In this case I have supplied the RGB values for the custom greys I used in the Rise/Fall Background Shadows.  If your color scheme is radically different than the default gray background you may have to redo all the colors to your satisfaction.
  39. Known Issues:  
  40. Sometimes the volume will dip slightly below the zero line, especially at the beginning of the chart. I think this is related to the lookback periods for the TEMA's  and the uneven distribution of up and down days in the market- I don't think it voids the reliability or usefulness of the indicator.  When I figure out how to fix it I will post the updated code.  Or if anyone knows the cause and fix please let me know via email or post the fix in the comments section.
  41. If you find this indicator helpful, or if you find any error in logic or coding, or if you see a better way to display this information, please drop me an email at:
  42. "nkm at dr dot com" 
  43. ...and let me know - I'd love to get the feedback.
  44. Best Regards,
  45. Nick Molchanoff
  46. */
  47. /* basic variable defs 
  48.  ud: up-Day (Close up from Open)
  49.  dd: down-Day (Close down from Open)
  50.  uc: up-Close (Close up from previous Close)
  51.  dc: down-Close: (Close down from previous Close)
  52. */
  53. C1 = Ref(C, -1);
  54. uc = C > C1; dc = C <= C1;
  55. ud = C > O; dd = C <= O;
  56. /*
  57. Volume Day types: 
  58.  green: up-day and up-close
  59.  yellow: up-day but down-close
  60.  red: down-day and down-close
  61.  blue: down-day but up-close
  62.  white: close equals open, close equals previous close
  63. (currently unused vtypes are for future enhancements)
  64. */
  65. green = 1; blue = 2; yellow = 3; red = 4; white = 5;
  66. VType = IIf(ud, 
  67. IIf(uc, green, yellow),
  68.  IIf(dd, 
  69. IIf(dc, red, blue), white));
  70. /* green volume: up-day and up-close*/
  71. gv = IIf(VType == green, V, 0); 
  72. /* yellow volume: up-day but down-close */
  73. yv = IIf(VType == yellow, V, 0); 
  74. /* red volume: down-day and down-close */
  75. rv = IIf(VType == red, V, 0); 
  76. /* blue volume: down-day but up-close */
  77. bv = IIf(VType == blue, V, 0); 
  78. /* split up volume of up-close days from down-close days - (for the purposes of this volume display indicator, up-days that closed down from the previous close are considered bearish volume days, and conversely, down-days that nevertheless closed up from the previous close are considered bullish volume days - my testing indicates this is more accurate than using ordinary up-days and down-days) */
  79. uv = gv + bv; uv1 = Ref(uv, -1); /* up volume */
  80. dv = rv + yv; dv1 = Ref(dv, -1); /* down volume */
  81. /* create moving average period parameters */
  82. VolPer = Param("Adjust Vol. MA per.", 34, 1, 255, 1);
  83. ConvPer = Param("Adjust Conv. MA per.", 9, 1, 255, 1);
  84. /* create triple exponential moving avearges of separate up and down volume moving averages */
  85. MAuv = TEMA(uv, VolPer ); mauv1 = Ref(mauv, -1);
  86. MAdv = TEMA(dv, VolPer ); madv1 = Ref(madv, -1);
  87. MAtv = TEMA(V, VolPer );//total volume
  88. /* Switch for Horizontal lines indicating current level of positive and negative volume for ease in comparing to past highs/lows - toggle via parmameter window */
  89. OscillatorOnly = Param("Show Oscillator Only", 0, 0, 1, 1);
  90. CompareBullVolume = Param("Show Bull Level", 1, 0, 1, 1);
  91. if(CompareBullvolume AND !OscillatorOnly){
  92. Plot(SelectedValue(MAuv), "", colorGreen, styleLine);
  93. }
  94. CompareBearVolume = Param("Show Bear Level", 1, 0, 1, 1);
  95. if(CompareBearVolume AND !OscillatorOnly){
  96. Plot(SelectedValue(MAdv), "", colorRed, styleLine);
  97. }
  98. /* Volume Segment Switches - toggle via parameter window */
  99. bullvolume = Param("Show Bull Volume", 1, 0, 1, 1);
  100. bearvolume = Param("Show Bear Volume", 1, 0, 1, 1);
  101. totalvolume = Param("Show Total Volume", 1, 0, 1, 1);
  102. /* plot volume lines and histograms if toggled on: */
  103. bearToFront = Param("Show Bear Vol in Front", 0, 0, 1, 1);
  104. if(bearToFront AND !OscillatorOnly){
  105. Plot(MAdv, "", colorRed, styleHistogram|styleNoLabel);
  106. }
  107. if(bullvolume AND !OscillatorOnly){
  108. Plot(MAuv, "Average Bull Volume", colorGreen, styleHistogram|styleNoLabel);
  109. }
  110. if(bearvolume AND !OscillatorOnly){
  111. Plot(MAdv, "Average Bear Volume", colorRed, styleHistogram|styleNoLabel);
  112. }
  113. if(totalVolume AND !OscillatorOnly){
  114. Plot(MAtv, "Total Volume", colorWhite, styleHistogram|styleNoLabel);
  115. Plot(MAtv, "", colorWhite, styleLine);
  116. }
  117. if(bullvolume AND !OscillatorOnly){
  118. Plot(MAuv, "", colorGreen, styleLine);
  119. }
  120. if(bearvolume AND !OscillatorOnly){
  121. Plot(MAdv, "", colorRed, styleLine);
  122. }
  123. /* better visibility of zero line: */
  124. Plot(0, "", colorBlue, 1);
  125. /* Rise/Fall Convergence variables:  */
  126. Converge = (TEMA(MAuv - MAdv, ConvPer));
  127. Converge1 = Ref(Converge, -1);
  128. ConvergeUp = Converge > Converge1;
  129. ConvergeOver = Converge > 0;
  130. rising = ConvergeUp AND ConvergeOver;
  131. falling = !ConvergeUp AND ConvergeOver;
  132. /* Rise/Fall Convergence Oscillator Switch  - toggle via parameter window - (provides a better view of resulting combination of battling bull/bear volume forces) */
  133. convergenceOscillator = Param("Show Oscillator", 0, 0, 1, 1);
  134. if(convergenceOscillator OR OscillatorOnly){
  135. Plot(Converge, "Bull/Bear Volume Convergence/Divergence", colorViolet, 1|styleLeftAxisScale|styleNoLabel|styleThick);
  136. Plot(0,"", colorYellow, 1|styleLeftAxisScale|styleNoLabel);
  137. }
  138. /********************************************************
  139.  Convergence Rise/Fall Shadows: 
  140.  (provides a more easily visible display of rising and falling  bull/bear volume convergence) - toggle via parameter window 
  141. -posiitive Volume exceeding negative Volume: Light shadow
  142. -negative volume exceeding positive volume: dark shadow
  143. -if you use standard gray background - best shadows are:
  144. -my greys: 14 = (216, 216, 216); 15 = (168, 168, 168));
  145. -best substitute? using AB color constants?
  146. -light: colorpalegreen; dark: colorRose;? 
  147. -(depends on your color scheme - customize to your tastes)
  148. **********************************************************/
  149. /* uncomment if you use my custom color greys: */
  150. riseFallColor = IIf(rising, 14,15); //my custom shadow greys
  151. /* comment out if you use my custom color gray shadows: */
  152. /* riseFallColor = IIf(rising, colorPaleGreen,colorRose); */
  153. /* Rise/Fall Convergence Plot Switch - toggle via parameter window */
  154. riseFallShadows = Param("Show RiseFallShadows", 0, 0, 1, 1);
  155. if(riseFallShadows){
  156. Plot(IIf(rising OR falling, 1, 0), "", riseFallColor, styleHistogram|styleArea|styleOwnScale|styleNoLabel);
  157. }
  158. GraphXSpace = 0.5;