Skip to content

Risk Measures

Value at Risk

If Y is a loss function, and β(0,1), we define,

VaRβ(Y):=min{γ:P(Yγ)1β}

Conditional Value at Risk (CVaR)

CVaRβ(Y):=E(YYVaRβ(Y))

As an Optimization Problem

View VaR and CVaR as the solution to an optimization problem,

CVaRβ(Y)=minγ(γ+11βE[max(Yγ,0)])

The optimizer here γ¯ is VaRβ(Y).

Please see the coding example in the next post how we formulate the problem in practice. Here the max function is not linear, and we do need another variable say z=max(Yγ,0), then z0 and zYγ, which becomes linear constraints.