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