In: Finance
Suppose you build a portfolio of 25% in A and 75% in B, calculate expected returns, volatility, and a 95% confidence interval for the portfolio.
Stock A |
Stock B |
|
2011 |
10.00% |
6.00% |
2012 |
7.00% |
2.00% |
2013 |
15.00% |
5.00% |
2014 |
-5.00% |
1.00% |
2015 |
8.00% |
-2.00% |
we calculate average returns for each stock using the AVERAGE function in Excel as below :
we calculate standard deviation for each stock using the STDEV function in Excel as below :
For a portfolio with 25% weight in A, and 75% weight in B,
expected return = (25% * 7.00%) + (75% * 2.40%) = 3.55%
Expected variance for a two-asset portfolio σp2 = w12σ12 + w22σ22 + 2w1w2Cov1,2
where σp2 = variance of the portfolio
w1 = weight of Asset 1
w2 = weight of Asset 2
σ12 = variance of Asset 1
σ22 = variance of Asset 2
Cov1,2 = covariance of returns between Asset 1 and Asset 2
Cov1,2 = ρ1,2 * σ1 * σ2, where ρ1,2 = correlation of returns between Asset 1 and Asset 2
covariance between A and B is calculated using the COVAR function in Excel as below :
variance of portfolio = (0.25)2*(0.066)2 + (0.75)2*(0.0287)2 + (2)*(0.25)*(0.75)*(0.00088)
variance of portfolio = 0.001066
standard deviation = 0.001066
standard deviation = 0.0326, or 3.26%
95% confidence interval has a Z-value of 1.960
confidence interval = mean + (z-value)*(standard deviation / number of observations)
confidence interval = 3.55 +/- (1.960)*(3.26/5)
confidence interval = 3.55 +/- 1.278
confidence interval = 2.272 to 4.828