forked from letianzj/QuantResearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
value_at_risk_one.py
52 lines (42 loc) · 2.03 KB
/
value_at_risk_one.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import pandas as pd
import numpy as np
from scipy.stats import norm
from datetime import datetime, date
import quandl
assets = ['AAPL', # Apple
'KO', # Coca-Cola
'DIS', # Disney
'XOM', # Exxon Mobil
'JPM', # JPMorgan Chase
'MCD', # McDonald's
'WMT'] # Walmart
holdings = [100,200,300,400,500,600,700] # number of shares in each assets
# download historical data from quandl
hist_data = {}
for asset in assets:
data = quandl.get('wiki/'+asset, start_date='2015-01-01', end_date='2017-12-31', authtoken='ay68s2CUzKbVuy8GAqxj')
hist_data[asset] = data['Adj. Close']
hist_data = pd.concat(hist_data, axis=1)
# calculate historical log returns
hist_return = np.log(hist_data / hist_data.shift())
hist_return = hist_return.dropna()
port_cov = hist_return.cov() # portfolio covariance matrix
port_corr = hist_return.corr() # portfolio correlation matrix
V_i = hist_data.iloc[-1] * holdings # dollar value as of end_date
V_i = V_i.as_matrix() # convert to vector
V_p = V_i.sum() # dollar value of the portfolio
z = norm.ppf(0.95, 0, 1) # z value
sigma_p = np.sqrt(np.dot(V_i.T, np.dot(port_cov.as_matrix(),V_i))) # note it's in dollar amount
VaR_p = z * sigma_p # portfolio VaR
sigma_i = np.sqrt(np.diag(port_cov.as_matrix())) # individual asset
VaR_i = z * sigma_i * V_i
cov_ip = np.dot(port_cov.as_matrix(), V_i)/V_p # covariance
beta_i = cov_ip / (sigma_p*sigma_p/V_p/V_p) # beta
MVar_i = VaR_p/V_p*beta_i # marginal var
CVaR_i = MVar_i * V_i # component var
CVaR_i_df = pd.DataFrame(data=np.column_stack((V_i, V_i/V_p, CVaR_i, CVaR_i/VaR_p, beta_i)))
CVaR_i_df.index = assets
CVaR_i_df.columns = ['Position ($)', 'Position (%)','CVaR ($)','CVaR (%)', 'Beta']
print(CVaR_i_df)