Black Scholes Calculator
Calculate the theoretical fair value of call and put options using the Black-Scholes model, including all Greeks.
What Is the Black-Scholes Model?
The Black-Scholes model (also called Black-Scholes-Merton) is a mathematical framework for pricing European-style options contracts. Developed by Fischer Black and Myron Scholes in 1973, with contributions from Robert Merton, the model earned Scholes and Merton the 1997 Nobel Prize in Economics. It remains the most widely used options pricing model in financial markets today.
The model calculates the theoretical fair value of an option based on five key inputs: the current stock price, the option’s strike price, time to expiration, the risk-free interest rate, and the asset’s volatility. The Black-Scholes calculator above computes both call and put prices instantly, along with the full set of option Greeks.
Black-Scholes Formula
The Black-Scholes formula calculates call and put prices using a normal distribution function (N) applied to two intermediate values, d1 and d2:
// Intermediate values d1 = [ln(S/K) + (r - q + ฯยฒ/2) ร T] รท (ฯ ร โT)
d2 = d1 โ ฯ ร โT // Call option price Call = S ร e^(-qT) ร N(d1) โ K ร e^(-rT) ร N(d2) // Put option price Put = K ร e^(-rT) ร N(โd2) โ S ร e^(-qT) ร N(โd1) // Where: S = stock price, K = strike, T = time (years)
// r = risk-free rate, q = dividend yield, ฯ = volatility
// N() = cumulative standard normal distributionBlack-Scholes Input Variables Explained
Stock Price (S)
The current market price of the underlying asset. As the stock price rises relative to the strike price, call options become more valuable and put options become less valuable.
Strike Price (K)
The price at which the option holder can buy (call) or sell (put) the underlying asset. The relationship between the stock price and strike price determines whether an option is in-the-money, at-the-money, or out-of-the-money.
Time to Expiration (T)
Expressed in years. A 3-month option has T = 0.25; a 6-month option has T = 0.5. More time increases option value because there is more opportunity for the stock to move favorably โ this is captured in the option’s time value.
Risk-Free Rate (r)
The annualized yield on a risk-free investment, typically the U.S. Treasury bill rate. As of 2025, this is approximately 4.5โ5.25%. Higher risk-free rates increase call values slightly and decrease put values.
Implied Volatility (ฯ)
The most critical and variable input. Volatility represents the expected magnitude of price fluctuations, expressed as an annualized percentage. Higher volatility increases both call and put option values because larger price swings create more opportunity for profit. In practice, you can use historical volatility or the market’s implied volatility (IV) derived from current option prices.
Option Greeks Explained
| Greek | Symbol | Meaning | Practical Use |
|---|---|---|---|
| Delta | ฮ | Change in option price per $1 move in stock | Hedge ratio; probability proxy |
| Gamma | ฮ | Rate of change of delta per $1 move | Measures delta stability |
| Theta | ฮ | Daily time decay of option value | Cost of holding an option |
| Vega | ฮฝ | Change in price per 1% change in volatility | Volatility exposure |
| Rho | ฯ | Change in price per 1% change in interest rate | Interest rate sensitivity |
Limitations of the Black-Scholes Model
While powerful, the Black-Scholes model has well-known limitations that traders and investors should understand:
- Constant volatility assumption โ Real markets exhibit volatility skew and smile, meaning implied volatility varies by strike and expiration. Black-Scholes assumes a single flat volatility.
- European options only โ The model applies to options exercisable only at expiration. American options, which can be exercised early, require alternative models like the binomial tree.
- Log-normal return assumption โ The model assumes stock returns follow a log-normal distribution, which understates the probability of extreme moves (fat tails).
- Continuous trading assumption โ The model assumes you can trade continuously and without transaction costs โ unrealistic in practice.