NAG Library Routine Document
d03nef
(dim1_blackscholes_means)
1
Purpose
d03nef computes average values of a continuous function of time over the remaining life of an option. It is used together with
d03ndf to value options with time-dependent arguments.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
ntd,
lwork | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
t0,
tmat,
td(ntd),
phid(ntd) | Real (Kind=nag_wp), Intent (Out) | :: |
phiav(3),
work(lwork) |
|
C Header Interface
#include nagmk26.h
void |
d03nef_ (
const double *t0,
const double *tmat,
const Integer *ntd,
const double td[],
const double phid[],
double phiav[],
double work[],
const Integer *lwork,
Integer *ifail) |
|
3
Description
d03nef computes the quantities
from a given set of values
phid of a continuous time-dependent function
at a set of discrete points
td, where
is the current time and
is the maturity time. Thus
and
are first and second order averages of
over the remaining life of an option.
The routine may be used in conjunction with
d03ndf in order to value an option in the case where the risk-free interest rate
, the continuous dividend
, or the stock volatility
is time-dependent and is described by values at a set of discrete times (see
Section 9.2). This is illustrated in
Section 10.
4
References
None.
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: the current time .
Constraint:
.
- 2: – Real (Kind=nag_wp)Input
-
On entry: the maturity time .
Constraint:
.
- 3: – IntegerInput
-
On entry: the number of discrete times at which is given.
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the discrete times at which is specified.
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayInput
-
On entry: must contain the value of at time , for .
- 6: – Real (Kind=nag_wp) arrayOutput
-
On exit:
contains the value of
interpolated to
,
contains the first-order average
and
contains the second-order average
, where:
- 7: – Real (Kind=nag_wp) arrayWorkspace
- 8: – IntegerInput
-
On entry: the dimension of the array
work as declared in the (sub)program from which
d03nef is called.
Constraint:
.
- 9: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, | t0 lies outside the range [], |
or | tmat lies outside the range [], |
or | , |
or | td badly ordered, |
or | . |
-
Unexpected failure in internal call to
e01baf or
e02bbf.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
If then the error in the approximation of and is , where , for . The approximation is exact for polynomials of degree up to .
The third quantity is , and exact for linear functions.
8
Parallelism and Performance
d03nef is not threaded in any implementation.
9.1
Timing
The time taken is proportional to
ntd.
9.2
Suppose you wish to evaluate the analytic solution of the Black–Scholes equation in the case when the risk-free interest rate
is a known function of time, and is represented as a set of values at discrete times. A call to
d03nef providing these values in
phid produces an output array
phiav suitable for use as the argument
r in a subsequent call to
d03ndf.
Time-dependent values of the continuous dividend and the volatility may be handled in the same way.
9.3
Algorithmic Details
The
ntd data points are fitted with a cubic B-spline using the routine
e01baf. Evaluation is then performed using
e02bbf, and the definite integrals are computed using direct integration of the cubic splines in each interval. The special case of
is handled by interpolating
at that point.
10
Example
This example demonstrates the use of the routine in conjunction with
d03ndf to solve the Black–Scholes equation for valuation of a
-month American call option on a non-dividend-paying stock with an exercise price of $50. The risk-free interest rate varies linearly with time and the stock volatility has a quadratic variation. Since these functions are integrated exactly by
d03nef the solution of the Black–Scholes equation by
d03ndf is also exact.
The option is valued at a range of times and stock prices.
10.1
Program Text
Program Text (d03nefe.f90)
10.2
Program Data
Program Data (d03nefe.d)
10.3
Program Results
Program Results (d03nefe.r)