How To Model VaR
There are three primary types of VaR modeling: the parametric method (also known as variance-covariance method), and simulation-based methods, such as historical VaR simulation, and Monte-Carlo simulation.
VaR calculation is based on two types of data:
- Exposures, which can be simply list of assets and their quantities, or derivatives contracts in the portfolio
- Histories of the prices of those assets
There are several ways to go about calculating VaR.
- The parametric VaR method utilizes the standard deviation and correlations of assets, forming the covariance matrix. In other words the potential losses are assumed to be normally distributed and applied against the mean price of an asset with calculated correlations. The covariance matrix can be generated from historical data and designated scenarios.
- The simulation-based VaR methods is based on scenarios that describe the market movements, such as ETHUSD moved +5% while BTCUSD moved -5%. The scenario is applied to the base market and the portfolio is re-evaluated with the changed market. The change of the value of the portfolio is measured as PnL (profit and loss) impact from the scenario.
- The first simulation-based method is to use the historical scenarios to perform simulation. This method assumes that the past event/market moves will repeat in the future as a plausible scenario and looks retroactively at market movement. For example, you could look at the past year’s worth of data on market movement, create scenarios based on the market movement for a period of time (i.e. 1 day, 10 day, 30 day) and apply them to current holdings as a simulation.
- The second simulation-based method is to employ complex and computationally-intensive Monte Carlo based-simulations to calculate potential gains, losses, and likelihood of occurring based on anticipated behavior.
While VaR can be a useful tool, it is important to consider its limitations.
- Because VaR often relies on historical data it can be a poor predictor of edge-case, or extreme market fluctuations. Historical data quality issues (wrong, missing, staled, misalignment due to different snapping or market closing time) could result in poor performance of VaR models.
- Different VaR methods has various assumptions to the underlying distribution of the market move which is a theoretical overlay to the market reality. Parametric method has the assumptions of normal distribution of the returns and therefore suffered most from this limitation.
- Historical scenarios does not assume the distribution but the selected historical period may not contain sufficient number of the stress events. Monte-Carlo based simulation can be designed to sample normal distribution with designated covariance matrix to mitigate for this limitation.
- VaR is calculated based on the positions in the portfolio at a time of snapping. If there is many intra-day trading activities and market movements, VaR model is not sufficient to estimate the risk. Increasing the frequency of the calculation with position and market updates will be necessary.
- The parametric VaR can only evaluate linear exposures' change of value, lacking of support of change from high-order risk factor change. The simulation-based VaR methods have a choice of using approximated re-valuation or full-revaluation based on pricing model so the performance of such VaR models is better while being more computational intensive.
- Backtesting of the VaR model is an integral part of the VaR model. The limitations described above would be tested in real world performance of the VaR model in terms of the magnitude and number of exceptions of Hypothetical PnL ("Hypo PnL") is more than what VaR model estimates. The downside risk of Hypo PnL is more negative than the VaR needs to be investigated thoroughly to attribute to reasons.
is a function of the standard deviation
, the z-score on the desired confidence level
and the present value of the portfolio
.
For a portfolio of assets, we can combine
and
with below formula.
is the covariance matrix of the
assets.
We calculate VaR from the
vector.
where:
- : a vector of potential profit and loss from VaR simulations. The single value is calculated as the change infrom market changes
- : Probability function
- : confidence level.
Mathematically,
is the
-quantile of vector of
. The VaR at level
is the smallest number
such that the probability
does not exceed
is at least
.
For simplicity, below is the formula for the Historical 10-day VaR of the Trading book based on the last year sampling.
where:
- : potential profit or loss of a portfolio on the observation date;
- : the number of crypto assets in the trading book;
- : the observation number applied retrospectively, for example, 30th of June 2021 isandis 29th of June 2021;
- : the quantity of the asset in the book;
- : the reporting date;
- : price of the asset m at the base case date;
- : Return of the asset during the period of observation days ;
Note that a negative entails a loss. Then the 99% worst case 10-day VaR with 365 scenarios could be determined as negated weighted average between 4th and 5th largest loss.
The Monte-Carlo VaR simulation differs from Historical VaR simulation by how the scenarios are generated. Instead of historical scenarios, the scenario of asset returns are generated from the covariance matrix calculated from the historical data (more to be found in our article about Correlation/Covariance Matrix). With covariance matrix
, we can decompose it and form the transformation matrix
.
The correlated random number
can be obtained from uncorrelated random number
by
The correlated random number
can be used as scenarios of market movements. The rest of the model on consuming the data and calculate the
is the same.
Discord Handle | ETH Address | Reward | Contribution |
---|---|---|---|
atulemis#0983 | 0x5fb7584838fB467e90bb8a1df3a278482e34E856 | 0 $CMK (internal) | Original version |
kunlun#8324 | 0x109B3C39d675A2FF16354E116d080B94d238a7c9 | 0 $CMK (internal) | Add model considerations, Monte-Carlo VaR and Parametric VaR |