Regler
// ============================================================
// SCREENER DEFINITIVO — SPOT SIN APALANCAMIENTO
// Plan: Silver | Mercado: US
// ============================================================
// ── UNIVERSO BASE ──────────────────────────────────────────
Country = US;
Price > 7;
MarketCap > 300m;
MarketCap < 10b;
// ── SEÑAL 1: ACUMULACIÓN INSTITUCIONAL ─────────────────────
OwnershipScore > 70;
// ── SEÑAL 2: SHORT SQUEEZE (score nativo Fintel) ───────────
ShortSqueezeScore > 65;
ShortInterestPercentFloat > 8;
ShortInterestPercentFloat < 30;
// ── SEÑAL 3: INSIDERS COMPRANDO (officers) ─────────────────
InsiderOfficerBuyerCount > 0;
// ── SEÑAL 4: MOMENTUM TÉCNICO CONFIRMADO ───────────────────
Price > sma({20d});
Price > sma({50d});
sma({20d}) > sma({50d});
rsi() > 45;
rsi() < 68;
macd() > 0;
aroonup({14d}) > aroondown({14d});
// ── SEÑAL 5: PRECIO CON INERCIA ALCISTA ────────────────────
Price > Price{30d};
Price > Price{90d};
// ── RESULTADO ──────────────────────────────────────────────
order by OwnershipScore desc;
limit 10;