StockFetcher Forums · Filter Exchange · volume filter<< >>Post Follow-up
arthur702
38 posts
msg #41011
Ignore arthur702
2/6/2006 11:59:11 AM

Hi, can someone write me a filter that searches for stocks that had a 52 week high breakout on 100% volume increase, but the breakout occured anywhere from 15-60 days ago.

thanks.


arthur702
38 posts
msg #41021
Ignore arthur702
2/6/2006 3:28:43 PM

can someone please help, I got the filter below, can someone fix it. thanks.

set{dt1, darvas top 1 day ago}
set{db1, darvas bottom 1 day ago}
show stocks where
close > dt1
dt1 > db1
set{vh1, high reached a new 250 day high}
set{ph1, volume gained more than 100 percent within the past 1 days}
vh1=ph1 within the last 40 days
and market not otcbb
and draw darvas box
close > 2



nikoschopen
2,824 posts
msg #41029
Ignore nikoschopen
2/6/2006 5:53:59 PM

Fetcher[
set{hi52wk, days(price reached high 52 week high,60)}
hi52wk between 15 and 60

set{2X, volume / volume 1 day ago}
set{vol2X, days(2X above 1.99,60)}
vol2X equals hi52wk

add column hi52wk{52hi200%}
]



Column "52hi200%" states how many days ago the breakout occured with at least 100% volume increase.


arthur702
38 posts
msg #41032
Ignore arthur702
2/6/2006 6:41:11 PM

why thank you very much!!!


TheRumpledOne
6,407 posts
msg #41044
Ignore TheRumpledOne
2/7/2006 12:06:53 AM

Fetcher[

/* STOCK VOLUME DISPLAY */

/* ClxCl - number of consecutive days close increasing(+)/decreasing(-) */

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl, CCa - CCb}

/* volpct - percentage volume increased(+)/decreased(-) */
set{v, volume 1 day ago}
set{volinc, volume - v}
set{volpc, volinc / v}
set{volpct, volpc * 100}

/* Volz - Number of zero volume days out of last 100 days ... -1 means none */
set{VolZ, days(volume < 1,100)}

/* VlxVl - number of consecutive days volume increasing(+)/decreasing(-) */
set{VolUp, days(volume is below volume 1 day ago,100)}
set{VolDn, days(volume is above volume 1 day ago,100)}
set{VlxVl, VolUp - VolDn}

/* vdbl - consecutive days volume at least doubled */
set{vck1, volume 1 day ago }
set{vck, volume / vck1 }
set{vdays, days(vck < 2, 100)}

/* VHIGH - number days volume equal volume 10 day high */
set{VHIGH, COUNT(volume equal volume 10 day high, 1)}

/* VLOW - number days volume equal volume 10 day low */
set{VLOW, COUNT(volume equal volume 10 day low, 1)}

/* VxVAV - number of consecutive days volume above(+)/below(-) avg volume */
set{VavUp, days(volume is below average volume(10),100)}
set{VavDn, days(volume is above average volume(10),100)}
set{VxVAV, VavUp - VavDn}


add column volpct

add column ClxCl
add column VlxVl

add column Vdays {Vdbl}

add column VolZ

add column VxVAV

add column VHIGH
add column VLOW

/* YOUR SELECTION CRITERIA GOES BELOW THIS LINE */

volpct above 100

close above 20

VOLUME ABOVE 1000000

SORT COLUMN 5 DESCENDING

/* YOUR SELECTION CRITERIA GOES ABOVE THIS LINE */

]




StockFetcher Forums · Filter Exchange · volume filter<< >>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.