StockFetcher Forums · Filter Exchange · MONTHLY CONSOLIDATION PATTER<< >>Post Follow-up
Sqwii
160 posts
msg #86337
Ignore Sqwii
1/15/2010 3:20:40 AM

I am looking for some help to make a filter which will screen for stocks with CONSOLIDATION SIDEWAYS pattern for months...........

Take a look at CRDC, INSM, APPA and so........ those patterns with LONG time sideways action... and with bollinger bands VERY tight, would be amazing if someone could make such a filter..

Thanks a lot

dwiggains
441 posts
msg #86348
Ignore dwiggains
1/15/2010 8:52:05 AM

Hi
Try this

Fetcher[
set {a, high 30 day high minus low 30 day low} add column a
set {Range, a / close} add column range and sort column 6 ascending
set {b, high 120 day high minus low 120 day low}
set {Range2, b / close} add column range2
range2 > .9
average volume (90) > 50,000
]



Play with range2 numbers.

see ya
david

trendscanner
265 posts
msg #86400
Ignore trendscanner
1/15/2010 9:01:37 PM

Nice filter, David

tomm1111
202 posts
msg #86404
Ignore tomm1111
1/15/2010 11:37:38 PM

Here is another look at it. The filter is based on 100 day sideways movement. It can be sorted by volatility.


Fetcher[
/* 100 days sideways */
/* Percentage price change */
set{var,close - close 1 day ago}
set{prc_chg, var / close 1 day ago}

/* Calculations */
set{my_sd_100,cstddev(prc_chg,100)}
set{my_sum_100,sum(prc_chg,100)}
set{my_mean_100,my_sum_100 / 100}

/* 100 day, z-table calc*/
set{z_100,my_mean_100 / my_sd_100}

set{calc,cstddev(close,100)}
set{calc1,calc/close}
set{volatility,calc1*100}

draw volatility
draw z_100
draw z_100 line at 0

/* Sideways criteria */
and z_100 is below .03
and z_100 is above -0.03

show stocks where close is above 1
and volume is above 100000
and not otcbb
and chart-time is 6 months

and add column separator
add column volatility
add column average day range(10)
add column separator
]




StockFetcher Forums · Filter Exchange · MONTHLY CONSOLIDATION PATTER<< >>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.