| cardi 11 posts
 msg #155999
 - Ignore cardi
 | 3/2/2021 9:13:50 AM 
 Hi, help needed, trying to find phrasing to find stocks that are within x % from all time high. x=a number of my choice. thanks in advance
 
 
 | 
| miketranz 978 posts
 msg #156003
 - Ignore miketranz
 modified
 | 3/2/2021 5:16:28 PM 
 ALL TIME HIGH LIST: https://www.tradingview.com/markets/stocks-usa/highs-and-lows-ath/ Also try this
 I'm sure someone will help you with the percentages.Best,Mike...
 
 
 | 
| cardi 11 posts
 msg #156021
 - Ignore cardi
 | 3/3/2021 5:25:24 PM 
 is it possible in SF to show stocks that are within 10% of new 52 week high.
 
 
 | 
| xarlor 619 posts
 msg #156022
 - Ignore xarlor
 | 3/3/2021 7:03:30 PM 
 
 
 
 
 | 
| nibor100 1,099 posts
 msg #156026
 - Ignore nibor100
 | 3/4/2021 2:39:52 AM 
 @cardi,
 
 The following snippet of filter code from the Xarlor library of filters, shows within 5% of 52 week high both above and below which you can easily modify for 10% if that's what you were looking for.
 
 Ed S.
 
 set{5b,high 52 week high * .95}
 set{5a,high 52 week high * 1.05}
 close > 5b
 close < 5a
 
 
 | 
| cardi 11 posts
 msg #156032
 - Ignore cardi
 | 3/4/2021 1:30:57 PM 
 Thank you so much for your input, its much appreciated...Dave
 
 
 
 |