Implied volatity is a 3-dimensional representation of the implied volatilities of options on any given underlying asset, plotted as a function, F(⋅)=σimp of time to maturity τ and moneyness M where,
Mcall=KS if callMput=SK if put
where S is the current price of the asset.
Assume we have a call at K=Xc, meaning we have the right to buy at any point before the time at which the contract expires and the option has a value of S>(K=X), then M>1.
Now assume we have the same scenario but S<(K=X), then M<1.
Now assume we have a put at K=Xp, meaning we have the right to sell at any point prior to the expiration of a contract.
If S>K, then M<1, but if K>S then M>1.
Then ultimately, the formulation for moneyness M becomes the delimiter for knowing the value of the option (whether call or put) at a given time t<T, where if M>1, we're in the money, else our option has no profitable value.
Aside from M, the IVS is a function of a second variable τ the time to maturity. If t is current time, T is time at maturity, τ=T−t is time to maturity.
To compute the implied volatility at τ, we need a couple of inputs to our function F(⋅).
Market option price, Cintrinsic=max(S−K,0) if call or Pintrinsic=max(K−S,0) if put, the underlying price S, the strike price K, time to maturity τ, risk free rate r.
The Black-Scholes model provides the theoretical price for an option (European, as it only accounts for the price at T) as,
CBS(S,K,τ,r,σ)=SN(d1)−Ke−rτN(d2)∣Theoretical Call PricePBS(S,K,τ,r,σ)=Ke(−r(τ))N(−d2)−SN(−d1)∣Theoretical Put Price
where N(di) is the CDF of the normal distribution function of the standard normal distribution at di (or equivanlently the PDF integrated up to di) ∫−∞di2π1e2−z2.
d1 and d2 are defined as:
d1=στln(Mcall)+(2r−q+σ2)(τ)d2=d1−στ
The goal is to find σimp by solving for CBS=Cmarket or PBS=Pmarket.
You can find σimp via the Newton-Raphson method, which essentially tries to find the roots of a function such that f(⋅)=0
Given that we're trying to find a CBS=Cmarket, we can construct a function as,
f(σ)=CBS(S,K,τ,r,σ)−Cmarket
with the goal of finding σ such that f(σ)=0
Newton-Raphson method iteratively adjusts σ until f(σn)=0 as,
σn+1=σ−f′(σn)f(σn)
where f′(σn) is simply the partial derivative of f(σn) with respect to σn,
f′(σn)=∂σn∂CBS=Sτ⋅∂σ∂N(d1)
defining the infinitesimal rate of change in the price of the call with respect to the volatility.
Once you computed σn, you simply construct the 3-dimensional plot of the function by plotting σn, M, and τ,