Traditional option strategies – spreads, condors, butterflies – can be approximated using DeFi primitives even on protocols that do not offer a native options order book. Concentrated liquidity-pool positions, perpetual options, structured vaults, and on-chain binary payoffs can all replicate familiar payoff curves, with trade-offs in precision, cost, and path dependency.

This page bridges the options cluster (call options, put options, spreads, verticals) with the AMM and LP pages.

Concentrated LP Positions as Synthetic Options#

A concentrated LP position in a constant-product AMM (such as Uniswap v3) behaves like a short option. The LP collects fees (analogous to premium) in exchange for bearing directional risk if the price moves outside the range:

  • A single-sided LP position above the current price (providing only the quote token) resembles a covered call: the LP profits from fees as long as the price stays below the upper bound, but surrenders upside if the price rises through the range.
  • A single-sided LP position below the current price (providing only the base token) resembles a cash-secured put: the LP earns fees while the price stays above the lower bound, but absorbs downside if the price falls through.

Impermanent loss is the option-theoretic “assignment cost” – the difference between holding the assets outright and holding the LP position. A narrow range amplifies both fee income and impermanent loss, just as selling a near-the-money option collects more premium but carries higher delta risk.

Constructing Spreads from LP Ranges#

By combining two LP positions at different ranges, a trader can approximate a vertical spread:

Desired payoff LP construction
Bull call spread Long LP in a lower range, short LP (or no position) in a higher range
Bear put spread Long LP in a higher range, short LP in a lower range
Iron condor Short LP positions on both sides of the current price, with wider-range long LP positions as wings

“Long LP” here means depositing liquidity; “short LP” means either not participating or hedging the equivalent range with a perpetual or spot position.

These constructions are approximate. Unlike exchange-traded options with discrete strikes and fixed expiries, LP ranges are continuous and have no expiration, so the payoff profile is path-dependent and accrues continuously rather than settling at a single date.

Perpetual Options and Structured Vaults#

Perpetual options (sometimes called “everlasting options”) remove the expiry dimension entirely, offering continuously priced option exposure. Protocols that implement them can serve as building blocks for multi-leg strategies:

  • Bull or bear spreads – buy a perp call at one strike, sell at another.
  • Straddles and strangles – combine a perp call and perp put at the same (or different) strikes.

Structured vaults automate these constructions. A vault might continuously sell covered calls on deposited ETH, rolling the position each epoch and distributing the collected premium to depositors. The vault’s smart contract enforces the strategy parameters, making the payoff transparent and auditable.

Limitations and Risks#

Imprecise replication – LP-based strategies approximate option payoffs but do not match them exactly. Fees, tick spacing, and path dependency introduce tracking error relative to a textbook spread.

No unlimited upside – a naked long call option has theoretically unlimited profit potential. No LP position or capped binary bet can replicate this. Any LP-based or vault-based strategy is inherently a risk-defined strategy with bounded payoffs.

Gas and rebalancing costs – multi-leg constructions require multiple on-chain transactions to open, adjust, and close. On high-fee networks, transaction costs can erode the theoretical edge.

Smart-contract risk – every leg of the strategy is a smart-contract interaction. A bug in the AMM, vault, or perp protocol can cause losses beyond the strategy’s intended risk profile.

Liquidity risk – exiting a concentrated LP position in a thin pool may incur significant slippage, especially during volatile markets.