Regler
/**************************************************************
* Screener Name: Aggressive Bullish Options Positioning
*
* Purpose:
* Identify stocks showing strong bullish sentiment in the
* options market based on volume, premium flow, volatility,
* and fresh positioning.
*
* Filter Breakdown:
*
* OptionCallVolume > OptionPutVolume * 2
* → Call option volume is at least twice put volume.
* Signals bullish bias among options traders.
*
* OptionCallPremiumBought > OptionCallPremiumSold
* → More dollar volume flowing into buying calls (offer side)
* than into selling them (bid side). Indicates conviction.
*
* OptionImpliedVolatilityChange1Week > 0
* → Rising implied volatility suggests increasing demand
* and expectations of bigger price swings.
*
* OptionCallMonthliesOpenInterestChange1Week > 0
* → New bullish bets are being opened in near-term expirations.
*
* order by OptionCallPremiumBought desc
* → Sort by highest bullish premium flow to surface top signals.
*
* limit 50
* → Show only the top 50 tickers meeting these conditions.
**************************************************************/
OptionCallVolume > OptionPutVolume * 2 &&
OptionCallPremiumBought > OptionCallPremiumSold &&
OptionImpliedVolatilityChange1Week > 0 &&
OptionCallMonthliesOpenInterestChange1Week > 0;
OptionNetDelta > 0
OptionDollarGamma;
order by OptionCallPremiumBought desc;
limit 100;