SlideShare a Scribd company logo
Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort
Copyright (c) Technical Analysis Inc.
This variation of the popular Bollinger %b indicator gives
clear turning points that will help traders identify entry and
exit points while prices are moving between the Bollinger
bands.
by Sylvain Vervoort
y now, everybody in the business knows that Bol-
linger bands were developed by John Bollinger.
What they actually are is probably equally known.
The Bollinger bands in Figure 1 consist of a set of
three curves drawn in relation to price data. The
middle band is usually a simple 20-bar moving average that
serves as the base for the upper and lower bands.
Upper band = Middle band + 2 x 20-period closing prices
standard deviation
Lower band = Middle band – 2 x 20-period closing prices
standard deviation
CHRISTINEMORRISON
Most technical analysis programs have a built-in function
fordisplayingBollingerbands.HereistheMetaStockformula
for Bollinger bands using basic functions:
{The middle band}
Mov(Close,20,Simple);
{The upper band}
2*Stdev(Close,20 ) + Mov(Close,20,Simple);
{The lower band}
Mov(Close,20,Simple)-2*Stdev(Close,20)
Inanormaldistribution,mostpricesofasetofdataareclose
totheaverage,withrelativelyfewpricesmovinginoneextreme
or the other. If you were to look at a normally distributed data
on a graph, it would look like a bell curve. Not all price data
will reflect a perfect curve, of course. The standard deviation
of the 20-period closing prices is a statistic that tells you how
tight the price data are clustered around the mean.
The standard deviation of the moving average is a method
usedtomeasurepricevolatility.Withtrendingprices,thebands
will be wider as a result of the higher volatility in price, mov-
B
Identifying Entries And Exits
Smoothing The Bollinger %b
Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort
Copyright (c) Technical Analysis Inc.
Smoothing it and reducing delays
I have already discussed my own version of this indicator
in my book Capturing Profit With Technical Analysis. This
time, I am introducing you to a more usable version of this
indicator. In the second article of this series, I will show you
a trading system based on the leading property of this indica-
tor. Right now, however, let us first look for ways to smooth
this indicator.
Normal and hidden divergent
moves make this indicator an
ideal tool to help find entry and
exit points.
METASTOCK
ing farther away from the mean, whereas
during consolidation periods, bands tend
to be narrower as a result of smaller price
moves closer to the mean. This changing
bandwidth is used for volatility-based
trading opportunities.
%b is a measure of where prices are
in relation to the outer Bollinger bands
and therefore strongly related to volatil-
ity. %b was created as an oscillator to
showoverboughtandoversoldsituations
when price is moving close to or beyond
the upper or lower Bollinger bands. The
basic %b formula is:
(Close – Lower band)
(Upper band – Lower band)
%b =
For the basic formula, you multiply the %b result with
100 to get an oscillator moving between zero and 100 (with
overshoots):
{The upper band}
upper:= 2*Stdev(CLOSE,20) + Mov(CLOSE,20,SIMPLE);
{The lower band}
lower:=Mov(CLOSE,20,SIMPLE)-2*Stdev( CLOSE,20);
{%b}
percb:=(C-lower)/(upper-lower)*100;
percb
Thisformulacanbesimplifiedbyapplyingsomemath.Here
is the following result for the basic (MetaStock) formula for
a Bollinger band %b indicator using
closing prices and a simple moving
average:
{BB%b_C_S}
percb:=(C+2*Stdev(C,20)-Mov(C,20,S))/
(4*Stdev(C,20))*100;
percb
Thisistheindicatoryouseeatthebot-
tomofthechartofGaiamInc.(Gaia)in
Figure2.Thetopchartdisplaystheprice
chartoverlaidwiththeBollingerbands.
As you can see, the indicator is leading
most of the time, showing high levels,
low levels, and eventually divergences
prior to turning points in price.
Unfortunately, it is a very choppy
oscillator. Finding the more important
turning points and trying to trade with
the %b indicator, day by day, is not an
easy task.
Figure 1: BOLLINGER BANDS. Bollinger bands consist of three curves drawn in relation to price data.The middle
band is usually a 20-bar simple moving average that serves as the base for the upper and lower bands.
indicators
Nov Dec 2009 Feb March April May June July
8.5
8.0
7.5
7.0
6.5
6.0
5.5
5.0
4.5
4.0
3.5
3.0
2.5
2.0
100
50
0
GAIAM INC
SVE_BB%_C_S
March April May June July August
26
25
24
23
22
21
20
19
18
17
16
15
14
13
12
Figure 2: BOLLINGER BANDS AND %b INDICATOr. The indicator is leading most of the time, showing high
levels, low levels, and eventually divergences prior to turning points in price.
Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort
Copyright (c) Technical Analysis Inc.
explained in the February 1994 Stocks & Commodities.
The data is sent several times through the same filter and
combined afterward:
TEMA = (3*EMA–3*EMA(EMA)) + EMA(EMA(EMA))
Ema stands for exponential moving average.
MetaStock has a built-in Tema function. However, just
using Tema on the heikin-ashi recalculated prices still cre-
ates more lag than I would like. To limit the lag as much
as possible, I will also use a zero-lagging technique. The
principle for limiting the lag was analyzed in the January
2000Stocks &Commodities.Inthissecondstep,Ismooth
with an eight-period Tema:
haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2;
haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haOpen))/4;
TMA1:= Tema(haC,8);
TMA2:= Tema(TMA1,8);
Diff:= TMA1 - TMA2;
ZlHA:= TMA1 + Diff;
percb:=(ZLHA+2*Stdev(ZLHA,20)-Mov(ZLHA,20,S))/
(4*Stdev(ZLHA,20))*100;
percb
You can see the result in Figure 3 displayed as “BB%b_
step2.”
Step 3:
So far, so good. However, I would like to see more smoothing
and, of course, minimal or no lag. What I can do is smooth the
standard deviation bands withTema.And instead of using the
simple moving average for the referenced middle band, I can
use a faster exponential moving average (Ema) or a weighted
moving average (Wma). I prefer the Wma because it tends to
move more smoothly than the Ema.
I can also bring down the averaging period as long as the
smoothing is acceptable. This is why I use an 18-period av-
erage instead of the standard 20-period average in the next
formula.
Introducing these additional changes results in the follow-
ing:
haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2;
haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haO
pen))/4;
TMA1:= Tema(haC,8);
TMA2:= Tema(TMA1,8);
Diff:= TMA1 - TMA2;
ZlHA:= TMA1 + Diff;
percb:=(Tema(ZLHA,8)+2*Stdev(Tema(ZLH
A,8),18)-Mov(Tema(ZLHA,8),18,WEIGHTED))/
(4*Stdev(Tema(ZLHA,8),18))*100;
percb
In Figure 3, you can compare the result of BB%b_step3
with the basic BB%b_C at the bottom of the chart. You have to
In Figure 3, you can see the price chart of Gaia at the top
andthebasicclosingprices%bindicator(BB%b_C)displayed
on the bottom subchart.
Step 1:
Agoodbasicsmoothingtechniquethatcreatesaverysmalldelay
is the heikin-ashi recalculated prices.The heikin-ashi is a Japa-
nesechartingtechnique,detailedinaStocks &Commodities
articleinFebruary2004.Iamusingmyownaverageheikin-ashi
closing price “haC,” which is calculated as follows:
haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2;
haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haO
pen))/4;
You can use this haC closing price instead of the normal
closing price in the previous basic formula:
	 (haC+2*Stdev(haC,20)-Mov(haC,20,SIMPLE))/
	 (4*Stdev(haC,20))*100;
Compare this modified version called “BB%b_step1” in
Figure 3, with the basic version at the bottom of this chart.As
you can see, there is some amount of smoothing already, but
not enough to make your trading decisions that much simpler.
If you look closely, you may see a small amount of lagging.
This means that if you want more smoothing, you will have
to limit the delay as much as you can.
Step 2:
You can achieve more smoothing with only a little lag by us-
ing the triple exponential moving average (Tema), which was
FIGURE 3: BASIC BOLLINGER SMOOTHING STEPS. Here you see the results of each
of the four steps used to smooth the Bollinger bands %b indicator.
Nov Dec 2009 Feb March April May June July
7
6
5
4
3
100
50
0
100
50
0
100
50
0
100
50
0
100
50
0
GAIAM Inc.
SVE_BB%b_HA
BB%b_Step3
BB%b_Step2
BB%b_Step1
BB%b_C
indicators
Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort
Copyright (c) Technical Analysis Inc.
Prices continue on their downward move until the middle
of February 2009. In phase 2, you see a similar situation as in
phase 1, where there are lower tops in price and higher tops
in the indicator. This is another hidden divergence telling you
that price will continue its down move. In phase 3, price is
making lower lows, but now the indicator is making higher
lows. This is a normal divergence telling you that you should
expect the price to move up.
Note the dojis in the candlestick chart where price is bot-
toming.Inaddition,notethatthepricehasbeenmovingwithin
narrow Bollinger bands, indicating low volatility for more
than three months already.
Clearly, you can open a position here with a very good
risk-to-reward ratio, with a buy at $2.53 and an initial closing
price stop at $2.38. This is an ideal entry for opening a long
position with a risk of only 6%.
Let’s continue with Figure 5, the second part of the chart of
Gaia. Phase 3 actually brought a trend reversal and started a
new price up move. There is a nice convergent up move until
early May 2009. At phase 4, you see a negative divergence
with higher tops in price but lower tops in the indicator. This
suggests an upcoming price reversal.
Seems like a good time to take the more than 100% profit!
What follows is a correction back to the lower Bollinger
band. The end of this correction (phase 5) is showing a posi-
tive divergence with lower lows in price and higher lows in
the indicator. This pushes prices up again. You could go for
a new long position here. The tops in price and indicator at
the beginning of June, or end of phase 6, show a negative
divergence, which pushes prices down for a bigger correc-
tion. It now looks like prices have reached the end of this
correction and there is a new positive divergence in phase 7.
agree that it looks a lot less choppy and that
delays are most likely not a problem, espe-
cially because the %b is a leading indicator
and tends to usually be fast.
Step 4:
Inthis,thefinalstep,ImaketheWma andthe
Tema adjustable and instead of using fixed
reference lines at, for example, zero, 50, and
100, I use standard deviation lines with 1.6
standarddeviationsasthedefaultoveralook-
backperiodof63days.ThefinalSve_BB%b
code for MetaStock can be found in sidebar
“MetaStock Code For Sve_BB%b.”
Applying the indicator
Using the chart of Gaia as an example,
I will show you how basically to use this
indicator. Keep in mind I will introduce a
trading system using this indicator in part
2 of this series.
I have split the chart of Gaia into two parts. Figure 4 is
the first part ended March 9, 2009. In November there was a
big price drop and some recuperation.After that, price started
moving further down in a very gentle slope. What does the
Sve_BB%b indicator tell you about that period?
In Figure 4, you can see the big price drop in November
2008 as well as the reaction to the drop, which went on until
thebeginningofDecember2008.Thiswasaconvergentmove
with lower tops in price and the indicator. During phase 1, the
price continued its down move, making a lower top in price.
But the indicator makes a higher top at the beginning of Janu-
ary 2009. This is an inverse or hidden divergence pointing to
a continuation of the previous downtrend.
MetaStock Code For SVE_BB%b
period:=Input(“%b period: “,1,100,18);
TeAv:=Input(“Tema average: “,1,30,8);
afwh:= Input(“Standard deviation high “,.1,5,1.6);
afwl:= Input(“Standard deviation Low “,.1,5,1.6);
afwper:= Input(“Standard deviation period “,1,200,63);
haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2;
haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haOp
en))/4;
TMA1:= Tema(haC,TeAv);
TMA2:= Tema(TMA1,TeAv);
Diff:= TMA1 - TMA2;
ZlHA:= TMA1 + Diff;
percb:=(Tema(ZLHA,TeAv)+2*Stdev(Tema(ZLHA,TeAv),period)-
Mov(Tema(ZLHA,TeAv),period,WEIGHTED))/(4*Stdev(Tema(
ZLHA,TeAv),period))*100;
percb;
50+afwh*Stdev(percb,afwper);
50-afwl*Stdev(percb,afwper);
50
FIGURE 4: PRICE DROP. In November, there was a big price drop and some recuperation. After that, price
started moving further downward with a very gentle slope. Note the convergences and divergences between
the price and indicator.
November December 2009 February March
9.0
8.5
8.0
7.5
7.0
6.5
6.0
5.5
5.0
4.5
4.0
3.5
3.0
2.5
2.0
1.5
50
0
3 10 17 24 1 8 15 22 29 5 12 20 26 2 9 17 23 2 9
1
1
2
2
3
3
The SVE_BB% is often a leading
indicator with clear turning points.
Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort
Copyright (c) Technical Analysis Inc.
Belgium-based Sylvain Vervoort is a
retired electronics engineer who has
beenusingtechnicalanalysisformore
than 30 years. His book, Capturing
Profit With Technical Analysis, pub-
lished by Marketplace Books, is now
available. Vervoort may be reached
at sve.vervoort@scarlet.be or via his
website, http://stocata.org.
Suggested reading
Bollinger, John [2001]. Bollinger On
Bollinger Bands, McGraw-Hill.
Mulloy, Patrick [1994]. “Smooth-
ing Data With Less Lag,” Technical
AnalysisofStocks &Commodities,
Volume 12: February.
Sharp, Joe [2000]. “More Respon-
sive Moving Averages,” Technical
AnalysisofStocks &Commodities,
Volume 18: January.
Valcu, Dan [2004]. “Using The Heikin-Ashi Technique,”
Technical Analysis of Stocks & Commodities, Volume
22: February.
Vervoort, Sylvain [2008]. “Trading Medium-Term Diver-
gences,” Technical Analysis of Stocks & Commodities,
Volume 26: February.
_____ [2009]. Capturing Profit With Technical Analysis,
Marketplace Books.
Interestingly, at the beginning of October 2009, the price of
Gaia went up to about $8.
Conclusion
The Sve_BB%b is often a leading indicator making smooth
moveswithclearturningpoints.Normalandhiddendivergent
moves make it an ideal tool to help find entry and exit points
while watching price moving between the Bollinger bands. I
find it easier to use than the original %b indicator.
In the second article of this series, I will introduce a good
trading system using the Sve_BB%b indicator and include
some ideas together with other technical analysis tools. Stay
tuned!
FIGURE 5: THE UP MOVE. Here you see a new price up move.There is a nice convergent up move until early May
2009. After that, you see a negative divergence between price and indicator suggesting a trend reversal. Note the
relationship between price moves and the indicator during the entire correction.
S&C
March April May June July
7.0
6.5
6.0
5.5
5.0
4.5
4.0
3.5
3.0
2.5
100
50
0
9 16 23 30 6 13 20 27 4 11 18 26 1 8 15 22 29 6 1
3 4
4
5
5
6
6
7
73
indicators

More Related Content

What's hot

Candlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-finalCandlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-final
Michael Kleven
 
Mean Reversion Trading System: Practical Methods for Swing Trading
Mean Reversion Trading System: Practical Methods for Swing TradingMean Reversion Trading System: Practical Methods for Swing Trading
Mean Reversion Trading System: Practical Methods for Swing Trading
siyunoyip
 
Technical analysis doc
Technical analysis doc Technical analysis doc
Technical analysis doc
Babasab Patil
 
40 pip parabolic sar forex strategy (1)
40 pip parabolic sar forex strategy (1)40 pip parabolic sar forex strategy (1)
40 pip parabolic sar forex strategy (1)
pipsumo traderfx
 
Technical analysis
Technical analysisTechnical analysis
SQL Server Transaction Management
SQL Server Transaction ManagementSQL Server Transaction Management
SQL Server Transaction Management
Mark Ginnebaugh
 
Dow Theory
Dow Theory Dow Theory
Dow Theory
Wealthbuilder.ie
 
Naked short selling
Naked short sellingNaked short selling
Naked short selling
Practice of Law
 
Technical Analysis By Pantej
Technical Analysis By PantejTechnical Analysis By Pantej
Technical Analysis By Pantejashish_pandya38
 
6 pola candlestick yg paling menguntungkan
6 pola candlestick yg paling menguntungkan6 pola candlestick yg paling menguntungkan
6 pola candlestick yg paling menguntungkan
kinoaja8000
 
Technical Analysis Presentation
Technical Analysis PresentationTechnical Analysis Presentation
Technical Analysis Presentation
dpark1
 
Technical Analysis
Technical AnalysisTechnical Analysis
Technical Analysissnehalsoni
 
21 candlesticks
21 candlesticks21 candlesticks
21 candlesticks
Sriramulu M
 
Candlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-finalCandlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-final
subucud
 
Module 1 - Technical Analysis and the Dow Theory
Module 1 - Technical Analysis  and the Dow TheoryModule 1 - Technical Analysis  and the Dow Theory
Module 1 - Technical Analysis and the Dow Theory
The Responsible Trader
 
Technical analysis
Technical analysisTechnical analysis
Technical analysis
Mohammed Arif Pasha
 
Fundamental analysis of stocks
Fundamental analysis of stocks Fundamental analysis of stocks
Fundamental analysis of stocks
IFMC Institute
 
CANDLESTICK PROFITS.pdf
CANDLESTICK PROFITS.pdfCANDLESTICK PROFITS.pdf
CANDLESTICK PROFITS.pdf
JustscribblemeForfun
 

What's hot (20)

Candlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-finalCandlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-final
 
Mean Reversion Trading System: Practical Methods for Swing Trading
Mean Reversion Trading System: Practical Methods for Swing TradingMean Reversion Trading System: Practical Methods for Swing Trading
Mean Reversion Trading System: Practical Methods for Swing Trading
 
Technical analysis doc
Technical analysis doc Technical analysis doc
Technical analysis doc
 
40 pip parabolic sar forex strategy (1)
40 pip parabolic sar forex strategy (1)40 pip parabolic sar forex strategy (1)
40 pip parabolic sar forex strategy (1)
 
Technical analysis
Technical analysisTechnical analysis
Technical analysis
 
Bars
BarsBars
Bars
 
SQL Server Transaction Management
SQL Server Transaction ManagementSQL Server Transaction Management
SQL Server Transaction Management
 
Dow Theory
Dow Theory Dow Theory
Dow Theory
 
Naked short selling
Naked short sellingNaked short selling
Naked short selling
 
Technical Analysis By Pantej
Technical Analysis By PantejTechnical Analysis By Pantej
Technical Analysis By Pantej
 
6 pola candlestick yg paling menguntungkan
6 pola candlestick yg paling menguntungkan6 pola candlestick yg paling menguntungkan
6 pola candlestick yg paling menguntungkan
 
Technical Analysis Presentation
Technical Analysis PresentationTechnical Analysis Presentation
Technical Analysis Presentation
 
Technical Analysis
Technical AnalysisTechnical Analysis
Technical Analysis
 
21 candlesticks
21 candlesticks21 candlesticks
21 candlesticks
 
Candlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-finalCandlestick cheat-sheet-rgb-final
Candlestick cheat-sheet-rgb-final
 
Module 1 - Technical Analysis and the Dow Theory
Module 1 - Technical Analysis  and the Dow TheoryModule 1 - Technical Analysis  and the Dow Theory
Module 1 - Technical Analysis and the Dow Theory
 
Technical analysis
Technical analysisTechnical analysis
Technical analysis
 
Fundamental analysis of stocks
Fundamental analysis of stocks Fundamental analysis of stocks
Fundamental analysis of stocks
 
Candlesticks
CandlesticksCandlesticks
Candlesticks
 
CANDLESTICK PROFITS.pdf
CANDLESTICK PROFITS.pdfCANDLESTICK PROFITS.pdf
CANDLESTICK PROFITS.pdf
 

Similar to Smoothing the Bollinger %b

DATA INTERPRETATION charts bar.docx
DATA INTERPRETATION charts bar.docxDATA INTERPRETATION charts bar.docx
DATA INTERPRETATION charts bar.docx
PatelAniket12
 
Introduction to Technical Analysis
Introduction to Technical AnalysisIntroduction to Technical Analysis
Introduction to Technical Analysismediafin
 
Intro to econometrics
Intro to econometricsIntro to econometrics
Intro to econometrics
Gaetan Lion
 
Notes part ii
Notes   part iiNotes   part ii
Notes part ii
Dr. Ajith Sundaram
 
Next generation technical indicator
Next generation technical indicatorNext generation technical indicator
Next generation technical indicator
LeadingTrader21
 
Fibonacci retracement and expansion patterns
Fibonacci retracement and expansion patternsFibonacci retracement and expansion patterns
Fibonacci retracement and expansion patterns
LeadingTrader21
 
Options Technical Analysis Guide
Options Technical Analysis GuideOptions Technical Analysis Guide
Options Technical Analysis Guide
David Tjahjono,MD,MBA(UK)
 
Break even analysis
Break even analysisBreak even analysis
Simple moving averages
Simple moving averagesSimple moving averages
Simple moving averages
The Evans Group LLC
 
C323-RiskManagementPrinciplesandApplications-AssignmentOne
C323-RiskManagementPrinciplesandApplications-AssignmentOneC323-RiskManagementPrinciplesandApplications-AssignmentOne
C323-RiskManagementPrinciplesandApplications-AssignmentOneMark Heath - BA Hons, MSc, MCIPS
 
Libop Calculator for Android Features
Libop Calculator for Android FeaturesLibop Calculator for Android Features
Libop Calculator for Android Features
Woodgates E.I.R.L.
 
Bca i fma u 4.1 cost -volume-profit analysis
Bca i fma u 4.1 cost -volume-profit analysisBca i fma u 4.1 cost -volume-profit analysis
Bca i fma u 4.1 cost -volume-profit analysis
Rai University
 
Mca i fma u 4.1 cost -volume-profit analysis
Mca i fma u 4.1 cost -volume-profit analysisMca i fma u 4.1 cost -volume-profit analysis
Mca i fma u 4.1 cost -volume-profit analysis
Rai University
 
Bba ii cost and management accounting u 4.1 cost -volume-profit analysis
Bba ii cost and management accounting u 4.1 cost -volume-profit analysisBba ii cost and management accounting u 4.1 cost -volume-profit analysis
Bba ii cost and management accounting u 4.1 cost -volume-profit analysis
Rai University
 
Mca & bca i fma u 4.1 cost -volume-profit analysis
Mca & bca i fma u 4.1 cost -volume-profit analysisMca & bca i fma u 4.1 cost -volume-profit analysis
Mca & bca i fma u 4.1 cost -volume-profit analysis
Rai University
 
Fpe 90min-all
Fpe 90min-allFpe 90min-all
Fpe 90min-allwenchyan
 
Time series
Time seriesTime series
Time series
Ramnath Takiar
 

Similar to Smoothing the Bollinger %b (20)

DATA INTERPRETATION charts bar.docx
DATA INTERPRETATION charts bar.docxDATA INTERPRETATION charts bar.docx
DATA INTERPRETATION charts bar.docx
 
Introduction to Technical Analysis
Introduction to Technical AnalysisIntroduction to Technical Analysis
Introduction to Technical Analysis
 
Intro to econometrics
Intro to econometricsIntro to econometrics
Intro to econometrics
 
Notes part ii
Notes   part iiNotes   part ii
Notes part ii
 
Next generation technical indicator
Next generation technical indicatorNext generation technical indicator
Next generation technical indicator
 
Fibonacci retracement and expansion patterns
Fibonacci retracement and expansion patternsFibonacci retracement and expansion patterns
Fibonacci retracement and expansion patterns
 
Options Technical Analysis Guide
Options Technical Analysis GuideOptions Technical Analysis Guide
Options Technical Analysis Guide
 
pairs trading
pairs tradingpairs trading
pairs trading
 
Break even analysis
Break even analysisBreak even analysis
Break even analysis
 
Simple moving averages
Simple moving averagesSimple moving averages
Simple moving averages
 
C323-RiskManagementPrinciplesandApplications-AssignmentOne
C323-RiskManagementPrinciplesandApplications-AssignmentOneC323-RiskManagementPrinciplesandApplications-AssignmentOne
C323-RiskManagementPrinciplesandApplications-AssignmentOne
 
Case Study of Petroleum Consumption With R Code
Case Study of Petroleum Consumption With R CodeCase Study of Petroleum Consumption With R Code
Case Study of Petroleum Consumption With R Code
 
Libop Calculator for Android Features
Libop Calculator for Android FeaturesLibop Calculator for Android Features
Libop Calculator for Android Features
 
Bca i fma u 4.1 cost -volume-profit analysis
Bca i fma u 4.1 cost -volume-profit analysisBca i fma u 4.1 cost -volume-profit analysis
Bca i fma u 4.1 cost -volume-profit analysis
 
Mca i fma u 4.1 cost -volume-profit analysis
Mca i fma u 4.1 cost -volume-profit analysisMca i fma u 4.1 cost -volume-profit analysis
Mca i fma u 4.1 cost -volume-profit analysis
 
Bba ii cost and management accounting u 4.1 cost -volume-profit analysis
Bba ii cost and management accounting u 4.1 cost -volume-profit analysisBba ii cost and management accounting u 4.1 cost -volume-profit analysis
Bba ii cost and management accounting u 4.1 cost -volume-profit analysis
 
Mca & bca i fma u 4.1 cost -volume-profit analysis
Mca & bca i fma u 4.1 cost -volume-profit analysisMca & bca i fma u 4.1 cost -volume-profit analysis
Mca & bca i fma u 4.1 cost -volume-profit analysis
 
699 Final Report
699 Final Report699 Final Report
699 Final Report
 
Fpe 90min-all
Fpe 90min-allFpe 90min-all
Fpe 90min-all
 
Time series
Time seriesTime series
Time series
 

Recently uploaded

234Presentation on Indian Debt Market.ppt
234Presentation on Indian Debt Market.ppt234Presentation on Indian Debt Market.ppt
234Presentation on Indian Debt Market.ppt
PravinPatil144525
 
how to sell pi coins effectively (from 50 - 100k pi)
how to sell pi coins effectively (from 50 - 100k  pi)how to sell pi coins effectively (from 50 - 100k  pi)
how to sell pi coins effectively (from 50 - 100k pi)
DOT TECH
 
what is the best method to sell pi coins in 2024
what is the best method to sell pi coins in 2024what is the best method to sell pi coins in 2024
what is the best method to sell pi coins in 2024
DOT TECH
 
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit CardPoonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
nickysharmasucks
 
Isios-2024-Professional-Independent-Trustee-Survey.pdf
Isios-2024-Professional-Independent-Trustee-Survey.pdfIsios-2024-Professional-Independent-Trustee-Survey.pdf
Isios-2024-Professional-Independent-Trustee-Survey.pdf
Henry Tapper
 
how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.
DOT TECH
 
how can I sell/buy bulk pi coins securely
how can I sell/buy bulk pi coins securelyhow can I sell/buy bulk pi coins securely
how can I sell/buy bulk pi coins securely
DOT TECH
 
Chương 6. Ancol - phenol - ether (1).pdf
Chương 6. Ancol - phenol - ether (1).pdfChương 6. Ancol - phenol - ether (1).pdf
Chương 6. Ancol - phenol - ether (1).pdf
va2132004
 
how to sell pi coins on Binance exchange
how to sell pi coins on Binance exchangehow to sell pi coins on Binance exchange
how to sell pi coins on Binance exchange
DOT TECH
 
BYD SWOT Analysis and In-Depth Insights 2024.pptx
BYD SWOT Analysis and In-Depth Insights 2024.pptxBYD SWOT Analysis and In-Depth Insights 2024.pptx
BYD SWOT Analysis and In-Depth Insights 2024.pptx
mikemetalprod
 
PF-Wagner's Theory of Public Expenditure.pptx
PF-Wagner's Theory of Public Expenditure.pptxPF-Wagner's Theory of Public Expenditure.pptx
PF-Wagner's Theory of Public Expenditure.pptx
GunjanSharma28848
 
how can i use my minded pi coins I need some funds.
how can i use my minded pi coins I need some funds.how can i use my minded pi coins I need some funds.
how can i use my minded pi coins I need some funds.
DOT TECH
 
This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...
lamluanvan.net Viết thuê luận văn
 
Introduction to Indian Financial System ()
Introduction to Indian Financial System ()Introduction to Indian Financial System ()
Introduction to Indian Financial System ()
Avanish Goel
 
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
beulahfernandes8
 
The European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population agingThe European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population aging
GRAPE
 
what is the future of Pi Network currency.
what is the future of Pi Network currency.what is the future of Pi Network currency.
what is the future of Pi Network currency.
DOT TECH
 
managementaccountingunitiv-230422140105-dd17d80b.ppt
managementaccountingunitiv-230422140105-dd17d80b.pptmanagementaccountingunitiv-230422140105-dd17d80b.ppt
managementaccountingunitiv-230422140105-dd17d80b.ppt
SuseelaPalanimuthu
 
Introduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.pptIntroduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.ppt
VishnuVenugopal84
 
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
ydubwyt
 

Recently uploaded (20)

234Presentation on Indian Debt Market.ppt
234Presentation on Indian Debt Market.ppt234Presentation on Indian Debt Market.ppt
234Presentation on Indian Debt Market.ppt
 
how to sell pi coins effectively (from 50 - 100k pi)
how to sell pi coins effectively (from 50 - 100k  pi)how to sell pi coins effectively (from 50 - 100k  pi)
how to sell pi coins effectively (from 50 - 100k pi)
 
what is the best method to sell pi coins in 2024
what is the best method to sell pi coins in 2024what is the best method to sell pi coins in 2024
what is the best method to sell pi coins in 2024
 
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit CardPoonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
Poonawalla Fincorp and IndusInd Bank Introduce New Co-Branded Credit Card
 
Isios-2024-Professional-Independent-Trustee-Survey.pdf
Isios-2024-Professional-Independent-Trustee-Survey.pdfIsios-2024-Professional-Independent-Trustee-Survey.pdf
Isios-2024-Professional-Independent-Trustee-Survey.pdf
 
how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.
 
how can I sell/buy bulk pi coins securely
how can I sell/buy bulk pi coins securelyhow can I sell/buy bulk pi coins securely
how can I sell/buy bulk pi coins securely
 
Chương 6. Ancol - phenol - ether (1).pdf
Chương 6. Ancol - phenol - ether (1).pdfChương 6. Ancol - phenol - ether (1).pdf
Chương 6. Ancol - phenol - ether (1).pdf
 
how to sell pi coins on Binance exchange
how to sell pi coins on Binance exchangehow to sell pi coins on Binance exchange
how to sell pi coins on Binance exchange
 
BYD SWOT Analysis and In-Depth Insights 2024.pptx
BYD SWOT Analysis and In-Depth Insights 2024.pptxBYD SWOT Analysis and In-Depth Insights 2024.pptx
BYD SWOT Analysis and In-Depth Insights 2024.pptx
 
PF-Wagner's Theory of Public Expenditure.pptx
PF-Wagner's Theory of Public Expenditure.pptxPF-Wagner's Theory of Public Expenditure.pptx
PF-Wagner's Theory of Public Expenditure.pptx
 
how can i use my minded pi coins I need some funds.
how can i use my minded pi coins I need some funds.how can i use my minded pi coins I need some funds.
how can i use my minded pi coins I need some funds.
 
This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...
 
Introduction to Indian Financial System ()
Introduction to Indian Financial System ()Introduction to Indian Financial System ()
Introduction to Indian Financial System ()
 
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
Exploring Abhay Bhutada’s Views After Poonawalla Fincorp’s Collaboration With...
 
The European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population agingThe European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population aging
 
what is the future of Pi Network currency.
what is the future of Pi Network currency.what is the future of Pi Network currency.
what is the future of Pi Network currency.
 
managementaccountingunitiv-230422140105-dd17d80b.ppt
managementaccountingunitiv-230422140105-dd17d80b.pptmanagementaccountingunitiv-230422140105-dd17d80b.ppt
managementaccountingunitiv-230422140105-dd17d80b.ppt
 
Introduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.pptIntroduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.ppt
 
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
一比一原版BCU毕业证伯明翰城市大学毕业证成绩单如何办理
 

Smoothing the Bollinger %b

  • 1. Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort Copyright (c) Technical Analysis Inc. This variation of the popular Bollinger %b indicator gives clear turning points that will help traders identify entry and exit points while prices are moving between the Bollinger bands. by Sylvain Vervoort y now, everybody in the business knows that Bol- linger bands were developed by John Bollinger. What they actually are is probably equally known. The Bollinger bands in Figure 1 consist of a set of three curves drawn in relation to price data. The middle band is usually a simple 20-bar moving average that serves as the base for the upper and lower bands. Upper band = Middle band + 2 x 20-period closing prices standard deviation Lower band = Middle band – 2 x 20-period closing prices standard deviation CHRISTINEMORRISON Most technical analysis programs have a built-in function fordisplayingBollingerbands.HereistheMetaStockformula for Bollinger bands using basic functions: {The middle band} Mov(Close,20,Simple); {The upper band} 2*Stdev(Close,20 ) + Mov(Close,20,Simple); {The lower band} Mov(Close,20,Simple)-2*Stdev(Close,20) Inanormaldistribution,mostpricesofasetofdataareclose totheaverage,withrelativelyfewpricesmovinginoneextreme or the other. If you were to look at a normally distributed data on a graph, it would look like a bell curve. Not all price data will reflect a perfect curve, of course. The standard deviation of the 20-period closing prices is a statistic that tells you how tight the price data are clustered around the mean. The standard deviation of the moving average is a method usedtomeasurepricevolatility.Withtrendingprices,thebands will be wider as a result of the higher volatility in price, mov- B Identifying Entries And Exits Smoothing The Bollinger %b
  • 2. Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort Copyright (c) Technical Analysis Inc. Smoothing it and reducing delays I have already discussed my own version of this indicator in my book Capturing Profit With Technical Analysis. This time, I am introducing you to a more usable version of this indicator. In the second article of this series, I will show you a trading system based on the leading property of this indica- tor. Right now, however, let us first look for ways to smooth this indicator. Normal and hidden divergent moves make this indicator an ideal tool to help find entry and exit points. METASTOCK ing farther away from the mean, whereas during consolidation periods, bands tend to be narrower as a result of smaller price moves closer to the mean. This changing bandwidth is used for volatility-based trading opportunities. %b is a measure of where prices are in relation to the outer Bollinger bands and therefore strongly related to volatil- ity. %b was created as an oscillator to showoverboughtandoversoldsituations when price is moving close to or beyond the upper or lower Bollinger bands. The basic %b formula is: (Close – Lower band) (Upper band – Lower band) %b = For the basic formula, you multiply the %b result with 100 to get an oscillator moving between zero and 100 (with overshoots): {The upper band} upper:= 2*Stdev(CLOSE,20) + Mov(CLOSE,20,SIMPLE); {The lower band} lower:=Mov(CLOSE,20,SIMPLE)-2*Stdev( CLOSE,20); {%b} percb:=(C-lower)/(upper-lower)*100; percb Thisformulacanbesimplifiedbyapplyingsomemath.Here is the following result for the basic (MetaStock) formula for a Bollinger band %b indicator using closing prices and a simple moving average: {BB%b_C_S} percb:=(C+2*Stdev(C,20)-Mov(C,20,S))/ (4*Stdev(C,20))*100; percb Thisistheindicatoryouseeatthebot- tomofthechartofGaiamInc.(Gaia)in Figure2.Thetopchartdisplaystheprice chartoverlaidwiththeBollingerbands. As you can see, the indicator is leading most of the time, showing high levels, low levels, and eventually divergences prior to turning points in price. Unfortunately, it is a very choppy oscillator. Finding the more important turning points and trying to trade with the %b indicator, day by day, is not an easy task. Figure 1: BOLLINGER BANDS. Bollinger bands consist of three curves drawn in relation to price data.The middle band is usually a 20-bar simple moving average that serves as the base for the upper and lower bands. indicators Nov Dec 2009 Feb March April May June July 8.5 8.0 7.5 7.0 6.5 6.0 5.5 5.0 4.5 4.0 3.5 3.0 2.5 2.0 100 50 0 GAIAM INC SVE_BB%_C_S March April May June July August 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 Figure 2: BOLLINGER BANDS AND %b INDICATOr. The indicator is leading most of the time, showing high levels, low levels, and eventually divergences prior to turning points in price.
  • 3. Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort Copyright (c) Technical Analysis Inc. explained in the February 1994 Stocks & Commodities. The data is sent several times through the same filter and combined afterward: TEMA = (3*EMA–3*EMA(EMA)) + EMA(EMA(EMA)) Ema stands for exponential moving average. MetaStock has a built-in Tema function. However, just using Tema on the heikin-ashi recalculated prices still cre- ates more lag than I would like. To limit the lag as much as possible, I will also use a zero-lagging technique. The principle for limiting the lag was analyzed in the January 2000Stocks &Commodities.Inthissecondstep,Ismooth with an eight-period Tema: haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2; haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haOpen))/4; TMA1:= Tema(haC,8); TMA2:= Tema(TMA1,8); Diff:= TMA1 - TMA2; ZlHA:= TMA1 + Diff; percb:=(ZLHA+2*Stdev(ZLHA,20)-Mov(ZLHA,20,S))/ (4*Stdev(ZLHA,20))*100; percb You can see the result in Figure 3 displayed as “BB%b_ step2.” Step 3: So far, so good. However, I would like to see more smoothing and, of course, minimal or no lag. What I can do is smooth the standard deviation bands withTema.And instead of using the simple moving average for the referenced middle band, I can use a faster exponential moving average (Ema) or a weighted moving average (Wma). I prefer the Wma because it tends to move more smoothly than the Ema. I can also bring down the averaging period as long as the smoothing is acceptable. This is why I use an 18-period av- erage instead of the standard 20-period average in the next formula. Introducing these additional changes results in the follow- ing: haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2; haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haO pen))/4; TMA1:= Tema(haC,8); TMA2:= Tema(TMA1,8); Diff:= TMA1 - TMA2; ZlHA:= TMA1 + Diff; percb:=(Tema(ZLHA,8)+2*Stdev(Tema(ZLH A,8),18)-Mov(Tema(ZLHA,8),18,WEIGHTED))/ (4*Stdev(Tema(ZLHA,8),18))*100; percb In Figure 3, you can compare the result of BB%b_step3 with the basic BB%b_C at the bottom of the chart. You have to In Figure 3, you can see the price chart of Gaia at the top andthebasicclosingprices%bindicator(BB%b_C)displayed on the bottom subchart. Step 1: Agoodbasicsmoothingtechniquethatcreatesaverysmalldelay is the heikin-ashi recalculated prices.The heikin-ashi is a Japa- nesechartingtechnique,detailedinaStocks &Commodities articleinFebruary2004.Iamusingmyownaverageheikin-ashi closing price “haC,” which is calculated as follows: haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2; haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haO pen))/4; You can use this haC closing price instead of the normal closing price in the previous basic formula: (haC+2*Stdev(haC,20)-Mov(haC,20,SIMPLE))/ (4*Stdev(haC,20))*100; Compare this modified version called “BB%b_step1” in Figure 3, with the basic version at the bottom of this chart.As you can see, there is some amount of smoothing already, but not enough to make your trading decisions that much simpler. If you look closely, you may see a small amount of lagging. This means that if you want more smoothing, you will have to limit the delay as much as you can. Step 2: You can achieve more smoothing with only a little lag by us- ing the triple exponential moving average (Tema), which was FIGURE 3: BASIC BOLLINGER SMOOTHING STEPS. Here you see the results of each of the four steps used to smooth the Bollinger bands %b indicator. Nov Dec 2009 Feb March April May June July 7 6 5 4 3 100 50 0 100 50 0 100 50 0 100 50 0 100 50 0 GAIAM Inc. SVE_BB%b_HA BB%b_Step3 BB%b_Step2 BB%b_Step1 BB%b_C indicators
  • 4. Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort Copyright (c) Technical Analysis Inc. Prices continue on their downward move until the middle of February 2009. In phase 2, you see a similar situation as in phase 1, where there are lower tops in price and higher tops in the indicator. This is another hidden divergence telling you that price will continue its down move. In phase 3, price is making lower lows, but now the indicator is making higher lows. This is a normal divergence telling you that you should expect the price to move up. Note the dojis in the candlestick chart where price is bot- toming.Inaddition,notethatthepricehasbeenmovingwithin narrow Bollinger bands, indicating low volatility for more than three months already. Clearly, you can open a position here with a very good risk-to-reward ratio, with a buy at $2.53 and an initial closing price stop at $2.38. This is an ideal entry for opening a long position with a risk of only 6%. Let’s continue with Figure 5, the second part of the chart of Gaia. Phase 3 actually brought a trend reversal and started a new price up move. There is a nice convergent up move until early May 2009. At phase 4, you see a negative divergence with higher tops in price but lower tops in the indicator. This suggests an upcoming price reversal. Seems like a good time to take the more than 100% profit! What follows is a correction back to the lower Bollinger band. The end of this correction (phase 5) is showing a posi- tive divergence with lower lows in price and higher lows in the indicator. This pushes prices up again. You could go for a new long position here. The tops in price and indicator at the beginning of June, or end of phase 6, show a negative divergence, which pushes prices down for a bigger correc- tion. It now looks like prices have reached the end of this correction and there is a new positive divergence in phase 7. agree that it looks a lot less choppy and that delays are most likely not a problem, espe- cially because the %b is a leading indicator and tends to usually be fast. Step 4: Inthis,thefinalstep,ImaketheWma andthe Tema adjustable and instead of using fixed reference lines at, for example, zero, 50, and 100, I use standard deviation lines with 1.6 standarddeviationsasthedefaultoveralook- backperiodof63days.ThefinalSve_BB%b code for MetaStock can be found in sidebar “MetaStock Code For Sve_BB%b.” Applying the indicator Using the chart of Gaia as an example, I will show you how basically to use this indicator. Keep in mind I will introduce a trading system using this indicator in part 2 of this series. I have split the chart of Gaia into two parts. Figure 4 is the first part ended March 9, 2009. In November there was a big price drop and some recuperation.After that, price started moving further down in a very gentle slope. What does the Sve_BB%b indicator tell you about that period? In Figure 4, you can see the big price drop in November 2008 as well as the reaction to the drop, which went on until thebeginningofDecember2008.Thiswasaconvergentmove with lower tops in price and the indicator. During phase 1, the price continued its down move, making a lower top in price. But the indicator makes a higher top at the beginning of Janu- ary 2009. This is an inverse or hidden divergence pointing to a continuation of the previous downtrend. MetaStock Code For SVE_BB%b period:=Input(“%b period: “,1,100,18); TeAv:=Input(“Tema average: “,1,30,8); afwh:= Input(“Standard deviation high “,.1,5,1.6); afwl:= Input(“Standard deviation Low “,.1,5,1.6); afwper:= Input(“Standard deviation period “,1,200,63); haOpen:=(Ref((O+H+L+C)/4,-1) + PREV)/2; haC:=((O+H+L+C)/4+haOpen+Max(H,haOpen)+Min(L,haOp en))/4; TMA1:= Tema(haC,TeAv); TMA2:= Tema(TMA1,TeAv); Diff:= TMA1 - TMA2; ZlHA:= TMA1 + Diff; percb:=(Tema(ZLHA,TeAv)+2*Stdev(Tema(ZLHA,TeAv),period)- Mov(Tema(ZLHA,TeAv),period,WEIGHTED))/(4*Stdev(Tema( ZLHA,TeAv),period))*100; percb; 50+afwh*Stdev(percb,afwper); 50-afwl*Stdev(percb,afwper); 50 FIGURE 4: PRICE DROP. In November, there was a big price drop and some recuperation. After that, price started moving further downward with a very gentle slope. Note the convergences and divergences between the price and indicator. November December 2009 February March 9.0 8.5 8.0 7.5 7.0 6.5 6.0 5.5 5.0 4.5 4.0 3.5 3.0 2.5 2.0 1.5 50 0 3 10 17 24 1 8 15 22 29 5 12 20 26 2 9 17 23 2 9 1 1 2 2 3 3 The SVE_BB% is often a leading indicator with clear turning points.
  • 5. Stocks & Commodities V. 28:5 (40-44): Smoothing The Bollinger %b by Sylvain Vervoort Copyright (c) Technical Analysis Inc. Belgium-based Sylvain Vervoort is a retired electronics engineer who has beenusingtechnicalanalysisformore than 30 years. His book, Capturing Profit With Technical Analysis, pub- lished by Marketplace Books, is now available. Vervoort may be reached at sve.vervoort@scarlet.be or via his website, http://stocata.org. Suggested reading Bollinger, John [2001]. Bollinger On Bollinger Bands, McGraw-Hill. Mulloy, Patrick [1994]. “Smooth- ing Data With Less Lag,” Technical AnalysisofStocks &Commodities, Volume 12: February. Sharp, Joe [2000]. “More Respon- sive Moving Averages,” Technical AnalysisofStocks &Commodities, Volume 18: January. Valcu, Dan [2004]. “Using The Heikin-Ashi Technique,” Technical Analysis of Stocks & Commodities, Volume 22: February. Vervoort, Sylvain [2008]. “Trading Medium-Term Diver- gences,” Technical Analysis of Stocks & Commodities, Volume 26: February. _____ [2009]. Capturing Profit With Technical Analysis, Marketplace Books. Interestingly, at the beginning of October 2009, the price of Gaia went up to about $8. Conclusion The Sve_BB%b is often a leading indicator making smooth moveswithclearturningpoints.Normalandhiddendivergent moves make it an ideal tool to help find entry and exit points while watching price moving between the Bollinger bands. I find it easier to use than the original %b indicator. In the second article of this series, I will introduce a good trading system using the Sve_BB%b indicator and include some ideas together with other technical analysis tools. Stay tuned! FIGURE 5: THE UP MOVE. Here you see a new price up move.There is a nice convergent up move until early May 2009. After that, you see a negative divergence between price and indicator suggesting a trend reversal. Note the relationship between price moves and the indicator during the entire correction. S&C March April May June July 7.0 6.5 6.0 5.5 5.0 4.5 4.0 3.5 3.0 2.5 100 50 0 9 16 23 30 6 13 20 27 4 11 18 26 1 8 15 22 29 6 1 3 4 4 5 5 6 6 7 73 indicators