StockFetcher Forums · General Discussion · Bollinger band<< 1 2 >>Post Follow-up
ThomasTin
3 posts
msg #82272
Ignore ThomasTin
11/2/2009 12:48:46 PM

Hi, I am new to Stockfetcher. I just try to construct a filter myself and have encounter some difficulties---- its regarding Bollinger band. What I want is to have filter out stocks that their Bollinger bands have been narrowing ( Bollinger band converging ) for the last say 10 to 15 days and for the last one or two days the bollinger band expand ( diverging ) a lot with high volume ( say more than 3 times averge trading volume ). I have consturcted some filter steps myself but the filter return zero stocks.... Ha ha . So I suppose I have done some things wrong. Can some one give me a help please. Thanks.

dwiggains
441 posts
msg #82273
Ignore dwiggains
11/2/2009 1:17:11 PM

Hi
Try looking in forums

This is a start

http://help.stockfetcher.com/sfhelp/?id=100313&isiframe=&isiframe=

Good luck

see ya
David

tmanbone
124 posts
msg #82281
Ignore tmanbone
modified
11/2/2009 5:15:56 PM

Below is an elementary filter looking for stocks that are in a squeeze; after studying John Carter and Hubert Senters, I came up with this filter. The theory is when the bollingers are inside the keltners the stock is trading in tight consolidation and should break up or down; you'll need to examine futher to determine. You can tweak the last 3 lines of the filter to suit your needs. I tried 300% more volume and got 1 stock; be sure to check if volume is buying or selling. See if you can get Chetron's attention. Hope this helps.

show stock where Upper Bollinger Band(20,2) is below
Upper Keltner Band(20,1.5)
and Lower Bollinger Band(20,2) is above
Lower Keltner Band(20,1.5)
draw Bollinger Band(20,2)
draw Keltner Band(20, 1.5)
show stocks closed between 1 and 250
average volume(90) is > 7500000
volume 1 day ago is 100% > volume 2 days ago





Cacher
121 posts
msg #82286
Ignore Cacher
modified
11/2/2009 6:55:59 PM

Here is tmanbone's filter ...as "clickable" :

Fetcher[
show stock where Upper Bollinger Band(20,2) is below
Upper Keltner Band(20,1.5)
and Lower Bollinger Band(20,2) is above
Lower Keltner Band(20,1.5)
draw Bollinger Band(20,2)
draw Keltner Band(20, 1.5)
show stocks closed between 1 and 250
average volume(90) is > 7500000
volume 1 day ago is 100% > volume 2 days ago
]



Cacher
121 posts
msg #82287
Ignore Cacher
11/2/2009 7:03:08 PM

I haven't looked a tmanbones filter yet .... but before I do ...

thomastin ... since you have already attempted at creating a screen ... please post it.

It is much easier to fix some errors then to create a screen from scratch, and hope that we interpret what you were looking for.... Thanks


ThomasTin
3 posts
msg #82337
Ignore ThomasTin
11/3/2009 2:21:58 PM

Thank you guys for all the great ideas. In these two days I have tried some steps using bollinger band, moving average crossing etc etc and surely the result if not exactly what I wanted. Anyway Stockfetcher is new to me and I have already learned a lot. This is my 'work-in-progress' filter and for sure I will make further changes ...the filter only produce a few stocks

Show stocks where close is above 3
and MA(50) and above MA(200) for 20 weeks
and Bollinger Difference(20,1.5) decreasing for the last 10 Days lag 5 days
and low crossed above upper Bollinger Band(20,1.5) in last 2 days
and draw MA(50)
and draw MA(200)
and draw Bollinger Bands(20)
and draw MACD(12,26,9)
and draw ADX(14,14)

chetron
2,817 posts
msg #82346
Ignore chetron
11/3/2009 3:25:43 PM

CLICKABLE.......



Fetcher[
Show stocks where close is above 3
and MA(50) and above MA(200) for 20 weeks
and Bollinger Difference(20,1.5) decreasing for the last 10 Days lag 5 days
and low crossed above upper Bollinger Band(20,1.5) in last 2 days
and draw MA(50)
and draw MA(200)
and draw Bollinger Bands(20)
and draw MACD(12,26,9)
and draw ADX(14,14)
]



mystiq
650 posts
msg #82395
Ignore mystiq
modified
11/4/2009 2:01:29 AM

*combo w/extras*

Fetcher[
/* NORMALIZE stochrsi(5,2) */
set{stochrsival, INDPOSITION(stochrsi(5,2), 60) * 100}
/* NORMALIZE IFT(2,9) */
set{IFtval, INDPOSITION(IFT(2,9), 60) * 100}
draw stochrsival on plot iftval

show stock where Upper Bollinger Band(20,2) is below
Upper Keltner Band(20,1.5)
and Lower Bollinger Band(20,2) is above
Lower Keltner Band(20,1.5)
draw Bollinger Band(20,2)
Draw Bollinger Bands(10,.10)
do not draw Keltner Band(20, 1.5)
Show stocks where close is above 3
and eMA(50) and above MA(200) for 20 weeks
and Bollinger Difference(20,1.5) decreasing for the last 10 Days lag 5 days
and low crossed above upper Bollinger Band(20,1.5) in last 2 days
and draw eMA(50)
and draw MA(200)
and draw Bollinger Bands(20,2)
draw Bollinger Difference(20,1.5)
draw price line at PP
and draw weekly williams %r(2) on plot williams %r(2)
and draw williams %r(20) on plot williams %r(2)

/* NORMALIZE Williams Accumulation Distribution */
set{wadval, INDPOSITION(Williams Accumulation Distribution, 60) * 100}
/* NORMALIZE Accumulation Distribution */
set{adval, INDPOSITION(Accumulation Distribution, 60) * 100}
draw adval on plot wadval

/* NORMALIZE macd(3,16,10) histogram */
set{mhistval, INDPOSITION(macd(3,16,10) histogram, 60) * 100}
/* NORMALIZE Slow Stochastics Slow %D(14) */
set{slowstochval, INDPOSITION(Slow Stochastics Slow %D(14), 60) * 100}
/* NORMALIZE cmo(5) */
set{cmoval, INDPOSITION(cmo(5), 60) * 100}
draw mhistval on plot slowstochval
draw cmoval on plot slowstochval

set{up,count(close above close 1 day ago,1)}
set{down,count(close below close 1 day ago,1)}
set{pivot,pp}
set{MF, pivot * volume}
set{UPMF, MF * up}
set{PMF, sum(UPMF,5)}
set{DNMF, MF * down}
set{NMF, sum(DNMF,5)}
set{ratio, PMF / NMF}
set{MFI, 1 + ratio}
set{MFSI, 100 / MFI}
set{MFRSI, 100 - MFSI}
/* mfrsi */
set{moneyflowrsi, INDPOSITION(mfrsi, 60) * 100}
/* obv */
set{onbalancevolume5, INDPOSITION(obv(5), 60) * 100}
draw onbalancevolume5 on plot moneyflowrsi
]



chetron
2,817 posts
msg #82399
Ignore chetron
11/4/2009 6:41:56 AM

very nice, mystiq

ThomasTin
3 posts
msg #82420
Ignore ThomasTin
11/4/2009 10:52:31 AM

thanks mistig, your suggested filter appears to produce a stocklist of what I wanted, though I am not up to level to fully understand the functions / logic of each steps.... for sure I will take effort to learn more. Thanks again.


StockFetcher Forums · General Discussion · Bollinger band<< 1 2 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.