For options on other financial instruments than stocks, we have to allow for the fact that the underlying may have payouts during the life of the option. For example, in working with commodity options, there is often some storage costs if one wanted to hedge the option by buying the underlying.
The simplest case is when the payouts are done continuously. To value an European option, a simple
adjustment to the Black Scholes formula is all that is needed. Let
be the continuous payout
of the underlying commodity.
Call and put prices for European options are then given by formula 8.1, which are implemented in code 8.1.
The case of continuous dividends is easiest to deal with. It corresponds to the continuous payouts we have looked at previously. The problem is the fact that most dividends are paid at discrete dates.
To adjust the price of an European option for known dividends, we merely subtract the present value of the dividends from the current price of the underlying asset in calculating the Black Scholes value.
American options are much harder to deal with than European ones. The problem is that it may be optimal to use (exercise) the option before the final expiry date. This optimal exercise policy will affect the value of the option, and the exercise policy needs to be known when solving the pde. There is therefore no general analytical solutions for American call and put options. There is some special cases. For American call options on assets that do not have any payouts, the American call price is the same as the European one, since the optimal exercise policy is to not exercise. For American Put is this not the case, it may pay to exercise them early. When the underlying asset has payouts, it may also pay to exercise the option early. There is one known known analytical price for American call options, which is the case of a call on a stock that pays a known dividend, which is discussed next. In all other cases the American price has to be approximated using one of the techniques discussed in later chapters: Binomial approximation, numerical solution of the partial differential equation, or another numerical approximation.
When a stock pays dividend, a call option on the stock may be optimally exercised just before the stock goes ex-dividend. While the general dividend problem is usually approximated somehow, for the special case of one dividend payment during the life of an option an analytical solution is available, due to Roll-Geske-Whaley.
If we let
be the stock price,
the exercise price,
the amount of dividend paid,
the
time of dividend payment,
the maturity date of option, we find
The time to dividend payment
and the time to maturity
.
A first check of early exercise is:
If the inequality is not fulfilled, one performs the calculation shown in
formula 8.2 and implemented in code 8.3
For an European option written on a futures contract, we use an adjustment of
the Black Scholes solution, which was developed in Black (1976). Essentially we replace
with
in the Black Scholes formula, and get the formula shown
in 8.3 and implemented in code 8.4.
Another relatively simple adjustment of the Black Scholes formula occurs when the underlying security is a currency exchange rate (spot rate). In this case one adjusts the Black-Scholes equation for the interest-rate differential.
Let
be the spot exchange rate, and now let
be the domestic interest rate and
the foreign
interest rate.
is then the volatility of changes in the exchange rate. The calculation of the
price of an European call option is then shown in formula 8.4 and
implented in code 8.5.
A perpetal option is one with no maturity date, it is inifinitely lived. Of course, only American
perpetual options make any sense, European perpetual options would probably be hard to
sell.8.1
For both puts and calls analytical formulas has been developed. We consider the price of an American
call, and discuss the put in an exercise. Formula 8.5 gives the analytical
solution.
A first formulation of an analytical call price with dividends was in Roll (1977). This had some errors, that were partially corrected in Geske (1979), before Whaley (1981) gave a final, correct formula. See Hull (2003) for a textbook summary.
Black (1976) is the original development of the futures option.
The original formulations of European foreign currency option prices are in Garman and Kohlhagen (1983) and Grabbe (1983).
The price of a perpetual put was first shown in Merton (1973). For a perpetual call see McDonald and Siegel (1986). The notation here follows the summary in (McDonald, 2002, pg. 393).
2003-10-22