Regler
// Country + market filter
country = US;
//exchange != OTC;
// High level of short interest
ShortInterestPercentFloat > 10; // e.g., more than 10% of float shorted
DaysToCover > 7; // e.g., more than 7 days to cover
// High option volume
OptionVolume > 5000; // e.g., more than 10,000 total option trades today
//OptionTotalTrades > 5000; // optional: more than 5,000 total options trades
// Insider net buying (or selling)
//InsiderNetBuyerSharesVolume1Year > 100000; // e.g., more than 1 million shares of net insider buying in past year
// or if you want selling:
InsiderNetBuyerSharesVolume1Year < -100000; // more than 1 million shares net insider selling
// Ordering and limiting results
order by ShortInterestPercentFloat desc;
limit 100;