back start next


[start] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [ 26 ] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81]


26

BOLLINGER BAND INDICATORS

Two indicators can be derived directly from Bollinger Bands, %b and BandWidth. The first, %b, tells us where we are in relation to the Bollinger Bands and is the key to the development of trading systems via the linking of price and indicator action. The second, BandWidth, tells us how wide the bands are. BandWidth is the key to The Squeeze and can play an important role in spotting the beginnings and ends of trends. Well tackle %b first and then BandWidth.

Table 8.1 shows the formula for %b. Note that the formula evaluates to 1.0 when the last price is at the upper band, 0.5 at the middle band, and 0.0 at the lower band. %b is not a bounded

Table 8.1 %b Formula1

(Last - lower BB)/(upper BB - lower BB)



Chapter 8: Bollinger Band Indicators 61

3/00 4/00 6/00 6/00 7/00 6/00 9/00 10/00 11/00 12/00 1/01

Figure 8.1 Bollinger Bands and %b, Nokia, 250 days. %b tells us where we are in relation to the bands.

formula. It will exceed 1 when the last price is above the upper band or will fall beneath zero when the last price is below the lower band. At 1.1 it says that we are 10 percent of the BandWidth above the upper band, and at -0.15 it says that we are 15 percent of the BandWidth below the lower band (Figure 8.1).

%b allows you to compare the price action within the Bollinger Bands with the action of an indicator, such as a volume oscillator (Figure 8.2). For example, suppose you decided on the following system: when price closes outside the upper Bollinger Band and the 21-day Intraday Intensity (II) is negative, sell. To program such a system, you might write: If %b is greater than one and 21-day II is less than zero, sell. More on this in Part IV.

Another important use of %b is to aid pattern recognition (Figure 8.3). For example, suppose you wanted to build a system that says if a retest of the lows is successful, then buy the first strong up day. To program that we might write: If %b at the first low is less than zero and %b at the second low is greater than zero, then buy the next up day if volume is greater than its 50-day average and range is greater than its 10-day average. More on this in Part III.



Part II: The Basics

7/00 8/00 9/00 10/00 11/00

Figure 8.2 Bollinger Bands, %b, and 21-day Intraday Intensity, non-confirmed low, Guilford Pharmaceuticals, 100 days. Note the close above the upper band simultaneous with a negative indicator-a classic sell.

Figure 8.3 Bollinger Bands and %b, W bottom, Sears, 100 days. Note the W bottom with a new low in price but not for %b.



[start] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [ 26 ] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81]