| Contents | Index |
[Paths, Times, Z] = SDE.simByEuler(NPERIODS)
[Paths, Times, Z] = SDE.simByEuler(NPERIODS, 'Name1', Value1, 'Name2', Value2, ...)
All classes in the SDE Class Hierarchy.
This method simulates any vector-valued SDE of the form
![]()
where:
X is an NVARS-by-1 state vector of process variables (for example, short rates or equity prices) to simulate.
W is an NBROWNS-by-1 Brownian motion vector.
F is an NVARS-by-1 vector-valued drift-rate function.
G is an NVARS-by-NBROWNS matrix-valued diffusion-rate function.
simByEuler simulates NTRIALS sample paths of NVARS correlated state variables driven by NBROWNS Brownian motion sources of risk over NPERIODS consecutive observation periods, using the Euler approach to approximate continuous-time stochastic processes.
| SDE | Stochastic differential equation object created with the sdeddo constructor. |
| NPERIODS | Positive scalar integer number of simulation periods. The value of NPERIODS determines the number of rows of the simulated output series. |
Specify optional inputs as matching parameter name/value pairs as follows:
Specify the parameter name as a character string, followed by its corresponding value.
You can specify parameter name/value pairs in any order.
Parameter names are case insensitive.
You can specify unambiguous partial string matches.
Valid parameter names are:
| NTRIALS | Positive scalar integer number of simulated trials (sample paths) of NPERIODS observations each. If you do not specify a value for this argument, the default is 1, indicating a single path of correlated state variables. |
| DeltaTime | Scalar or NPERIODS-by-1 column vector of positive time increments between observations. DeltaTime represents the familiar dt found in stochastic differential equations, and determines the times at which the simulated paths of the output state variables are reported. If you do not specify a value for this argument, the default is 1. |
| NSTEPS | Positive scalar integer number of intermediate time steps within each time increment dt (specified as DeltaTime). The simByEuler method partitions each time increment dt into NSTEPS subintervals of length dt/NSTEPS, and refines the simulation by evaluating the simulated state vector at NSTEPS - 1 intermediate points. Although simByEuler does not report the output state vector at these intermediate points, the refinement improves accuracy by allowing the simulation to more closely approximate the underlying continuous-time process. If you do not specify a value for NSTEPS, the default is 1, indicating no intermediate evaluation. |
| Antithetic | Scalar logical flag that indicates whether simByEuler uses
antithetic sampling to generate the Gaussian random variates that
drive the Brownian motion vector (Wiener processes). When Antithetic is TRUE (logical 1), simByEuler performs sampling such that all primary and antithetic paths are simulated and stored in successive matching pairs:
If you specify Antithetic to be any value other than TRUE, simByEuler assumes that it is FALSE (logical 0) by default, and does not perform antithetic sampling. When you specify an input noise process (see Z), simByEuler ignores the value of Antithetic. |
| Z | Direct specification of the dependent random noise process
used to generate the Brownian motion vector (Wiener process) that
drives the simulation. Specify this argument as a function, or as
an (NPERIODS * NSTEPS)-by-NBROWNS-by-NTRIALS three-dimensional
array of dependent random variates. If you specify Z as
a function, it must return an NBROWNS-by-1 column
vector, and you must call it with two inputs:
If you do not specify a value for Z, simByEuler generates correlated Gaussian variates based on the Correlation member of the SDE object. |
| StorePaths | Scalar logical flag that indicates how the output array Paths is stored and returned to the caller. If StorePaths is TRUE (the default value) or is unspecified, simByEuler returns Paths as a three-dimensional time series array. If StorePaths is FALSE (logical 0), simByEuler returns the Paths output array as an empty matrix. |
| Processes | Function or cell array of functions that indicates a sequence
of end-of-period processes or state vector adjustments of the form
If you specify more than one processing function, simByEuler invokes the functions in the order in which they appear in the cell array. You can use this argument to specify boundary conditions, prevent negative prices, accumulate statistics, plot graphs, and more. If you do not specify a processing function, simByEuler makes no adjustments and performs no processing. |
| Paths | (NPERIODS + 1)-by-NVARS-by-NTRIALS three-dimensional time series array, consisting of simulated paths of correlated state variables. For a given trial, each row of Paths is the transpose of the state vector Xt at time t. When the input flag StorePaths = FALSE, simByEuler returns Paths as an empty matrix. |
| Times | (NPERIODS + 1)-by-1 column vector of observation times associated with the simulated paths. Each element of Times is associated with the corresponding row of Paths. |
| Z | (NPERIODS * NSTEPS)-by-NBROWNS-by-NTRIALS three-dimensional time series array of dependent random variates used to generate the Brownian motion vector (Wiener processes) that drive the simulation. |
This simulation engine provides a discrete-time approximation of the underlying generalized continuous-time process. The simulation is derived directly from the stochastic differential equation of motion. Thus, the discrete-time process approaches the true continuous-time process only as DeltaTime approaches zero.
The input argument Z allows you to directly specify the noise-generation process. This process takes precedence over the Correlation parameter of the SDE object and the value of the Antithetic input flag. If you do not specify a value for Z, simByEuler generates correlated Gaussian variates, with or without antithetic sampling as requested.
The end-of-period Processes argument allows you to terminate a given trial early. At the end of each time step, simByEuler tests the state vector Xt for an all-NaN condition. Thus, to signal an early termination of a given trial, all elements of the state vector Xt must be NaN. This test enables a user-defined Processes function to signal early termination of a trial, and offers significant performance benefits in some situations (for example, pricing down-and-out barrier options).
Implementing Multidimensional Equity Market Models, Implementation 5: Using the simByEuler Method
View demos and recorded presentations led by industry experts.
Now On Demand
Network with industry peers and learn the latest applications of the leading software product for computational finance.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |