| Contents | Index |
[mid, uppr, lowr] = bollinger(data, wsize, wts, nstd) [midfts, upprfts, lowrfts] = bollinger(tsobj, wsize, wts, nstd)
data | Data vector. |
wsize | (Optional) Window size. Default = 20. |
wts | (Optional) Weight factor. Determines the type of moving average used. Default = 0 (box). 1 = linear. |
nstd | (Optional) Number of standard deviations for upper and lower bands. Default = 2. |
tsobj | Financial time series object. |
[mid, uppr, lowr] = bollinger(data, wsize, wts, nstd) calculates the middle (mid), upper (uppr), and lower (lowr) bands that make up the Bollinger bands from the vector data.
mid is the vector that represents the middle band, a simple moving average with a window size of wsize. uppr and lowr are vectors that represent the upper and lower bands. uppr is a vector representing the upper band that is +nstd times. lowr is a vector representing the lower band that is -nstd times.
[midfts, upprfts, lowrfts] = bollinger(tsobj, wsize, wts, nstd) calculates the middle, upper, and lower bands that make up the Bollinger bands from a financial time series object tsobj.
midfts is a financial time series object that represents the middle band for all series in tsobj. Both upprfts and lowrfts are financial time series objects that represent the upper and lower bands of all series, which are +nstd times and -nstd times moving standard deviations away from the middle band.
Compute the Bollinger bands for Disney stock closing prices and plot the results:
load disney.mat
[dis_Mid,dis_Uppr,dis_Lowr]= bollinger(dis);
dis_CloseBolling = [dis_Mid.CLOSE, dis_Uppr.CLOSE,...
dis_Lowr.CLOSE];
plot(dis_CloseBolling)
title('Bollinger Bands for Disney Closing Prices')

Achelis, Steven B., Technical Analysis from A to Z, Second Edition, McGraw-Hill, 1995, pp. 72-74.
View demos and recorded presentations led by industry experts.
Now On Demand
Network with industry peers and learn the latest applications of the leading software product for computational finance.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |