| chromey 4 posts
 msg #158250
 - Ignore chromey
 | 12/27/2021 7:43:37 PM 
 I'm currently working on trying to make the following filter:
 ADR (Average Daily Range) above 5%
 Price X% greater than Y days ago (1 month, 3 month, 6 month scanners)
 Price within 15% of 6 day high
 Price within 15% of 6 day low
 $Volume (close * volume) greater than 3,000,000
 Listed Stocks Only (No OTC, etc.)
 
 1 Month: 25% Greater than 22 Days ago
 
 3 Month: 50% Greater than 67 Days ago
 
 6 Month: 150% Greater than 126 Days ago
 
 This comes from TOS. Anyone want to take a stab at making it for SF?
 
 I've gotten this far:
 average day range(30) > 5%
 close > 1
 and market is not ETF
 close is > 100% above close 180 days ago
 and close is above 1
 and average volume(90) is above 500000
 
 Struggling on figuring out how to get the within 15% of 6 day high low in there.
 
 
 |