Zero-DTE Magnet

Canonical definition, mechanics, interpretation rules, and API reference for the 0DTE gamma magnet strike.

Definition

The 0DTE strike with the highest absolute gamma exposure. On expiration days, dealer hedging flows concentrate at this strike, creating a gravitational pull that attracts price action — especially in the final hours of trading when 0DTE gamma accelerates.

Identification
zero_dte_magnet = argmax( |GEX(strike)| ) for 0DTE expiry only

The strike with the largest absolute per-strike GEX among contracts expiring today. Computed from 0DTE gamma and open interest only — non-0DTE expirations are excluded.

Inputs
0DTE per-strike GEX open interest spot price
Output
zero_dte_magnet (strike price)
Interpretation
  • Positive gamma at magnet: Strong pinning effect. Dealers buy dips and sell rips around the strike, pulling price back toward it.
  • Negative gamma at magnet: Repulsion effect. Price accelerates away from the strike once breached as dealer hedging amplifies the move.
  • Magnet near spot: Maximum effect. The closer spot is to the magnet, the stronger the hedging flow influence on price action.

How the 0DTE Magnet Works

On any expiration day, the 0DTE options chain has a unique property: gamma is enormous near the money and falls off sharply away from it. The strike where this gamma is maximized becomes a focal point for dealer hedging. If dealers are net short options at that strike (the common case), they must continuously re-hedge as price moves toward or away from it.

In a positive-gamma environment, this hedging creates a pinning effect. Each time price rises above the magnet, dealers sell to re-hedge; each time it falls below, they buy. The result is price oscillating around the magnet strike, especially when no strong directional catalyst is present. This is why 0DTE expiration days often show tight ranges in the final hours.

The magnet effect strengthens throughout the day as gamma acceleration increases. By the final hour, 0DTE gamma can be 8-10x larger than 7DTE gamma, making the magnet the single most important intraday level. Traders who identify the magnet early can position for mean-reversion around it or use it as a stop-loss reference.

Get 0DTE Magnet via API

Endpoint
GET /v1/exposure/levels/{symbol}
Tier
Free
Parameters
  • symbol (path, required) — underlying ticker, e.g. SPY
Response field
{
  "symbol": "SPY",
  "levels": {
    "zero_dte_magnet": number,
    "gamma_flip": number,
    "call_wall": number,
    "put_wall": number,
    "highest_oi_strike": number
  }
}
curl -H "X-Api-Key: YOUR_KEY" \
  https://lab.flashalpha.com/v1/exposure/levels/SPY
import requests
r = requests.get(
    "https://lab.flashalpha.com/v1/exposure/levels/SPY",
    headers={"X-Api-Key": "YOUR_KEY"}
)
d = r.json()
print(f"0DTE Magnet: {d['levels']['zero_dte_magnet']}")
const r = await fetch(
  "https://lab.flashalpha.com/v1/exposure/levels/SPY",
  { headers: { "X-Api-Key": "YOUR_KEY" } }
);
const d = await r.json();
console.log(`0DTE Magnet: ${d.levels.zero_dte_magnet}`);

Magnet vs Other Key Levels

The 0DTE magnet is one of several gamma-derived levels, each with distinct mechanics. The gamma flip marks the regime boundary (positive vs negative gamma). The call wall and put wall mark the strikes with the most concentrated call/put gamma across all expirations. The magnet is unique because it is 0DTE-only and represents the most intense intraday hedging concentration.

When the magnet aligns with the gamma flip or highest OI strike, the pinning effect is maximized. When they diverge, the magnet still exerts pull on an intraday basis while the full-chain levels influence multi-day positioning.

Why Zero-DTE Magnet Matters for Trading

TL;DR

The 0DTE magnet is the strike with the highest same-day gamma — price pulls toward it into the close on expiry days, nothing else.

What it measures
The strike with the largest gamma exposure among options expiring today.
What it signals
The intraday gravitational target for same-day options flow. Relevant only on expiry day, only in the last few hours.
Why we measure it
0DTE flow has ballooned to ~50% of SPX volume on expiry days. The magnet is the single level 0DTE gamma concentrates at.
Who uses it
0DTE scalpers, day traders, closing-auction specialists, index ETF pin traders.

How to read Zero-DTE Magnet

Spot below magnet on expiry day
  • Positive drift toward magnet
  • Call-dominant 0DTE flow
  • Dealers buy into close
  • Pin-to-magnet setup
Good for: long toward magnet, short OTM calls above
Spot above magnet on expiry day
  • Negative drift toward magnet
  • Put-dominant 0DTE flow
  • Dealers sell into close
  • Short-to-magnet setup
Good for: short toward magnet, short OTM puts below
Non-expiry day / diffuse 0DTE OI
  • No 0DTE magnet effect
  • Full-chain GEX dominates
  • Ignore the magnet label
  • Typical Tue/Wed reading
Off

Rules of thumb

  • Only trade on expiry day. Non-expiry sessions don't have a meaningful 0DTE chain — magnet is noise.
  • Effect strengthens after 2pm ET. 0DTE gamma peaks into the close. Early session the magnet is weaker.
  • Fade only in positive gamma. In negative gamma, price blows through the magnet rather than pinning.
  • Watch magnet shifts intraday. New 0DTE volume reshapes the magnet. Refresh frequently.
  • Pair with pin risk. Magnet identifies the strike. Pin risk scores the probability.