Live Data - Free signup, 30 seconds

Delta Exposure (DEX)

See where dealers hold directional risk. DEX reveals the strike-level delta that drives dealer hedging flows - positive DEX means dealers are long delta and will sell into rallies.

Delta exposure analysis shows directional dealer positioning by strike price. Enter any symbol to see net DEX, call/put walls, and how dealer delta shifts across strikes - updated with live options data.

Unlock Live DEX Data

Free API key - sign up in 30 seconds, no credit card.

Get Free API Key

Already have a key? Sign in

What can you do with DEX?

Directional Bias

DEX shows the net directional exposure of dealers. Positive net DEX means dealers are long delta and will sell into rallies, creating resistance. Negative net DEX means they buy dips, providing support.

Hedging Flows

Large DEX at a strike means significant dealer hedging activity. These strikes become magnets for price as dealers continuously adjust their directional exposure around them.

Market Maker Positioning

Track how delta shifts across strikes to spot accumulation. When DEX concentrates at specific strikes, it signals where market makers have built significant directional positions.

Get this via API

curl
# Single expiry (free tier)
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://lab.flashalpha.com/v1/exposure/dex/SPY?expiration=2026-03-07"

# All expirations (Growth+ tier)
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://lab.flashalpha.com/v1/exposure/dex/SPY"
Python
import requests

r = requests.get(
    "https://lab.flashalpha.com/v1/exposure/dex/SPY",
    params={"expiration": "2026-03-07"},  # yyyy-MM-dd
    headers={"X-Api-Key": "YOUR_API_KEY"}
)
data = r.json()
print(f"Net DEX: {data['net_dex']}")

Get DEX via API

Single-expiry DEX is included on the free Starter plan (5 requests/day). Full-chain DEX across all expirations available on Growth (2,500/day) and Alpha (unlimited).

Start Free

How Delta Exposure Is Calculated

Delta exposure quantifies the directional risk dealers carry at each strike. For a single option contract:

$$\text{DEX}_i = \Delta_i \times OI_i \times 100$$

Where:

  • $\Delta_i$ is the option's delta (first derivative of price with respect to underlying)
  • $OI_i$ is the open interest at that strike
  • The factor $100$ converts to shares per contract

Net DEX and the Dealer Convention

Dealers (market makers) are assumed to be short calls and long puts when retail buys them. Therefore:

$$\text{Net DEX} = \sum_{i} \text{DEX}_{i}^{\text{call}} + \sum_{i} \text{DEX}_{i}^{\text{put}}$$

Call delta is negative for dealers (they are short the call, so they must buy shares to hedge). Put delta is positive for dealers (they are long the put, which has negative delta, but their short position flips the sign). The sum captures the net directional exposure dealers must hedge.

Delta and the Black-Scholes Model

Under Black-Scholes, delta for a European call option is:

$$\Delta_{\text{call}} = N(d_1), \quad \Delta_{\text{put}} = N(d_1) - 1$$

Where $N(d_1)$ is the cumulative standard normal distribution evaluated at $d_1$. Delta ranges from 0 to 1 for calls and -1 to 0 for puts, representing the sensitivity of the option price to a $1 move in the underlying.

Why DEX Matters for Traders

While gamma exposure (GEX) shows how dealers must adjust hedges as price moves, delta exposure shows the current directional positioning. Large positive DEX at a strike means dealers hold significant long delta there and will sell shares as price approaches - creating natural resistance. Conversely, large negative DEX creates support as dealers buy to hedge.

DEX vs. GEX

Think of DEX as the "level" and GEX as the "rate of change." DEX tells you where dealers are directionally positioned right now. GEX tells you how quickly that positioning changes as the underlying moves. Together, they give a complete picture of the dealer hedging landscape.

Expiration Filtering

Near-dated options contribute concentrated DEX because their delta changes rapidly near the money. Our API supports filtering by expiration date so you can isolate 0DTE delta (which drives intraday hedging) from longer-dated positioning.

Limitations

  • Dealer assumption - DEX assumes dealers are short calls and long puts. In practice, some OI is inter-dealer or institutional hedging, which may have different sign conventions.
  • OI is T-1 - open interest is reported end-of-day by the OCC and reflects the previous session's close.
  • Not a crystal ball - DEX describes the mechanical hedging landscape, not future direction. Use it alongside price action, not as a standalone signal.

What Is Delta Exposure (DEX)?

Delta exposure - or DEX - quantifies the total directional exposure that options market makers hold across every strike price for a given ticker. Delta is the first-order options Greek: it measures how much an option’s value changes for a one-dollar move in the underlying. When you aggregate delta across all open contracts, weighted by open interest and notional size, you get a picture of the directional bias that dealers must hedge against. A large positive DEX at a strike means dealers are net long delta there and will sell shares to stay neutral; a large negative DEX means they need to buy.

Where gamma exposure (GEX) tells you about the acceleration of hedging flows, DEX tells you about the level of directional hedging already in place. Think of delta as the speedometer and gamma as the rate at which that speedometer is changing. DEX reveals the standing hedging demand at each strike - the accumulated directional pressure that dealers carry on their books. By mapping this across all strikes, you can identify where the options market is creating structural supply or demand for the underlying shares.

Why Delta Exposure Matters Near Expiration

As options approach expiration, at-the-money options experience rapid delta changes - their delta swings from roughly 0.50 toward either 0 or 1.00 as they resolve in- or out-of-the-money. This means the directional hedging that dealers must perform accelerates dramatically. A stock sitting near a strike with heavy open interest can see enormous share-level hedging flows in the final hours before expiration as dealers adjust their delta to match the rapidly moving option deltas. These flows are not discretionary - they are mechanical, and they move markets.

The practical impact is most visible during monthly and weekly OPEX events. When billions of dollars in notional delta exposure converge on a narrow range of strikes, the resulting hedging flows can dominate the order book. Stocks can be pinned to high-DEX strikes as dealer hedging creates a feedback loop of buy-and-sell pressure at those exact levels. Understanding which strikes carry the most delta exposure heading into expiration gives traders an edge in anticipating where price is likely to gravitate - and where a break away from those levels could trigger outsized directional moves.

How to Use the FlashAlpha DEX Tool

Enter any optionable ticker in the tool above and select an expiration date to visualize the full delta exposure profile by strike. The chart displays call delta exposure (positive, green) and put delta exposure (negative, red) at each strike, giving you an immediate read on where directional hedging pressure is concentrated. Key metrics are calculated automatically: the strike with peak call DEX (where dealer selling pressure is highest), the strike with peak put DEX (where dealer buying pressure is strongest), and the net directional bias across all strikes.

For programmatic access, the FlashAlpha Lab API serves the same data behind this tool via a simple REST endpoint. Pull delta exposure into your Python models, options scanners, or automated trading systems with a single authenticated request. Free-tier accounts can query single-expiration DEX for any ticker without a credit card; Growth-tier plans unlock aggregated multi-expiration views, historical DEX snapshots for backtesting, and higher rate limits for production workflows.

Get Free API Access

Create an account in 30 seconds. No credit card required. Start pulling live DEX data into your trading workflow today.

Sign Up Free