Strasmore Research
Learn Matt ConnorBy Matt Connor · Updated 2026-07-15

What Is Option Theta? Time Decay Explained

Theta measures an option's daily time decay. Watch it deepen on a real SPY call into expiry, see decay accelerate, and why it's the seller's income.

Theta is the option greek that measures time decay — how much value an option loses with each passing day, all else equal. Options are wasting assets: every day the stock sits still, a little of what you paid for time erodes. Theta puts a number on that daily bleed, and the bleed is not steady — it accelerates as expiration nears.

Time decay accelerates into expiry

Here is our SPY $740 call's theta — its dollar loss per day — over its final seven weeks:

QueryThe SPY $740 call's daily time decay deepens into expiry (May–Jun 2026)
The exact SQL behind every number
SELECT date,
       round(avg(theta), 3) AS theta_per_day
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260618C00740000' AND date BETWEEN '2026-05-01' AND '2026-06-17'
GROUP BY date ORDER BY date

Theta started shallow, around -0.153 a day with seven weeks left, and deepened as June 18 approached — the call was losing several times as much to the clock each day in its final fortnight as it had at the start. Time value does not melt in a straight line; it caves in at the end. Measure the same effect cleanly across the SPY board, as a share of each option's own price:

QueryAt-the-money SPY time decay accelerates near expiry (2026-07-13)
The exact SQL behind every number
SELECT multiIf(days_to_expiry<=7,'0-7 days',days_to_expiry<=30,'8-30 days',
               days_to_expiry<=90,'31-90 days','90+ days') AS time_to_expiry,
       round(avg(theta/option_close)*100, 1) AS pct_of_price_per_day
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol = 'SPY' AND abs(delta) BETWEEN 0.45 AND 0.55 AND option_close > 0.5
GROUP BY time_to_expiry ORDER BY min(days_to_expiry)

An at-the-money SPY option with a week or less to run sheds roughly -19.3% of its value per day to time, versus a small fraction of a percent for a three-month contract. That end-of-life collapse is the engine of a 0DTE trade and the reason when an option expires matters so much: a buyer is racing the clock, and the clock speeds up.

The practical read is to think of theta as a rent check. A long option pays rent every day it is held, and the rent rises as expiry nears; the position only comes out ahead if the stock moves enough to cover the accumulated bleed. This is why buying a cheap, far-out-of-the-money option days before it expires is usually a losing proposition — theta is charging near-maximum rent on a lottery ticket. It is also why traders talk about an option needing to "outrun theta": the move has to arrive fast enough to beat the clock's acceleration.

Theta is largest at the money

Time value is greatest where the outcome is least certain — at the money. A deep-in-the-money option is mostly intrinsic value, with little time premium left to decay; a deep-out-of-the-money option has little value at all. The at-the-money contract carries the most time value, so it has the most to lose each day. Theta tracks the same at-the-money bell as gamma — the two are joined at the hip, and a trader who wants one is stuck with the other.

Theta is the seller's income

Time decay is a transfer from the option buyer to the option seller, which puts theta at the core of every premium-selling strategy. A trader who sells an option collects the premium up front and keeps whatever time value has decayed if the option expires worthless. Sellers favor shorter-dated, at-the-money options — the theta is richest there — and are, in the language of the greeks, "short gamma to be long theta": they take on the risk of a big move (gamma) in exchange for the steady bleed of time in their favor.

The catch for the seller mirrors the buyer's: the same short-dated, at-the-money contracts that pay the fattest theta also carry the most gamma, so a sharp move can hand back weeks of collected decay in an afternoon. Theta is income earned for taking a risk, not a free carry. The full trade-off across all five greeks sits in the option greeks explained.

FAQ

What is theta in options in simple terms?

Theta is how much value an option loses each day from time passing, with the stock and volatility unchanged. A theta of -0.25 means the option sheds about $0.25 of value per day. It is the daily cost of holding a long option.

Why does theta accelerate near expiration?

An option's time value reflects the chance the stock still moves in your favor. As expiry nears there is less time left for that, so time value drains faster — and in the final days it collapses, which is why short-dated options decay so violently.

Is theta good or bad?

It depends on your side. Theta is bad for option buyers (their position loses value every day) and good for option sellers (they collect that decay). Selling options is largely a bet that theta will outrun any move in the stock.

Do all options have the same theta?

No. Theta is largest for at-the-money, short-dated options and smaller for deep in- or out-of-the-money and long-dated ones. At-the-money contracts carry the most time value, so they have the most to lose each day.

Theta trades off against gamma. High-gamma positions (short-dated, at-the-money) also carry the most negative theta — the price of that explosive potential is fast decay. Sellers are typically short gamma and long theta; buyers are the reverse.