559 Option Greeks
The delta hedge would be perfect if we rebalanced our portfolio con-
tinuously. However, here we have rebalanced only weekly. Had we a
perfect hedge, the portfolio would have paid off max[S
Terminal
− X, 0] (cell
B27); the actual hedge payoff (cell B28) is slightly different.
Pressing [Ctrl] + a works a macro that puts in a new set of random
numbers and runs a different simulation of the stock prices:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
GFEDCBA H
S, current stock price 40.00
X, exercise 45.00
r, interest rate 4.00%
k, dividend yield 0.00%
T, expiration 0.2308 <-- =12/52 Initial pricing of call using BS formula
Sigma 25%
BS value 0.51 <-- =bsmertoncall(B2,B3,B6,B4,B5,B7)
Weeks until expiration
Time until
expiration Stock price
Stock = <--
=C13*deltacall(C13,$B$3,
B13,$B$4,0,$B$7) Bond
Porfolio
value
Portfolio
cash flow
12 0.2308 40.000 7.98 -7.47 0.51 0.51
11 0.2115 39.615 6.51 -6.13 0.38 0.05 <-- =(D13*C14/C13-D14)+E13*EXP($B$4*(B13-B14))-E14
10 0.1923 40.607 8.46 -7.96 0.50 0.04 <-- =(D14*C15/C14-D15)+E14*EXP($B$4*(B14-B15))-E15
9 0.1731 38.963 4.00 -3.81 0.19 -0.04 <-- =(D15*C16/C15-D16)+E15*EXP($B$4*(B15-B16))-E16
8 0.1538 38.813 3.15 -3.02 0.14 0.04
7 0.1346 40.563 6.17 -5.89 0.28 -0.01
6 0.1154 41.377 7.71 -7.37 0.34 0.06
5 0.0962 43.321 14.89 -14.15 0.74 -0.04
4 0.0769 42.791 11.08 -10.63 0.45 0.10
3 0.0577 43.509 13.53 -13.03 0.51 0.12
2 0.0385 45.547 28.18 -26.95 1.23 -0.10
1 0.0192 46.943 42.06 -40.00 2.06 0.01
0 0.0000 47.101 2.17 <-- =D24*C25/C24+E24*EXP($B$4*(B24-B25))
Hedged position payoff 2.17 <-- =F25
Actual call payoff 2.10 <-- =MAX(C25-B3,0)
DELTA HEDGING A CALL
Hedging portfolio
At initial date, the stock and bond positions are set using the Black-Scholes
formula: Stock = SN(d
1
), Bond = -X*exp(-rT)N(d
2
).
At each subsequent date t, the stock position is adjusted to S
t
*
Δ
call
. The bond
position is adjusted so that the net cash flow of the portfolio is zero.
At the final date, the stock and bond portfolios are liquidated.
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FEDCBA
G
Weeks until expiration
Time until
expiration Stock price
Stock = <--
=C13*deltacall(C13,$B$3,
B13,$B$4,0,$B$7) Bond
Porfolio
value
Portfolio
cash flow
12 0.2308 40.000 7.98 -7.47 0.51 0.51
11 0.2115 38.989 5.15 -4.87 0.28 0.01
10 0.1923 41.125 10.00 -9.38 0.61 -0.05
9 0.1731 39.905 5.98 -5.67 0.31 0.00
8 0.1538 40.264 6.17 -5.87 0.30 0.06
7 0.1346 40.158 5.14 -4.91 0.23 0.06
6 0.1154 42.966 14.06 -13.31 0.75 -0.17
5 0.0962 43.185 14.21 -13.51 0.69 0.12
4 0.0769 41.125 4.58 -4.43 0.15 -0.14
3 0.0577 40.246 1.47 -1.44 0.03 0.01
2 0.0385 40.765 1.02 -1.00 0.02 0.03
1 0.0192 40.573 0.06 -0.06 0.00 0.01
0 0.0000 40.709 0.00
Hedged position payoff 0.00 <-- =F25
Actual call payoff 0.00 <-- =MAX(C25-B3,0)
Hedging Portfolio