S30QCF computes the
Bjerksund and Stensland (2002) approximation to the price of an American option.
SUBROUTINE S30QCF ( |
CALPUT, M, N, X, S, T, SIGMA, R, Q, P, LDP, IFAIL) |
INTEGER |
M, N, LDP, IFAIL |
REAL (KIND=nag_wp) |
X(M), S, T(N), SIGMA, R, Q, P(LDP,N) |
CHARACTER(1) |
CALPUT |
|
S30QCF computes the price of an American option using the closed form approximation of
Bjerksund and Stensland (2002). The time to maturity,
, is divided into two periods, each with a flat early exercise boundary, by choosing a time
, such that
. The two boundary values are defined as
,
with
where
with
, the cost of carry, where
is the risk-free interest rate and
is the annual dividend rate. Here
is the strike price and
is the annual volatility.
The price of an American call option is approximated as
where
,
and
are as defined in
Bjerksund and Stensland (2002).
The price of a put option is obtained by the put-call transformation,
Bjerksund P and Stensland G (2002) Closed form valuation of American options
Discussion Paper 2002/09 NHH Bergen Norway http://www.nhh.no/
Genz A (2004) Numerical computation of rectangular bivariate and trivariate Normal and probabilities Statistics and Computing 14 151–160
- 1: CALPUT – CHARACTER(1)Input
On entry: determines whether the option is a call or a put.
- A call. The holder has a right to buy.
- A put. The holder has a right to sell.
Constraint:
or .
- 2: M – INTEGERInput
On entry: the number of strike prices to be used.
Constraint:
.
- 3: N – INTEGERInput
On entry: the number of times to expiry to be used.
Constraint:
.
- 4: X(M) – REAL (KIND=nag_wp) arrayInput
On entry: must contain
, the th strike price, for .
Constraint:
, where , the safe range parameter, for .
- 5: S – REAL (KIND=nag_wp)Input
On entry: , the price of the underlying asset.
Constraint:
, where
, the safe range parameter and
where
is as defined in
Section 3.
- 6: T(N) – REAL (KIND=nag_wp) arrayInput
On entry: must contain
, the th time, in years, to expiry, for .
Constraint:
, where , the safe range parameter, for .
- 7: SIGMA – REAL (KIND=nag_wp)Input
On entry: , the volatility of the underlying asset. Note that a rate of 15% should be entered as 0.15.
Constraint:
.
- 8: R – REAL (KIND=nag_wp)Input
On entry: , the annual risk-free interest rate, continuously compounded. Note that a rate of 5% should be entered as 0.05.
Constraint:
.
- 9: Q – REAL (KIND=nag_wp)Input
On entry: , the annual continuous yield rate. Note that a rate of 8% should be entered as 0.08.
Constraint:
.
- 10: P(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
P contains the computed option prices.
- 11: LDP – INTEGERInput
On entry: the first dimension of the array
P as declared in the (sub)program from which S30QCF is called.
Constraint:
.
- 12: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
The accuracy of the output will be bounded by the accuracy of the cumulative bivariate Normal distribution function. The algorithm of
Genz (2004) is used, as described in the document for
G01HAF, giving a maximum absolute error of less than
. The univariate cumulative Normal distribution function also forms part of the evaluation (see
S15ABF and
S15ADF).
None.