The Value of an Option at Expiration

Read the previous parts of this 101 series on options:

Options have value because the future is uncertain.

One thing that is known and always unchanging, however, is the value of a given option contract at expiry. This is the most fundamental thing about an option.

Value of a Call Option at Expiration

A call option gives the holder the right to buy the underlying at the strike price on or before the expiration date.

That means that the value, \( V_{call} \), of the call option at expiration, is described by a step-wise function in the price at expiry,  \( p_e \) and the strike, \( s \):

\( V_{call} = \begin{cases} 0 & p_e \leq s \\\ p_e - s & p_e \geq s\end{cases} \)

The option, at expiration, is:

  • worthless if the price at expiration is less than or equal to the strike (“out of the money”)
  • worth something if the price at expiration is more than the strike (“in the money”)

If the asset is trading below the strike price then we say that the option is “out of the money”. The option gives you the option to buy the asset at the strike price – but nobody would willingly buy an asset at a price higher than they could buy it in the market. So an “out of the money” call option is worthless at expiry.

If the option expires “in the money” then it is worth the price at expiration less the strike. That’s because you can exercise the option to buy the stock at the strike price and you can immediately sell at the market price at expiration, pocketing the difference.

Here’s a visual example of the payoff function of a call option at expiry with a strike of 100:

library(tidyverse) 

min_price <- 0
max_price <- 200
strike <- 100
call_payoffs <- tibble(price = c(min_price, strike, max_price)) %&gt;%
  mutate(value = case_when(price < strike ~ 0, TRUE ~ price - strike))

call_payoffs %>%
  ggplot(aes(x = price, y = value)) +
  geom_line() +
  ggtitle('Value of call option at expiration')
plot of chunk call-at-expiry

Value of a Put Option at Expiration

A put option gives the holder the right to sell the underlying at the strike price on or before the expiration date.

That means that the value,  \( V_{put} \), of the put option at expiration is also described by a step-wise function:

\( V_{put} = \begin{cases} s - p_e & p_e < s \\\ 0 & p_e \geq s \end{cases} \)

The option, at expiration, is:

  • worth something if the price at expiration is less than the strike (“in the money”)
  • worthless if the price at expiration is greater than or equal to the strike (“out of the money”)

If the asset is trading above the strike price, then we say that the option is “out of the money”. The option gives you the option to sell the asset at the strike price – but nobody would willingly sell an asset at a price lower than they could sell it in the market. So an “out of the money” put option is worthless at expiry.

If the option expires “in the money” it’s worth the strike less the price at expiration. That’s simply because when the option expires in the money, you acquire a short position in the stock at the (high) strike price and can immediately buy it back at the (lower) expiration price, pocketing the difference.

Here’s a visual example of the payoff function of a call option at expiry with a strike of 100:

put_payoffs <- tibble(price = c(min_price, strike, max_price)) %>%
  mutate(value = case_when(price > strike ~ 0, TRUE ~ strike - price))

put_payoffs %>%
  ggplot(aes(x = price, y = value)) +
  geom_line() +
  ggtitle('Value of put option at expiration')
plot of chunk put-at-expiry

Woah there! This all looks like a pretty good deal!

That “kink” at the strike price means that by buying options, we get the ability to participate in the upside of a move without participating in the downside.

Pretty sweet, eh?

This is better than a stop loss because we always keep our exposure to any upside until expiration. We’re not “stopped out.”

Needless to say, this is extremely attractive. And there are no free lunches in the market—nothing comes for free.

Options contracts are derivative contracts. And for a derivatives contract to trade, there needs to be a buyer and a seller. So we need to find a price for an option where people are prepared to sell it and buy it.

Whereas the buyer of the options contract gets to participate in unlimited upside and limited downside, the seller of the options contract gets limited upside and unlimited downside.

So the seller is going to want compensation for this risk. He will want to get paid for the option.

Next, we’ll look at the net P&L from being long options.

3 thoughts on “The Value of an Option at Expiration”

Leave a Comment