Regler
// 1. 시장 및 기본 필터
Country = US;
Price > 0.1;
// 2. 공매도 관련 필터
ShortBorrowRate > 50;
// 3. 내부자 비율 관련 필터 (필요 시 필터 수치 추가 가능)
// 4. 출력 컬럼 설정 (요청하신 순서대로 최우선 배치)
Exchange;
Price;
ValueScore;
OwnershipScore;
PriceToBook;
ShortBorrowRate;
// 5. 나머지 분석 지표들 (명칭 오류 및 중복 교정)
InsiderOwnershipPercentSharesOutstanding;
InsiderOwnershipPercentFloat;
OwnersCountChange;
ShortSqueezeScore;
GammaSqueezeScore;
ShortBorrowShares;
ShortInterestPercentSharesOutstanding;
ShortVolumeRatio;
ShortInterestChange1Month;
ShortInterest;
ShortInterestPercentFloat;
OptionPutCallRatio;
CashAndEquivalents;
Debt;
DebtGrowth;
DebtPerShare;
RevenueGrowth;
RevenueGrowth3Years;
OptionGexPercentOfMarketCap;
ShortInterestFromFloat;
ShortInterestRatio;
SharesFloat;
CashFromOperatingActivities;
NetIncome;
NetMargin;
OperatingMargin;
CurrentRatio;
WorkingCapital; // 공백 제거 교정 완료
PiotroskiScore;
MarketCap;
InsiderNetBuyerCount;
AnalystSentimentScore;
AnalystPriceTargetMeanDifferencePercent; // 공백 제거 교정 완료
AssetTurnover;
MomentumScore;
StabilityScore;
Volatility;
// 6. 데이터 정렬 (내부자 지분율 높은 순)
order by InsiderOwnershipPercentSharesOutstanding desc;