Black-Scholes-Merton Model

6/28/2024

As a test for playing around with MDX, here is an interactive plot of the Black-Scholes-Merton model built with react and plotly

Black-Scholes-Merton Model

The price of a European call option is given by:

C(S,t)=SN(d1)Ker(Tt)N(d2)C(S, t) = S \cdot N(d_1) - K e^{-r(T-t)} \cdot N(d_2)

where: d1=ln(SK)+(r+σ22)(Tt)σTtd_1 = \frac{\ln\left(\frac{S}{K}\right) + \left(r + \frac{\sigma^2}{2}\right)(T-t)}{\sigma \sqrt{T-t}} d2=d1σTtd_2 = d_1 - \sigma \sqrt{T-t}

Parameters

  • SS: Current price of the underlying asset
  • KK: Strike price
  • TT: Time to maturity (years)
  • tt: Current time (years)
  • rr: Risk-free interest rate (annualized)
  • σ\sigma: Volatility of the underlying asset (annualized)
  • N()N(\cdot): Cumulative distribution function of the standard normal distribution

Black-Scholes-Merton Model

Adjust the parameters to see how the option price changes:

02040608010001020304050
Black-Scholes Option Pricing ModelUnderlying Asset PriceOption Price

Play around with it!