Regler
/**************************************************************
* Screener Name: Premium Bullish Options Positioning v1
*
* 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.
**************************************************************/
OptionNetDelta;
OptionCallVolume > OptionPutVolume &&
OptionVolume > 5000 &&
OptionCallPremiumBought > OptionCallPremiumSold * 1.5 &&
OptionPutPremiumBought < OptionPutPremiumSold
order by OptionCallPremiumBought desc;
limit 100;