-
Notifications
You must be signed in to change notification settings - Fork 195
/
424project2009.r
232 lines (191 loc) · 7.26 KB
/
424project2009.r
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# 424project2009.r script file for econ 424 Project calculations
#
# author: Eric Zivot
# created: November 9, 2009
# revision history
# December 1, 2009
# Added VaR and bootstrap VaR code
#
# Data for the project are downloaded automatically from Yahoo! and consist of
# closing price data on 6 Vanguard mutual funds:
#
# 1. S&P 500 index (vfinx)
# 2. European stock index (veurx)
# 3. Emerging markets fund (veiex)
# 4. Long term bond index (vbltx)
# 5. Short term bond index (vbisx)
# 6. Pacific stock index (vpacx)
options(digits=4)
options(help_type="html")
# load packages
library("PerformanceAnalytics")
library("tseries")
library("zoo")
library("boot")
# source portfolio functions
loadPath = "E:/FinBook/R/"
source(file=paste(loadPath, "portfolio.r", sep=""))
#
# 1. load data from Yahoo!
#
# get monthly adjusted closing price data on Vanguard mutual fund data from Yahoo
# using the tseries function get.hist.quote. Set sample to Jan 1998 through
# Dec 2007. Note: if you are not careful with the start and end dates
# or if you set the retclass to "ts" then results might look weird
asset.names = c("vfinx","veurx","veiex","vbltx","vbisx","vpacx")
vfinx.prices = get.hist.quote(instrument="vfinx", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
veurx.prices = get.hist.quote(instrument="veurx", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
veiex.prices = get.hist.quote(instrument="veiex", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
vbltx.prices = get.hist.quote(instrument="vbltx", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
vbisx.prices = get.hist.quote(instrument="vbisx", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
vpacx.prices = get.hist.quote(instrument="vpacx", start="2004-09-01",
end="2009-9-30", quote="AdjClose",
provider="yahoo", origin="1970-01-01",
compression="m", retclass="zoo")
projectPrices.z = merge(vfinx.prices,veurx.prices,veiex.prices,vbltx.prices,
vbisx.prices,vpacx.prices)
colnames(projectPrices.z) = asset.names
#
# 2. compute cc returns
#
projectReturns.z = diff(log(projectPrices.z))
#
# 3. plot data
#
my.panel <- function(...) {
lines(...)
abline(h=0)
}
plot(projectPrices.z, col="blue", lwd=2)
plot(projectReturns.z, panel=my.panel, col="blue", lwd=2)
# plot growth of $1 over the five years using PerformanceAnalytics function
# chart.CumReturns
projectReturnsSimple.z = exp(projectReturns.z) - 1
chart.CumReturns(projectReturnsSimple.z, wealth.index=TRUE, legend.loc="topleft",
lwd=2, main="growth of $1")
#
# 4. Create matrix of return data and compute pairwise scatterplots
#
ret.mat = coredata(projectReturns.z)
pairs(ret.mat, col="blue")
# example of four panel plot
par(mfrow=c(2,2))
hist(ret.mat[,"vfinx"],main="vfinx monthly returns",
xlab="vfinx", probability=T, col="slateblue1")
boxplot(ret.mat[,"vfinx"],outchar=T,col="slateblue1")
plot(density(ret.mat[,"vfinx"]), main="smoothed density",
type="l",xlab="monthly return",
ylab="density estimate")
qqnorm(ret.mat[,"vfinx"])
qqline(ret.mat[,"vfinx"])
par(mfrow=c(1,1))
#
# compute descriptive statistics
#
muhat.vals = colMeans(projectReturns.z)
sd.vals = apply(projectReturns.z, 2, sd)
cov.mat = var(projectReturns.z)
cor.mat = cov2cor(cov.mat)
# empirical quantiles for VaR calculations
q.vals = apply(projectReturns.z, 2, quantile, prob=c(0.01,0.05))
## write covariance matrix, expected returns, sd values and quantiles to files
## for importing into Excel
savePath="C:/Users/ezivot/Documents/classes/econ424/fall2009/project/"
write.csv(cov.mat, file=paste(savePath, "covmat.csv", sep=""))
write.csv(muhat.vals, file=paste(savePath, "muhat.csv", sep=""))
write.csv(sd.vals, file=paste(savePath, "sd.csv", sep=""))
write.csv(t(q.vals), file=paste(savePath, "q.csv", sep=""))
#
# VaR analysis
#
# function to compute normal VaR for a matrix of returns
Value.at.Risk = function(x,p=0.05,w=100000) {
x = as.matrix(x)
q = apply(x, 2, mean) + apply(x, 2, sd)*qnorm(p)
VaR = (exp(q) - 1)*w
VaR
}
# compute 5% and 1% normal VaR for all assets
VaR.05 = Value.at.Risk(ret.mat)
VaR.05
VaR.01 = Value.at.Risk(ret.mat, p=0.01)
VaR.01
# function to bootstrap VaR
ValueAtRisk.boot = function(x, idx, p=0.05, w=100000) {
q = mean(x[idx]) + sd(x[idx])*qnorm(p)
VaR = (exp(q) - 1)*w
VaR
}
# bootstrap vfinx
VaR.05.boot.vfinx = boot(ret.mat[, "vfinx"],
statistic=ValueAtRisk.boot, R=999)
VaR.05.boot.vfinx
boot.ci(VaR.05.boot.vfinx, conf = 0.95, type = c("norm","perc"))
plot(VaR.05.boot.vfinx)
## risk free rate
rf = 0.005/12
#
# Portfolio theory allowing for short sales
#
## compute global minimum variance portfolio
gmin.port <- globalMin.portfolio(muhat.vals, cov.mat)
attributes(gmin.port)
print(gmin.port)
summary(gmin.port, risk.free=rf)
plot(gmin.port)
## efficient portfolio with target return equal to max returns
target.return <- max(muhat.vals)
e.port.max<- efficient.portfolio(muhat.vals, cov.mat, target.return)
e.port.max
summary(e.port.max, risk.free=rf)
plot(e.port.max)
## compute tangency portfolio
tan.port <- tangency.portfolio(muhat.vals, cov.mat, rf)
tan.port
summary(tan.port, risk.free=rf)
plot(tan.port)
## compute efficient frontier
ef <- efficient.frontier(muhat.vals, cov.mat, alpha.min=-1,
alpha.max=1.5, nport=20)
## plot efficient frontier
plot(ef, plot.assets=T, col="blue", lwd=2)
points(gmin.port$sd, gmin.port$er, col="orange", lwd=2)
points(tan.port$sd, tan.port$er, col="red", lwd=2)
sr.tan = (tan.port$er - rf)/tan.port$sd
abline(a=rf, b=sr.tan, col="green", lwd=2)
#
# singleIndex Model
#
veurx.fit = lm(veurx ~ vfinx, data=projectReturns.z)
summary(veurx.fit)
veiex.fit = lm(veiex ~ vfinx, data=projectReturns.z)
summary(veiex.fit)
vbltx.fit = lm(vbltx ~ vfinx, data=projectReturns.z)
summary(vbltx.fit)
vbisx.fit = lm(vbisx ~ vfinx, data=projectReturns.z)
summary(vbisx.fit)
vpacx.fit = lm(vpacx ~ vfinx, data=projectReturns.z)
summary(vpacx.fit)
beta.vals = c(1,
coef(veurx.fit)[2],
coef(veiex.fit)[2],
coef(vbltx.fit)[2],
coef(vbisx.fit)[2],
coef(vpacx.fit)[2])
names(beta.vals) = colnames(projectReturns.z)
write.csv(beta.vals, file=paste(savePath, "beta.csv", sep=""))