| Bollinger Bands are volatility based
bands used to help identify situations where prices are too high, or
too low, on a relative bases. When prices reach or rise above
the upper band, they are too high. When prices reach or drop
below the lower band, they are too low.
Bollinger bands are calculated by first smoothing the typical
price using the MA type and period specified. The typical price for each bar
is defined as (high + low + close)/3.
The standard deviation is then calculated for the series of typical prices.
The same period used for smoothing the data is also used for
calculating the standard deviation of typical price. Trading bands are then drawn at some
user-specified multiple of standard deviations above and below the
center smoothed typical price line. Market reversals often occur near the upper and lower bands.
Bollinger recommends using a Simple 20 period moving average, on
a typical price of HLC/3, and with bands at 2 standard deviations.
Two other indicators have been derived from Bollinger
Bands. Both are discussed on p. 58 of the May 2002 issue of
Stocks and Commodities Magazine in an interview with John Bollinger.
The first on is called "%b", and tells us where price
currently is in relation to the bands. This %b indicator can
be created within Investor/RT using a Custom Indicator with the
following syntax:
(CL - BOLD) / (BOLU - BOLD)
BOLU represents the upper band. BOLD
represents the lower band. CL represents the current (closing)
price. The Bollinger %b should be interpreted as follows:
- A value of 1.0 would mean that price is
currently at the upper band.
- A value above 1 would mean that price is
currently above the upper band.
- A value of 0 would mean
price is currently at the lower band.
- A negative value
would mean that price is currently below the lower band.
The %b custom indicator can be seen charted in the illustration
above.
The second indicator is the Bollinger Bandwidth. It
is the upper band minus the lower band divided by the middle
band. The bandwidth can be created within Investor/RT using a
Custom Indicator with the following syntax:
(BOLU - BOLD) / MA
BOLU represents the upper band. BOLD
represents the lower band. MA represents the smoothed typical
price using the same MA type and period as the Bollinger
Bands. This MA will give you the same value as is used for the
center line.
High values of bandwidth represent regions of high
volatility, while low values of bandwidth represent regions of low
volatility. The bandwidth custom indicator can be seen charted
in the illustration above.
|