Finance[OrnsteinUhlenbeckProcess] - create new Ornstein-Uhlenbeck process
|
Calling Sequence
|
|
OrnsteinUhlenbeckProcess(, mu, theta, sigma, opts)
|
|
Parameters
|
|
|
-
|
algebraic expression; initial value
|
mu
|
-
|
algebraic expression; long-running mean
|
theta
|
-
|
algebraic expression; the speed of mean reversion
|
sigma
|
-
|
algebraic expression; the volatility parameter
|
opts
|
-
|
(optional) equation(s) of the form option = value where option is scheme; specify options for the OrnsteinUhlenbeckProcess command
|
|
|
|
|
Description
|
|
•
|
The OrnsteinUhlenbeckProcess command creates an Ornstein-Uhlenbeck process. This is a stochastic process governed by the stochastic differential equation (SDE)
|
where theta, sigma, and mu are real constants.
•
|
The parameter defines the initial value of the underlying stochastic process.
|
•
|
The parameter theta is the speed of mean-reversion. The parameter mu is the long-running mean. The parameter sigma is the volatility. In general, theta, mu, and sigma can be any algebraic expressions. However, if the process is to be simulated, these parameters must be assigned numeric values.
|
•
|
The scheme option specifies the discretization scheme used for simulation of this process. By default the standard Euler scheme is used. When scheme is set to unbiased the transition density will be used to simulate a value given .
|
|
|
Options
|
|
•
|
scheme = unbiased or Euler -- This option specifies which discretization scheme should be used for simulating this process.
|
|
|
Compatibility
|
|
•
|
The Finance[OrnsteinUhlenbeckProcess] command was introduced in Maple 15.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
>
|
|
| (7) |
>
|
|
Here is an example using the transition density.
>
|
|
| (8) |
>
|
|
| (9) |
>
|
|
| (10) |
>
|
|
| (11) |
>
|
|
| (12) |
>
|
|
| (13) |
>
|
|
| (14) |
>
|
|
>
|
|
>
|
|
>
|
|
Here is a realization of the Ornstein-Uhlenbeck process as a subordinated Wiener process.
>
|
|
| (15) |
>
|
|
| (16) |
>
|
|
| (17) |
>
|
|
| (18) |
>
|
|
| (19) |
>
|
|
| (20) |
>
|
|
| (21) |
>
|
|
| (22) |
>
|
|
>
|
|
>
|
|
>
|
|
| (23) |
>
|
|
| (24) |
|
|
See Also
|
|
Finance[BlackScholesProcess], Finance[BrownianMotion], Finance[Diffusion], Finance[Drift], Finance[ExpectedValue], Finance[GeometricBrownianMotion], Finance[HullWhiteProcess], Finance[ItoProcess], Finance[SamplePath], Finance[SampleValues], Finance[SquareRootDiffusion], Finance[StochasticProcesses], Finance[WienerProcess]
|
|
References
|
|
|
Brigo, D., Mercurio, F., Interest Rate Models: Theory and Practice. New York: Springer-Verlag, 2001.
|
|
Glasserman, P., Monte Carlo Methods in Financial Engineering. New York: Springer-Verlag, 2004.
|
|
Hull, J., Options, Futures, and Other Derivatives, 5th. edition. Upper Saddle River, New Jersey: Prentice Hall, 2003.
|
|
Vasicek, O.A., An Equilibrium Characterization of the Term Structure, Journal of Financial Economics, 5 (1977), pp 177-188.
|
|
|