What Are LEAPS? Long-Dated Options
LEAPS are options that expire more than a year out. Follow one real SPY call across two full years as its delta climbs toward 1 and its price rises tenfold.
LEAPS are simply options with a long time to run. The name stands for Long-term Equity AnticiPation Securities, and it covers any listed option whose expiration sits more than a year in the future. A LEAPS call grants the same right as any call option, to buy 100 shares at a fixed strike price, only with years on the clock instead of weeks. The extra time changes how the contract behaves. The clearest way to see that is to follow one real LEAPS call through its entire life.
Here is a single SPY call: the $600 strike expiring January 16, 2026, traced from the first session of 2024 to its final week. It opened at $9.21 with 745 days left to expiry and finished near $90.23, roughly a tenfold rise across 470 trading sessions.
The exact SQL behind every number
SELECT date,
round(avg(option_close), 2) AS call_price
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260116C00600000' AND date BETWEEN '2024-01-02' AND '2026-01-14' AND implied_volatility > 0.02
GROUP BY date ORDER BY dateThe chart draws a slow, compounding curve rather than a spike. That shape is the whole point of a LEAPS: time is on the holder's side, and the position has room to be right slowly.
How long until a LEAPS option expires?
Any option dated more than roughly a year out qualifies. New LEAPS are listed with expirations two and three years away, and as the calendar advances they simply become ordinary shorter-dated options. The call above was a genuine LEAPS at the open, with over two years to run, and an ordinary weekly contract by the end. Watching one contract cross that whole span is the fastest way to learn the greeks, the sensitivity numbers that describe how an option's price reacts to the stock, the clock, and volatility.
From long shot to stock proxy: delta
Delta measures how much the option moves for a $1 move in the stock, and it doubles as a rough read on the odds the option finishes in the money. On January 2, 2024, SPY closed at $472.67 and the $600 strike sat far above it. The call was out of the money, a long shot priced at just $9.21, and its delta was only 0.231. A one-dollar move in SPY barely moved it.
The exact SQL behind every number
SELECT date,
round(avg(underlying_close), 2) AS spy,
round(avg(delta), 3) AS delta,
round(avg(implied_volatility) * 100, 1) AS iv_pct
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260116C00600000' AND date IN ('2024-01-02', '2024-12-09', '2025-10-09', '2026-01-14') AND implied_volatility > 0.02
GROUP BY date ORDER BY dateAs SPY ground higher and pushed through the strike, delta climbed with it. By late 2024, with SPY over $600, delta had risen to 0.668. A year on, with SPY at $671.96, delta reached 0.897. In the final week, with SPY at $689.62, delta printed 0.975, a near-perfect one. At that point the call moved almost dollar-for-dollar with SPY. It had become a stock proxy: a deep in-the-money LEAPS that behaves like owning the shares, for a fraction of the cash. This is the same delta arc laid out across every greek in the option greeks explained.
Why time decay barely bit for most of its life
Theta is the option's daily time decay, the value it sheds each session as expiration draws nearer. Short-dated options bleed fast. A LEAPS call spreads its time value thin across hundreds of days, so early on it hardly decays at all.
The exact SQL behind every number
SELECT date,
round(avg(theta), 3) AS theta,
round(avg(days_to_expiry)) AS dte
FROM global_markets.options_greeks
WHERE ticker = 'O:SPY260116C00600000' AND date IN ('2024-01-02', '2024-12-09', '2025-10-09', '2026-01-14') AND implied_volatility > 0.02
GROUP BY date ORDER BY dateAt the open, with 745 days left, theta printed -0.03 a day. The contract gave up only a few cents of value per session. That number stayed small for most of its life. With 99 days remaining it was still modest. Only in the final stretch did it turn sharp: in the last week, with 2 days left, theta reached -0.795 a day. The decay a short-dated buyer feels every morning arrives for a LEAPS holder only at the very end. This front-loaded patience, then a late cliff, is the pattern covered in how the option greeks change over time.
Vega and the long horizon
Vega measures how much an option's price moves when implied volatility, the market's expectation of future movement, shifts by one point. Long-dated options carry the most vega of anything on the board. With years of time value stacked up, a change in expected volatility revalues a large base. At the open the volatility priced into this call was only 10.9%, a calm reading for SPY. A LEAPS holder is really making two bets at once: a bet on direction through delta, and a bet on volatility through vega. A jump in expected volatility lifts a long-dated call independent of where the stock goes, and a collapse in volatility drains it the same way.
What LEAPS are used for
Traders reach for LEAPS when they want a long runway. A deep in-the-money LEAPS call acts as a lower-cost substitute for the shares, with delta near one and little time decay to fight. An out-of-the-money LEAPS call is a patient directional wager that needs the move to happen within years rather than weeks. LEAPS puts exist too, and work as long-dated hedges or bearish positions. The mechanics of entering and exiting are the same as any option: see buying and selling call options and what put options are. What sets LEAPS apart is only the calendar, and when options expire is the single fact that reshapes every greek along the way.
FAQ
What does LEAPS stand for?
Long-term Equity AnticiPation Securities. It is a branded label for any listed option that expires more than about a year out. Functionally a LEAPS is an ordinary option with a long-dated expiration, not a separate kind of instrument.
Do LEAPS lose value from time decay?
Yes, but slowly at first. Time decay (theta) is tiny while a LEAPS has years to run, and it accelerates only as expiration approaches. In the trace above, daily decay stayed near a few cents for most of the contract's life and turned severe only in its final weeks.
Are LEAPS a substitute for owning the stock?
A deep in-the-money LEAPS call comes close. Once delta sits near one, the option moves almost dollar-for-dollar with the shares, so it tracks the stock while tying up far less cash. It is still an option: it expires, and its value carries a volatility component the shares do not.
Are LEAPS less risky than short-dated options?
They remove the fast time-decay pressure and give a thesis room to play out, which lowers one kind of risk. They cost more upfront than a short-dated option and still expire worthless if the stock never reaches the strike. The long horizon changes the shape of the risk rather than erasing it.
You can pull this contract's full greek history, or any other, on the Strasmore terminal and watch the same arc for yourself.