Quantitative Risk Management in Python
Jamsheed Shorish
Computational Economist
Example: Block maxima for 2007 - 2009
maxima = losses.resample("W").max()
Generalized Extreme Value Distribution (GEV)
scipy.stats.genextreme
from scipy.stats import genextreme
params = genextreme.fit(maxima)
.ppf()
percent point function to find 99% VaRparams
from fitted GEV distribution.expect()
method to find expected valueVaR_99 = genextreme.ppf(0.99, *params)
CVar_99 = ( 1 / (1 - 0.99) ) * genextreme.expect(lambda x: x, *params, lb = VaR_99)
Quantitative Risk Management in Python