Learn / Backtesting Academy / Black-Scholes-Merton
Hedging

Black-Scholes-Merton

Quick Answer

Black-Scholes-Merton is the standard closed-form model for pricing European options. It converts five inputs (the underlying price, the strike, the time to expiration, the risk-free rate, and the volatility) into a fair option premium. SledgeKey uses it to price the protective puts behind the Hedge Protection overlay.

What is Black-Scholes-Merton?

Black-Scholes-Merton is a formula that answers a specific question: what should an option cost today, given what is knowable now? Fischer Black and Myron Scholes published the core result in 1973, and Robert Merton extended and formalized it the same year. The framework was influential enough that Scholes and Merton received the Nobel Memorial Prize in Economic Sciences in 1997 (Black had died in 1995 and the prize is not awarded posthumously). It remains the reference point for option valuation, both as a working tool and as the language in which traders quote and compare option prices.

The model rests on simplifying assumptions. The underlying price follows a continuous random walk (geometric Brownian motion) with constant volatility, the risk-free rate is constant over the option's life, there are no transaction costs, the asset pays no dividends in the base version, and the option can only be exercised at expiration, which makes it European-style. Under those conditions, the option's payoff can be replicated exactly by continuously trading the underlying and cash, and the no-arbitrage price of that replication is its fair value. That replication argument, not a guess about market direction, is what pins down the price.

The result is notable because it does not require forecasting the underlying's expected return. Two investors who disagree about whether a stock will rise or fall still agree on the option's price, because the price depends on volatility and the cost of carry, not on direction. That is what makes the model usable inside a backtest, where the goal is a consistent, forecast-free estimate of what a hedge would have cost at each historical date.

Formula

P = K e−rT N(−d2) − S N(−d1)
d1 = [ ln(S / K) + (r + σ2/2) T ] / (σ√T)
d2 = d1 − σ√T
P is the put premium; S is the current underlying price; K is the strike; T is the time to expiration in years; r is the continuously compounded risk-free rate; σ is the annualized volatility of the underlying; N(·) is the cumulative distribution function of the standard normal distribution. This is the non-dividend-paying European put form.

Read from the outside in, the put price is the present value of the strike, discounted at the risk-free rate and weighted by the risk-neutral probability that the option finishes in the money, minus the value of the underlying weighted by its own risk-neutral term. The two N terms are probabilities under the risk-neutral measure: N(−d2) is roughly the chance the put pays off at all, and N(−d1) governs how much of the underlying's value is offset. Volatility enters through both d1 and d2, which is why it is the single input that most strongly moves the premium.

SledgeKey prices protective puts with exactly this European put form. The underlying price S is the portfolio's value at the rebalance date, the strike K is set at the chosen protection depth below that value, and the time to expiration T is the length of the rebalance interval expressed in years (a quarter is 0.25, a month is roughly 0.083). The risk-free rate r comes from the Treasury yield of matching maturity observed on that date, and the volatility σ is estimated from the strategy's recent return history and annualized. The normal CDF is evaluated with a standard polynomial approximation, which is accurate to well within the precision the pricing needs. Because the model uses continuously compounded rates, the Treasury yield is treated on that convention when it enters the discount term.

Why Black-Scholes-Merton Matters in Backtesting

A hedged backtest is only honest if the hedge is priced. Without a pricing model, downside protection looks free, and any strategy can be made to appear both high-returning and low-drawdown by silently assuming costless insurance. Black-Scholes-Merton supplies the missing price. It gives every protective put in the simulation a premium grounded in the conditions that actually prevailed on that date, so the drag the reader sees in a hedged result reflects what the protection would plausibly have cost.

The model also makes the cost respond to the environment in the right direction. Higher volatility raises the premium, because a more turbulent underlying is more likely to breach the strike, and a longer tenor raises it too. A deeper protection depth (a strike further below the current price) lowers it, because the put is less likely to finish in the money, and a higher risk-free rate lowers a put's price through the discounting of the strike. These relationships are why a hedge tested through the calm mid-2010s costs far less than the same hedge across a volatile stretch, and modeling that difference is the entire point of pricing the overlay rather than assuming a flat cost.

How SledgeKey Implements Black-Scholes-Merton

The model runs behind the Hedge Protection control, so the reader never sees the formula directly; they see its output as the premium line in a hedged backtest. At each rebalance, the platform assembles the five inputs from the state of the simulation on that date, prices the portfolio-level put, and deducts the premium from the portfolio. When the period ends, it checks the payoff against the realized portfolio value and credits any amount owed before the next reset.

The volatility input deserves attention, because it is the one input with no market quote inside a historical simulation. SledgeKey estimates it from the strategy's own recent return series, converting the observed variability of returns into an annualized figure that feeds the formula. This is a realized-volatility estimate standing in for the implied volatility a live options desk would quote. The risk-free input, by contrast, is observable: the matching-maturity Treasury yield on the rebalance date. The results page reports the total premium these prices sum to across the backtest, alongside total payoff and net impact on return, drawdown, and Sharpe.

Common Pitfalls

The deepest pitfall is treating a Black-Scholes-Merton price as ground truth rather than a model estimate. The model assumes a single constant volatility and lognormal returns, but real markets do not behave that way. Actual return distributions have fat tails and are often negatively skewed, so out-of-the-money puts, which pay off precisely in those tail events, tend to trade richer than the model says they should. This shows up as the volatility skew, a pattern of implied volatilities that rise for lower strikes. Before the 1987 crash, options were priced roughly in line with a flat volatility; afterward a persistent skew appeared and never left, a signal that the market had stopped trusting the lognormal assumption for crash-sized moves.

A second pitfall is forgetting that the model prices European exercise. It assumes the option can only be exercised at expiration, so it does not capture the extra value of American-style early exercise. For the period-matched puts used in a backtest overlay, European exercise is the natural fit, but a reader should not carry a backtested premium over to an American option and expect the same number.

A third pitfall is garbage in, garbage out on the volatility input. Because the premium is so sensitive to volatility, a poor volatility estimate produces a poor price. A volatility figure drawn from an unusually calm recent window will understate what protection should have cost heading into turbulence, and vice versa. The model is only as good as the inputs handed to it, and volatility is the input most worth scrutinizing.

Watch Out

Black-Scholes-Merton assumes one constant volatility and lognormal returns, so it systematically underprices deep out-of-the-money puts relative to real markets, where crash risk trades at a premium (the volatility skew). Treat modeled hedge costs as a reasonable estimate, not an exact market price.

See Black-Scholes-Merton pricing in your own backtest

Run a backtest, layer protective puts at 5%, 10%, 15%, or 20%, and see the modeled premium priced at each rebalance on point-in-time data, free.

Run a Backtest
Written by The SledgeKey Team · Last updated August 2, 2026