StockFetcher Forums · Filter Exchange · Help Please<< >>Post Follow-up
wmsmith@wmsmithbuilders.com
3 posts
msg #158403
Ignore wmsmith@wmsmithbuilders.com
1/16/2022 9:44:17 PM

Hey All

Trying to coming up with a screen that shows stocks that are in a 2% price range for certain amount of days

Any help would be greatly appreciated

xarlor
561 posts
msg #158406
Ignore xarlor
modified
1/17/2022 1:05:24 AM

This particular example returns tickers that have traded in a range no larger than 2% during the last 5 days. You can change the time period to suit your needs.

Fetcher[
set{5dh,high 5 day high}
set{5dl,low 5 day low}
set{delta,5dl / 5dh}
set{pdiff,1 - delta}
pdiff <= 0.02
add column 5dh
add column 5dl
add column pdiff

do not draw pdiff
]



redversa721
157 posts
msg #158407
Ignore redversa721
1/17/2022 2:48:25 AM

try this one as well and see if this works for you
Fetcher[
/*
Calculating average day range on a daily basis and here I am looking for day ranges for stocks that have been between 1 and 2% DAILY for the past 7 days
*/

count(average day range(1) > 1%, 7) > 6
count(average day range(1) < 2%, 7) > 6

add column Average Day Range(5)
add column Average Day Range(1)
]



wmsmith@wmsmithbuilders.com
3 posts
msg #158411
Ignore wmsmith@wmsmithbuilders.com
1/17/2022 4:47:59 PM

Thank you both very much for your time and efforts. I will try both of these out

Thank you again

StockFetcher Forums · Filter Exchange · Help Please<< >>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.