Regler
Country = US;
Exchange != OTC;
/* 1) Small & micro caps */
MarketCap > 10M and MarketCap < 2000M;
/* 2) Insiders comprando (neto 90 d) */
InsiderNetBuyerSharesVolume > 0;
/* 3) Call flow creciente */
OptionCallOpenInterestChange1Month > 0;
/* 4) Sentimiento bullish: más calls que puts */
OptionPutCallRatio < 1;
/* 5) Shorts retirándose: caída > 5 % en 30 d */
ShortInterestChange1Month < -5;
/* 6) RSI no sobre-comprado */
rsi() < 70;
/* 7) Momentum ascendente último mes */
PriceMomentum1Month > 0;
/* Orden por mayor acumulación insider */
order by InsiderNetBuyerSharesVolume desc;
limit 100;