Beskrivelse
uppåttrend med ökande volym utan att ha hunnit öka så mycket i värde
| Seneste handel | 2026-05-08 | Sidste løb | 2 hours ago |
| Ydeevne | 73.19% | Nuværende besiddelser | 9 |
Regler
Country = US;
Exchange != 'OTC';
// Liquidity / size
Price <= 40;
MarketCap >= 40M and MarketCap <= 10B;
VolumeAvg1Month > 60000;
// Moderate momentum (NOT parabolic)
(Price / Price{1m} - 1) > 0.05 and (Price / Price{1m} - 1) < 0.50; // +5% to +50% in ~20 trading days
// “Early” positioning rules
Price <= ceil(Price{10d}) * 0.98; // a touch below recent 10d high (not broken-out & extended)
ema({20d}) > ema({50d});
ema({50d}) > ema({200d});
// (Price / ceil(Price{250d})) <= 0.98; // still below 52w high (early, not climax)
// InsiderOfficerBuyerCount > 0;
// Early volume (no blow-off)
VolumeMomentum1Week > 0; // volume expansion vs recent history
VolumeMomentum1Week <= 4; // cap climax-volume names
// Sort (single-field sort only)
order by VolumeMomentum1Week desc;