Beskrivelse
// ════════════════════════════════════════ // SMART MONEY CONFLUENCE SCREEN // Busca: Insider + Institucional + Técnico // alineados ANTES de que el mercado lo vea // ════════════════════════════════════════
| Seneste handel | 2026-05-24 | Sidste løb | 10 hours ago |
| Ydeevne | 9.00% | Nuværende besiddelser | 5 |
Regler
Country = US;
// ── LIQUIDEZ MÍNIMA REAL
// Sin esto entras en trampas de illiquidez
Price > 5;
Volume > 500000;
// ── EL NÚCLEO: SMART MONEY CONFLUYENDO
// Insiders comprando CON SU DINERO (señal más fuerte)
InsiderScore > 75;
// Fondos acumulando (13F lag = ventana de entrada)
OwnershipScore > 75;
// Calidad del negocio — evita trampas de valor
QualityScore > 60;
// ── ACELERACIÓN: LOS FONDOS ESTÁN ENTRANDO AHORA
// No solo tienen la acción — están COMPRANDO MÁS
OwnersCountPercentChange > 0.10;
// ── LA EMPRESA GANA DINERO DE VERDAD
NetIncome > 0;
// ── MOMENTUM: EL PRECIO YA ESTÁ RESPONDIENDO
// Si el smart money lleva tiempo dentro y el precio
// aún no se ha movido mucho, mejor entrada
Price > Price{3m};
rsi() > 40 and rsi() < 75;
order by InsiderScore desc;
limit 50;