CH
CalcHub
Back to Guides
Intermediate

Options: Calls, Puts, and Why They Matter

Options are one of the most powerful and misunderstood instruments in finance. This guide breaks down calls, puts, and the Greeks in plain English โ€” no calculus required.

Options in One Sentence

An option gives you the RIGHT (but not the obligation) to buy or sell something at a specific price before a specific date. You pay a small fee (the premium) for this right.

Call Options: The Right to Buy

A call option gives you the right to BUY a stock at a fixed price (the strike price). You profit when the stock goes UP above the strike.

Real Example:

Apple (AAPL) is trading at $200. You buy a $210 call option expiring in 30 days. You pay a $5 premium per share.

  • If AAPL goes to $230: you exercise and buy at $210, making $230 - $210 - $5 = $15 profit
  • If AAPL stays at $200: the option expires worthless. You lose your $5 premium. -$5 loss
  • If AAPL drops to $180: same thing โ€” you just lose the $5 premium. -$5 loss

Break-even: $210 (strike) + $5 (premium) = $215. AAPL needs to be above $215 for you to profit.

Put Options: The Right to Sell

A put option gives you the right to SELL a stock at a fixed price. You profit when the stock goes DOWN below the strike. Puts are commonly used as insurance to protect a portfolio.

Real Example:

You own AAPL at $200. You are worried about a crash. You buy a $190 put for $3.

  • If AAPL drops to $170: you exercise and sell at $190, saving $190 - $170 - $3 = $17 saved
  • If AAPL stays above $190: the put expires worthless. You lose the $3 premium โ€” think of it as an insurance cost.

Key Terminology

  • Strike price โ€” The fixed price at which you can buy (call) or sell (put)
  • Premium โ€” The price you pay for the option (your maximum loss as a buyer)
  • Expiry date โ€” The deadline. After this, the option ceases to exist.
  • In-the-money (ITM) โ€” The option has intrinsic value (call: stock > strike; put: stock < strike)
  • At-the-money (ATM) โ€” Stock price equals the strike price
  • Out-of-the-money (OTM) โ€” The option has no intrinsic value yet

Option Payoff in Python

import numpy as np import matplotlib.pyplot as plt # Call option payoff strike = 210 premium = 5 stock_prices = np.arange(180, 250, 1) # Payoff at expiry call_payoff = np.maximum(stock_prices - strike, 0) - premium plt.figure(figsize=(10, 5)) plt.plot(stock_prices, call_payoff, color="lime", linewidth=2, label="Call P&L") plt.axhline(y=0, color="white", linewidth=0.5, alpha=0.5) plt.axvline(x=strike, color="gray", linewidth=0.5, linestyle="--", label=f"Strike: ${{strike}}") plt.fill_between(stock_prices, call_payoff, 0, where=(call_payoff > 0), color="green", alpha=0.1) plt.fill_between(stock_prices, call_payoff, 0, where=(call_payoff < 0), color="red", alpha=0.1) plt.title(f"Call Option Payoff (Strike ${{strike}}, Premium ${{premium}})") plt.xlabel("Stock Price at Expiry ($)") plt.ylabel("Profit / Loss ($)") plt.legend() plt.grid(True, alpha=0.3) plt.tight_layout() plt.show()

The Greeks (Briefly)

The Greeks measure how an option's price changes when different factors change:

  • Delta โ€” How much the option price moves when the stock moves $1. A delta of 0.5 means the option gains $0.50 for every $1 the stock goes up.
  • Theta โ€” Time decay. Options lose value every day as expiry approaches. Theta is always negative for option buyers.
  • Vega โ€” Volatility sensitivity. If the market gets more volatile/uncertain, options become more expensive (higher vega).
  • Gamma โ€” How fast delta changes. High gamma means the option becomes very sensitive to price moves near the strike.