In: Finance
Use the Black–Scholes formula to value the following option: A call option written on
a stock selling for $60 per share with a $60 exercise price. The stock's standard
deviation is 6% per month. The option matures in three months. The risk-free
interest rate is 1% per month.
What is the value of a put option written on the same stock at the same
time, with the same exercise price and expiration date.
We use Black-Scholes Model to calculate the value of the call and put options.
The value of a call and put option are:
C = (S0 * N(d1)) - (Ke-rT * N(d2))
P = (K * e-rT)*N(-d2) - (S0)*N(-d1)
where :
S0 = current spot price
K = strike price
N(x) is the cumulative normal distribution function
r = risk-free interest rate
T is the time to expiry in years
d1 = (ln(S0 / K) + (r + σ2/2)*T) / σ√T
d2 = d1 - σ√T
σ = standard deviation of underlying stock returns
First, we calculate d1 and d2 as below :
d1 = 0.0983
d2 = 0.0683
N(d1), N(-d1), N(d2),N(-d2) are calculated in Excel using the NORMSDIST function and inputting the value of d1 and d2 into the function.
N(d1) = 0.5392
N(d2) = 0.5272
N(-d1) = 0.4608
N(-d2) = 0.4728
Now, we calculate the values of the call and put options as below:
C = (S0 * N(d1)) - (Ke-rT * N(d2)), which is (60 * 0.5392) - (60 * e(-0.01 * 0.25))*(0.5272) ==> $0.7946
P = (K * e-rT)*N(-d2) - (S0)*N(-d1), which is (60 * e(-0.01 * 0.25))*(0.4728) - (60 * (0.4608) ==> $0.6448
Value of call option is $0.7946
Value of put option is $0.6448