Compute expected shortfall (ES) and Value at Risk (VaR) from a
quantile function, distribution function, random number generator or
probability density function. ES is also known as Conditional Value
at Risk (CVaR). Virtually any continuous distribution can be
specified. The functions are vectorised over the arguments.
The computations are done directly from the definitions, see e.g. Acerbi
and Tasche (2002). Some support for GARCH models is provided, as well.
The vignette
Guide_cvar shipping
with the package gives illustrative examples (can also be opened from R with
vignette("Guide_cvar", package = "cvar")).
Package cvar is a small R package with, essentially two
functions — ES for computing the expected shortfall
and VaR for Value at Risk. The user specifies the
distribution by supplying one of the functions that define a
continuous distribution—currently this can be a quantile
function (qf), cumulative distribution function (cdf) or
probability density function (pdf). Virtually any continuous
distribution can be specified.
The functions are vectorised over the parameters of the
distributions, making bulk computations more convenient, for
example for forecasting or model evaluation.
The name of this package, “cvar”, comes from Conditional Value at
Risk (CVaR), which is an alternative term for expected shortfall.
We chose to use the standard names ES and VaR,
despite the possibility for name clashes with same named
functions in other packages, rather than invent possibly
difficult to remember alternatives. Just call the functions as
cvar::ES and cvar::VaR if necessary.
Locations-scale transformations can be specified separately
from the other distribution parameters. This is useful when
such parameters are not provided directly by the distribution
at hand. The use of these parameters often leads to more
efficient computations and better numerical accuracy even if
the distribution has its own parameters for this purpose. Some
of the examples for VaR and ES illustrate this
for the Gaussian distribution.
Since VaR is a quantile, functions computing it for a given
distribution are convenience functions. VaR exported by
cvar could be attractive in certain workflows because of
its vectorised distribution parameters, the location-scale
transformation and the possibility to compute it from cdf’s
when quantile functions are not available.
关于
用于根据分位数函数、分布函数、随机数生成器或密度函数计算 Expected Shortfall(ES/CVaR)和 Value at Risk(VaR)的统计工具,并提供一定的 GARCH 模型支持。
Overview
Compute expected shortfall (ES) and Value at Risk (VaR) from a quantile function, distribution function, random number generator or probability density function. ES is also known as Conditional Value at Risk (CVaR). Virtually any continuous distribution can be specified. The functions are vectorised over the arguments. The computations are done directly from the definitions, see e.g. Acerbi and Tasche (2002). Some support for GARCH models is provided, as well.
Installing cvar
The latest stable version is on CRAN.
The vignette Guide_cvar shipping with the package gives illustrative examples (can also be opened from R with
vignette("Guide_cvar", package = "cvar")).You can install the development version of
cvarfrom Github:Overview
Package
cvaris a smallRpackage with, essentially two functions —ESfor computing the expected shortfall andVaRfor Value at Risk. The user specifies the distribution by supplying one of the functions that define a continuous distribution—currently this can be a quantile function (qf), cumulative distribution function (cdf) or probability density function (pdf). Virtually any continuous distribution can be specified.The functions are vectorised over the parameters of the distributions, making bulk computations more convenient, for example for forecasting or model evaluation.
The name of this package, “cvar”, comes from Conditional Value at Risk (CVaR), which is an alternative term for expected shortfall.
We chose to use the standard names
ESandVaR, despite the possibility for name clashes with same named functions in other packages, rather than invent possibly difficult to remember alternatives. Just call the functions ascvar::ESandcvar::VaRif necessary.Locations-scale transformations can be specified separately from the other distribution parameters. This is useful when such parameters are not provided directly by the distribution at hand. The use of these parameters often leads to more efficient computations and better numerical accuracy even if the distribution has its own parameters for this purpose. Some of the examples for
VaRandESillustrate this for the Gaussian distribution.Since VaR is a quantile, functions computing it for a given distribution are convenience functions.
VaRexported bycvarcould be attractive in certain workflows because of its vectorised distribution parameters, the location-scale transformation and the possibility to compute it from cdf’s when quantile functions are not available.