| Rumsfelding 2 posts
 msg #136321
 - Ignore Rumsfelding
 | 6/12/2017 8:44:56 PM 
 Hi, I'm a new member and could use some help with a filter.
 
 last price >= $.01
 dollar volume above $500,000
 number of trades for the day above 500
 closed above the open
 
 Any help would be appreciated!
 
 
 
 | 
| four 5,087 posts
 msg #136323
 - Ignore four
 | 6/12/2017 9:31:32 PM 
 Do investigate the guide
 http://www.stockfetcher.com/sfhelp2/?id=100379
 -----
 close >= $.01
 
 set{dllr_vol, close * volume}
 dllr_vol > 500000
 
 volume > 500
 add column dllr_vol
 
 closed above  open
 
 
 | 
| Rumsfelding 2 posts
 msg #136325
 - Ignore Rumsfelding
 | 6/13/2017 12:10:06 AM 
 Thank you so much for helping! I am reading through the user guide now. One more question the "volume > 500" is that number of actual trades or number of shares traded? I am trying to find the number of trades not shares.
 
 Also it seems to still be showing me stocks that were down on the day, not sure the "closed above open part is working". I'm trying to filter out anything that closed negative. could I use "day change above 0%"? Thanks again, this is a big help!
 
 
 |