Regler
/*
* Sample query with basic examples
*/
country = US;
//exchange != OTC;
// mid cap
//MarketCap > 2b and MarketCap < 999b;
// above the trend line and above a dollar
//Price > 10;
OptionAverageDailyVolume > 5000; //The total call volume offer side, directional trades.
//OptionPutVolume;
//OptionPutBoughtVolume;
//OptionCallVolume;
//OptionCallBoughtVolume;
OptionPutCallRatio < 0.6 && //open interest PCR
OptionCallPremiumBought > OptionCallPremiumSold * 1.3;
order by OptionPutCallRatio asc;
//OptionCallOpenInterestChange1Month > 10; //The change in total call open interest.
//OptionCallPremium // The total $ call premium
//OptionCallPremiumBought //The total $ call premium trading offer side, directional trades
//OptionCallPremiumSold //The total $ call premium trading bid side, directional trades
//OptionCallPremiumTraded //The total call premium traded
//OptionCallVolume //The total call options traded for a ticker on a given day
limit 100;