Skip to content
Prev 3966 / 15274 Next

VaR again

megh wrote:
My first comment is that your Monte Carlo simulation makes the
assumption that the simulation is normally distributed.  Currency
markets are almost all much fatter tailed than that.  You might want to
consider a different VaR method that takes the fat tails into account.
Many people believe that because Monte Carlo VaR methods are
"non-parametric" that there are no distributional assumptions built in,
but a quick glance at your code should make it obvious that this is not
true, and how dangerous it is.

Next, If you want to separate the two components, and do it for a large
portfolio that may be mixed in different currencies  and instrument
types, you should be calculating VaR in percentages, using returns.
Then you calculate the market risk to the portfolio/instrument and the
currency risk to the portfolio/instrument separately. You can always
turn the aggregate number back to dollars/pounds/whatever if you
need/want to.  To get a univariate VaR number, you can aggregate the
positions by weight and calculate a univariate return for the portfolio
in a given currency, from which VaR may be taken (but see below on
portfolio VaR).

I think it is rather important to look at the actual observed (or
estimated) variance, skewness, and kurtosis of each instrument in
working out the VaR for that instrument, via simulation or any other
method.  Then, you can separately work out the currency risk to your
portfolio once you aggregate the risks of each position in a given currency.

Finally, if you are doing this in a portfolio context, the co-moments of
the instruments have a massive effect on the total portfolio risk.
There is a large literature on "Portfolio VaR" or "Component VaR" that
discusses this and its solution. Component VaR is subadditive, so you
can dissect the risk as you ask for above.

Regards,

    - Brian