Market Risk : Estimate VaR using a historical simulation approach

 What is VaR?

Value at Risk (VaR) measures the potential loss in value of a portfolio over a defined time period for a given confidence level. It answers the question:
"How much could I lose with x%x\% confidence over tt days?"


Historical Simulation Approach

This is a non-parametric method that uses actual historical returns to estimate potential future losses. It assumes that the past distribution of returns is representative of the future.


Steps to Estimate VaR using Historical Simulation

  1. Collect Historical Data

    • Gather historical price data for the assets in the portfolio.
    • Calculate daily returns for each asset using: rt=PtPt1Pt1r_t = \frac{P_t - P_{t-1}}{P_{t-1}} where PtP_t is the price on day tt.
  2. Simulate Portfolio Returns

    • Compute the daily portfolio return for each historical period. For a portfolio with nn assets: Rt=i=1nwiri,tR_t = \sum_{i=1}^n w_i \cdot r_{i,t} where wiw_i is the portfolio weight of asset ii, and ri,tr_{i,t} is its return on day tt.
  3. Rank Historical Returns

    • Sort the historical portfolio returns RtR_t in ascending order.
  4. Determine the Confidence Level

    • Choose the confidence level α\alpha (e.g., 95% or 99%).
    • Identify the qq-th percentile of the sorted returns where: q=(1α)×Nq = (1 - \alpha) \times N Here, NN is the total number of historical returns.
  5. Estimate VaR

    • The qq-th percentile value in the sorted returns represents the VaR. This is the maximum loss at the given confidence level over the specified time horizon.

Example

Scenario:

  • You have a portfolio with a single asset.
  • Historical daily returns over the last 100 days are sorted in ascending order.
  • Confidence level: 95%.

Steps:

  1. With 95% confidence, q=(10.95)×100=5q = (1 - 0.95) \times 100 = 5.
  2. The 5th percentile corresponds to the 5th value in the sorted returns.
  3. If the 5th lowest return is 3.2%-3.2\%, then: VaR=3.2%×Portfolio Value.\text{VaR} = -3.2\% \times \text{Portfolio Value}.

Advantages of Historical Simulation

  1. No assumption about the distribution of returns.
  2. Directly uses historical data, which captures real-world characteristics like skewness or kurtosis.

Limitations

  1. Relies on the assumption that the future resembles the past.
  2. Sensitive to the choice of historical window length.
  3. Cannot model scenarios outside historical data.

Comments

Popular posts from this blog

Market Risk Problem 1 - Calculate VaR using Parametric approach

Market Risk : Estimate VaR using a Parametric Approach