calculation-reference

CFA Level I Derivatives Calculations

Forward pricing, option payoffs, put-call parity, and Black-Scholes calculation setup.

TL;DR

Derivatives calculations use no-arbitrage logic. The highest-yield workflows are forward price, forward value, option payoff, put-call parity, and Black-Scholes input handling.

Formula Reference

Forward price

F0 = S0 x (1 + r)^T

Basic no-income version.

Call payoff

max(0, S_T - X)

Profit subtracts the premium paid.

Put-call parity

c + PV(X) = p + S

European options on non-dividend-paying stock.

BA II Plus Keystrokes

  1. Use TVM for present value of exercise price.
  2. Use max payoff logic manually.
  3. Use LN and e^x for Black-Scholes components.

Worked Example

  • Stock = 40, strike = 35, call premium = 6.
  • Call payoff at expiration = max(0, 40 - 35) = 5.
  • Call profit = 5 - 6 = -1.

Common Mistakes

  • Confusing payoff with profit.
  • Forgetting dividends or costs in forward pricing when provided.
  • Applying American option intuition to European put-call parity.

Related Guides