StockFetcher Forums · General Discussion · Question on volume<< >>Post Follow-up
disqplay
7 posts
msg #41523
Ignore disqplay
2/23/2006 1:17:23 PM

Does anyone know how to have stock fetcher return a list of stock that would be generated by a percentage level volume. as an example

volume today below 50% of average volume 30 days.

I have tried writign it several different ways and it tell me potetial error or returns 0 stocks. any help on this would be greatly appreciated.

Robert


nikoschopen
2,824 posts
msg #41524
Ignore nikoschopen
2/23/2006 2:09:41 PM

Fetcher[
set{volratio, volume / avgvol(30)}
set{Vol%, volratio * 100}
vol% below 50
]




disqplay
7 posts
msg #41527
Ignore disqplay
2/23/2006 2:48:21 PM

nikoschopen I would like to thankyou for your quick responce to the question I just posted. I will let you know if the filter I am trying to construct with this being part of it works or not. Once again thank you for your help in this endeavor

Robert


nikoschopen
2,824 posts
msg #41528
Ignore nikoschopen
2/23/2006 2:50:20 PM

Glad to help.


TheRumpledOne
6,407 posts
msg #41532
Ignore TheRumpledOne
2/23/2006 8:32:10 PM

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 */
]



This was posted a while ago.

HTH.


StockFetcher Forums · General Discussion · Question on volume<< >>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.