Odf 10lecture6
Odf 10lecture6
Odf 10lecture6
Defining Greeks
Let C (t, S, σ, r) be the price of an option at the current time t with underlying asset price S, volatility σ
and risk-free interest rate r. The delta ∆ of an option is the rate of change of the option price with respect
to the underlying asset price
∂C
∆= .
∂S
Delta hedging involves creating a position, called delta-neutral position, with zero delta. Because the delta
of the underlying asset is 1.0, one way of hedging is to take a position of −∆ in the underlying asset for each
long option being hedged. The delta of an option changes over time. This means that the position in the
underlying asset has to be frequently adjusted.
Once an option position has been made delta neutral, the next stage is often to look at its gamma Γ.
The gamma Γ of an option is the rate of change of its delta with respect to the price of the underlying asset
∂2C
Γ= .
∂S 2
It is a measure of the curvature of the relationship between the option price and the asset price. The impact
of this curvature on the performance of delta hedging can be reduced by making an option position gamma
neutral. If Γ is the gamma of the position being hedged, the reduction is usually achieved by taking a
position in a traded option that has a gamma of −Γ.
Delta and gamma hedging are both based on the assumption that the volatility of the underlying asset
is constant. In practice, volatilities do change over time. The vega of an option measures the rate of change
of option value with respect to volatility
∂C
vega = .
∂σ
A trader who wishes to hedge an option position against volatility changes can make the position vega
neutral. As with the procedure for creating gamma neutrality, this usually involves taking an offsetting
position in a traded option. If the trader wishes to achieve both gamma and vega neutrality, two traded
options are usually required.
Two other measures of the risk of an option position are theta Θ and rho ρ. Theta measures the rate of
change of the value of the option value with respect to the passage of time
∂C
Θ=
∂t
1
and rho measures the rate of change of the option value with respect to the interest rate
∂C
ρ=
∂r
with all else remaining constant.
In practice, option traders usually rebalance their portfolios at least once a day to maintain delta neu-
trality. It is usually not feasible to maintain gamma and vega neutrality on a regular basis. Typically a
trader monitors these measures. If they get too large, either corrective action is taken or trading is curtailed.
Computing Greeks
We may approximate the greeks by finite difference ratios.
C (t, S + δ, σ, r) − C (t, S − δ, σ, r)
∆≈
2δ
C (t, S + δ, σ, r) − 2C (t, S, σ, r) + C (t, S − δ, σ, r)
Γ≈
δ2
C (t, S, σ + δ, r) − 2C (t, S, σ − δ, r)
vega ≈
2δ
C (t + δ, S, σ, r) − C (t, S, σ, r)
Θ≈
δ
C (t, S, σ, r + δ) − C (t, S, σ, r − δ)
ρ≈
2δ
where C (t, S + δ, σ, r) is the Monte Carlo estimate using an initial asset price of S + δ and δ > 0. Other
C’s are defined similarly. Note that every price C above should be computed using the same set of random
numbers. If this is not done then the random error in the prices from the Monte Carlo simulation can be a
large proportion of the price differences in the numerator of the finite difference ratios leading to very large
errors in the sensitivity estimates. By using the same random numbers, the pricing errors will tend to cancel
out.
A more efficient way to compute delta is by applying the discounted expectation approach. We can
express the standard European call delta as follows.
∂C ∂
e−rT E [(ST − K) 1ST >K ]
∆= = (1)
∂S ∂S
where
ST = SeνT +σZT .
Substituting ST into equation (1) and differentiating, we obtain
h νT +σZ i
∆ = e−rT E e
T
1ST >K (2)
Hence, equation (2) is our basis for the Monte Carlo simulation of ∆. You may also apply the same technique
for vega, theta and rho. This technique cannot be used for the calculation of gamma because differentiating
equation (2) again leads to the expectation of a Dirac delta function which cannot easily be evaluated by
Monte Carlo simulation. We can, however, use a finite difference ratio in terms of delta.
Exercise 1 Compute the delta of a one year maturity, at-the-money European call option with the current
asset price at $100 and volatility 20%. The continuously compounded interest rate is assumed to be 6% per
annum and the asset pays a continuous dividend yield of 3% per annum. Use 100 simulations and one time
step.
The antithetic variate methods can be applied in the same way as we had discussed before.