Jane Doe
Pro Plan
Open Frac is a quant indicator used to determine the nature of volume in options trading—specifically, whether most volume on a given day is due to opening new positions or closing existing ones. This signal can help traders and quants interpret market sentiment and position flows, making it a valuable tool in the options trading toolkit.
call_delta_oi = call_next_oi - call_prev_oi # Next Days OI - Current Days OIopen_frac = call_delta_oi / call_volume # Δ OI / Current Days Volume open_frac > 0.7 # Most volume was OPENING new positionsopen_frac < 0.3 # Most volume was CLOSING existing positionsopen_frac ≈ 0.5 # Mixed opening/closingHigh open_frac (Opening Positions):
Low open_frac (Closing Positions):
Mixed open_frac:
The open frac indicator provides actionable insight into the type of activity driving options volume. By quantifying whether volume is opening or closing, traders can better understand market sentiment and position dynamics. Incorporating open frac into a quantitative strategy can help identify shifts in market behavior and improve signal generation for options trading decisions.