Finance
ExpectedShortfall
calculate the expected shortfall
Calling Sequence
Parameters
Options
Description
Examples
References
Compatibility
ExpectedShortfall(pathfunction, pathgenerator, opts)
ExpectedShortfall(pathfunction, process, timegrid, opts)
ExpectedShortfall(pathfunction, process, timeinterval, opts)
ExpectedShortfall(expression, opts)
pathfunction
-
procedure; path function
pathgenerator
path generator data structure; path generator
process
one- or multi-dimensional stochastic process, or list or vector of one-dimensional stochastic processes
timegrid
range or time grid data structure; time grid
timeinterval
range; time interval
expression
algebraic expression; expression whose shortfall is to be estimated
opts
(optional) equation(s) of the form option = value where option is one of confidencelevel, replications, timesteps, or output; specify options for the ExpectedShortfall command
confidencelevel = realcons -- This option specifies the confidence level for which the expected shortfall is computed. The value of this option must be a real constant between 0 and 1. By default, a .99 confidence level is used.
replications = posint -- This option specifies the number of replications of the sample path. By default, only one replication of the sample path is generated.
timesteps = posint -- This option specifies the number of time steps. This option is ignored if an explicit time grid is specified. By default, only one time step is used.
output = value, standarddeviation, skewness, kurtosis, minimum, maximum, standarderror, or a list containing several of these quantities -- This option specifies the quantities returned by the ExpectedShortfall command. The output = all option forces the ExpectedShortfall command to return all of the available statistics.
The ExpectedShortfall(pathfunction, pathgenerator, opts) calling sequence computes a Monte Carlo estimate of the expected shortfall of a portfolio whose total value is governed by the specified stochastic process. It follows the same procedure as the SamplePath and ExpectedValue commands.
Generate a replication of the sample path using the specified path generator and store these values as a Maple Array, for example A. In the case of a one-dimensional process, A is a one-dimensional array of size n, where n is the number of points in the time grid (the number of time steps plus one). In the case of a multi-dimensional process, A is a two-dimensional array of size m,n, where m is the dimension of the underlying stochastic process and n is the same as in the one-dimensional case.
Compute the value pathfunction⁡A.
Repeat these two steps the specified number of times (see the replications option) and compute the mean average.
The ExpectedShortfall command also computes such statistics as standard deviation, skewness, kurtosis, minimum, maximum and standard error (see the output option).
The ExpectedShortfall(pathfunction, process, timegrid, opts) and ExpectedShortfall(pathfunction, process, timeinterval, opts) calling sequences first construct the corresponding path generator and then perform the same computations as above.
The parameter pathfunction must be a Maple procedure that accepts a one-dimensional array of floating-point numbers (sample path for the underlying process) and returns the corresponding value as a floating-point number. A path function can be used, for example, to compute expected values for some path-dependent payoffs.
The timegrid parameter can be used to pass non-homogeneous time grids to the simulation routines. It must be given as a data structure generated by the TimeGrid command.
The timeinterval parameter must be of type range T0..T1, where T0 and T1 are non-negative constants such that T0<T1. When the ExpectedValue⁡pathfunction,process,timeinterval,opts calling sequence is used, the uniform time grid between T0 and T1 (with time steps dt=T1−T0timesteps) is generated.
Note that if 0<T0, the value at T0 will be simulated using a single step of the default discretization method and hence can suffer from a significant discretization bias. Increasing the number of time steps will refine the grid between T0 and T1, but will have no effect on the value at T0. To reduce the bias, use a time interval of the form 0..T1.
The ExpectedShortfall(expression, opts) calling sequence attempts to extract all the stochastic variables involved in expression and generate the corresponding path generator and path function using the specified number of time steps. In particular, ExpectedShortfall will extract all time instances involved in expression and adjust them so that they belong to the grid.
All stochastic variables involved in expression should be of the form X⁡t, where t is some expression. If X is multi-dimensional stochastic, then the individual components of X can be accessed using the notation X⁡ti.
with⁡Finance:
Here is a simple one-dimensional stochastic process.
X≔WienerProcess⁡
X≔_W
ExpectedShortfall⁡X⁡3,timesteps=10
−0.262747381713126
Here are several replications of the sample path.
ExpectedShortfall⁡X⁡3,timesteps=10,replications=104
−4.56635306600560
Here is an example involving a multivariate stochastic process.
Σ≔1.0,0.5|0.5,1.0
Σ≔1.00.50.51.0
W≔WienerProcess⁡Σ
W≔_W0
ExpectedShortfall⁡W⁡31+W⁡32,replications=104
−7.99062671598827
Here is an example of a stochastic process that depends on two factors: one is the previously defined Wiener process; the second is a Poisson process.
J≔PoissonProcess⁡1.0
J≔_P
ExpectedShortfall⁡5⁢J⁡3−3+W⁡31,timesteps=100,replications=104
−17.4924646820118
S≔SampleValues⁡5⁢J⁡3−3+W⁡31,timesteps=100,replications=104
StatisticsHistogram⁡S,bincount=50
StatisticsDataSummary⁡S
mean=0.0279466202849899standarddeviation=8.91177087788190skewness=0.549503467646038kurtosis=3.32242144363525minimum=−20.8909815277844maximum=46.2811111672442cumulativeweight=10000.
Here are some expressions involving stochastic variables.
Y≔WienerProcess⁡
Y≔_W1
Z≔t↦exp⁡0.05⋅t+0.3⋅Y⁡t
Z≔t↦ⅇ0.05⋅t+0.3⋅Y⁡t
U≔t↦maximize⁡Z⁡u,u=0..t
ExpectedShortfall⁡U⁡3,timesteps=100,replications=104
1.
V≔t↦int⁡Z⁡u,u=0..tt
V≔t↦∫0tZ⁡uⅆut
ExpectedShortfall⁡V⁡3,timesteps=100,replications=104
0.513510368540462
This is the use of a path function.
testproc := proc(X) exp(X[11]); end proc;
testproc ≔ procXexp⁡X[11]end proc
S≔ExpectedShortfall⁡testproc,Y,0..3,timesteps=10,replications=104
S≔0.00958278261974139
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.
Kloeden, P., and Platen, E., Numerical Solution of Stochastic Differential Equations, New York: Springer-Verlag, 1999.
The Finance[ExpectedShortfall] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
Finance[BrownianMotion]
Finance[CEVProcess]
Finance[DeterministicProcess]
Finance[Diffusion]
Finance[Drift]
Finance[GaussianShortRateProcess]
Finance[GeometricBrownianMotion]
Finance[HestonProcess]
Finance[OrnsteinUhlenbeckProcess]
Finance[PathPlot]
Finance[SamplePath]
Finance[SampleValues]
Finance[SquareRootDiffusion]
Finance[StochasticProcesses]
Finance[ValueAtRisk]
Finance[WienerProcess]
Download Help Document