What is Gamma Exposure (GEX) in Options Markets?
Gamma exposure measures the total gamma notional held by market makers. When dealers hedge options, their hedging flows move the underlying. GEX tells you the direction and magnitude of those flows.
How Gamma Exposure Works
To understand gamma exposure, you first need to understand delta hedging. When a market maker sells you a call option, they take on directional risk. To neutralize that risk, they buy shares of the underlying stock proportional to the option's delta. As the stock price moves, delta changes — and the rate at which delta changes is gamma.
This creates a feedback loop. When a dealer is long gamma (net positive gamma), a price increase causes their delta to rise, meaning they are now over-hedged. They must sell shares to rebalance. If the price falls, their delta drops, so they buy shares. The result is a natural dampening effect — dealers are constantly trading against the direction of the move.
When a dealer is short gamma (net negative gamma), the opposite occurs. A price rise forces them to buy more shares (chasing the move up), and a price decline forces them to sell (chasing the move down). This amplifies volatility.
Gamma exposure aggregates this effect across all strikes and expirations for a given underlying. The total net GEX number tells you whether the market is in a dampened regime (positive GEX) or a volatile regime (negative GEX).
Positive vs Negative Gamma
Positive gamma (long gamma) means dealers collectively hold more gamma from long option positions than short. In practice, this usually happens when the stock is trading above the gamma flip point, near heavy call open interest.
- Dealers buy dips and sell rallies
- Price tends to mean-revert within a range
- Intraday volatility is compressed
- Moves are choppy and range-bound
Example: SPY trading at 580 with the gamma flip at 570 and massive call gamma at the 590 strike. Price dips to 575 — dealers buy stock to rebalance, creating a floor. Price rallies to 585 — dealers sell stock, creating a ceiling. The result is tight, range-bound trading.
Negative gamma (short gamma) means dealers are net short gamma, typically occurring when the stock trades below the gamma flip point or during elevated put-heavy environments.
- Dealers chase price in both directions
- Moves tend to be directional and persistent
- Intraday volatility is elevated
- Breakouts are more likely to follow through
Example: SPY drops below the gamma flip at 570. Dealers are now short gamma and must sell stock as price falls. Each tick lower increases their selling pressure, creating a cascading effect. This is why sell-offs below the gamma flip can accelerate rapidly.
Key GEX Levels
Three levels define the gamma exposure landscape for any underlying:
Call Wall
The call wall is the strike price with the highest positive call gamma. It acts as a resistance level because as price approaches this strike, dealers holding short calls must sell increasing amounts of stock. The hedging pressure creates a mechanical ceiling that is difficult to break without a significant catalyst or gamma unwind (expiration).
Put Wall
The put wall is the strike price with the highest positive put gamma (from the dealer perspective). It functions as a support level. As price drops toward this strike, dealers who are short puts must buy stock, creating a mechanical floor.
Gamma Flip
The gamma flip point is where the aggregate dealer gamma changes sign — from positive to negative or vice versa. This is arguably the most important level. Above the gamma flip, volatility is dampened. Below it, volatility is amplified. Traders watch this level as a regime change boundary.
Reading a GEX Chart
A per-strike GEX chart displays gamma notional as bars at each strike price. Here's how to read it:
- Positive bars (above zero) indicate strikes where dealers are long gamma. Price near these strikes will experience mean-reversion pressure.
- Negative bars (below zero) indicate strikes where dealers are short gamma. Price near these strikes will experience trend amplification.
- The tallest positive bar marks the call wall — expect strong resistance here.
- The tallest negative bar (or largest put gamma) marks the put wall — expect strong support.
- The crossover point where bars shift from positive to negative is the gamma flip.
Look at the distribution shape as well. A concentrated GEX profile (one or two dominant strikes) suggests a strong pinning effect. A dispersed profile means hedging flows are spread across many strikes, weakening the impact of any single level.
How Traders Use GEX
0DTE Scalping
Day traders use GEX levels as intraday support and resistance. In a positive gamma environment, fading moves toward the call wall and put wall can be a high-probability strategy. In negative gamma, traders look for breakouts and momentum continuation.
Regime Identification
Understanding whether the market is in positive or negative gamma helps set expectations for the day. Positive gamma days tend to be mean-reverting and range-bound. Negative gamma days tend to be trending and volatile. This informs strategy selection — mean-reversion strategies in positive gamma, momentum strategies in negative gamma.
Setting Stops
Place stops beyond key GEX levels. If you're long and price is near the put wall, a break below that level could trigger a cascade of dealer selling. Setting stops just below the put wall accounts for this mechanical risk.
GEX Data via API
FlashAlpha provides real-time gamma exposure data via a REST API. Here's how to access it:
cURL
curl https://lab.flashalpha.com/v1/exposure/gex/spy -H "X-Api-Key: YOUR_KEY"
Python
import requests
r = requests.get(
"https://lab.flashalpha.com/v1/exposure/gex/spy",
headers={"X-Api-Key": "YOUR_KEY"}
)
data = r.json()
print(f"Net GEX: {data['net_gex']}, Gamma Flip: {data['gamma_flip']}")
For full API documentation, see the GEX API reference. Try it interactively in the API Playground.
Try It Now
Ready to see gamma exposure in action? Use our interactive tools and explore live data:
- Interactive GEX Tool — visualize gamma exposure by strike for any symbol
- SPY GEX Analysis — see live gamma exposure for S&P 500 ETF
- TSLA GEX Analysis — see live gamma exposure for Tesla
- GEX API Documentation — integrate GEX data into your own tools
- Volatility Surface Guide — understand implied volatility across strikes and expirations
- Dealer Positioning Guide — learn about DEX, VEX, and CHEX
Further Reading
- GEX Explained — open-source walkthrough with Python code covering the math behind dealer hedging and gamma regimes
- FlashAlpha Examples — runnable Python examples including a GEX dashboard, IV rank scanner, and 3D vol surface
- Awesome Options Analytics — curated tools, APIs, papers, and educational resources for options analytics
Get Started Free
Access live gamma exposure data, interactive tools, and the full API. Free tier includes 10 requests/day — no credit card required.
Get Free API Key