Beskrivelse
Price down 70% year ago, price within 200d range, higher volume last 5 days
| Seneste handel | 2026-05-24 | Sidste løb | 11 hours ago |
| Ydeevne | -203.00% | Nuværende besiddelser | 6 |
Regler
/*
* Ondrej's screener for finding interesting tickers.
*/
country = US;
exchange != OTC;
// mid cap
MarketCap > 1M and MarketCap < 500M;
// price analysis
Price < (Price{1y} * 0.3) // 70% down
Price < Price{200d} * 1.5 and Price > Price{200d} * 0.5
// volume analysis
(Volume > 0 and (Volume > Volume{5d} * 0.5 or Volume > Volume{4d} * 0.6 or Volume > Volume{3d} * 0.7 or Volume > Volume{2d} * 0.8 or Volume > Volume{1d} * 0.9)) or (Volume = 0 and Volume{1d} > 0 and (Volume{1d} > Volume{6d} * 0.5 or Volume{1d} > Volume{5d} * 0.6 or Volume{1d} > Volume{4d} * 0.7 or Volume{1d} > Volume{3d} * 0.8 or Volume{1d} > Volume{2d} * 0.9)) or (Volume = 0 and Volume{1d} = 0 and Volume{2d} > 0 and (Volume{2d} > Volume{7d} * 0.5 or Volume{2d} > Volume{6d} * 0.6 or Volume{2d} > Volume{5d} * 0.7 or Volume{2d} > Volume{4d} * 0.8 or Volume{2d} > Volume{3d} * 0.9));
// make sure it grows
RevenueGrowth > RevenueGrowth{1y};
// a simple valuation metric
( Assets-Liabilities ) * 2.0 > MarketCap;
order by Volume;
limit 50;