Wednesday, September 16, 2015

Average correlation of index/portfolio


We try to analyze the average correlation of a portfolio as it can be found here in section 2 b), the same formula which is also used by the CBOE to calculate implied correlations:


ρav(2)=σ2Ni=1w2iσ2i2Ni=1Nj>iwiwjσiσj


EDIT:Assuming that σ2=Ni=1Nj=1wiwjσiσjρi,j, where ρi,i=1, for i=1,,N, the above expression can be written as ρav(2)=Ni=1Nj>iwiwjσiσjρi,jNi=1Nj>iwiwjσiσj.


The following questions arise.



  1. Assuming that wiR, i.e. long/short leverage is allowed, is it possible that |ρav(2)|>1 ? Note that we don't assume wi=1.

  2. Does there already exist the notion of contribution to average correlation? Meaning that e.g. in a long/short portfolio, where average correlation should be close to zero, I can identify positions that drive the average correlation up (in absolute value).




Answer



I did some calculations in mathematica in the 3 asset case. Assume we have exposures wi,i=1,2,3 and volatilities σi,i=1,2,3 and correlations ρ1,2,ρ1,3,ρ2,3. Let's assume σ1=σ2=σ3=σ for some arbitrary positive σ. For the weights we assume w2=w3=0.5 and we have a short in asset 1 of w1=0.5. Then the above formula becomes ρav(2)=ρ1,2+ρ1,3ρ2,3.

Then the question is whether we can find valid (pos.definite correlation matrix) values for the correlations such that the above formula delivers a results out side of the unit interval. A possible choice is ρ1,2=0.95,ρ1,3=0.95 and ρ2,3=0.89 with the result 1.01!


The mathematica code is the following:


pfvar[w1_, w2_, w3_] := w1^2*[Sigma]1^2 + w2^2*[Sigma]2^2 + w3^2*[Sigma]3^2 + 2*([Sigma]1*[Sigma]2*[Rho]12*w1*w2 + [Sigma]1*[Sigma]3*[Rho]13*w1*w3 + [Sigma]3*[Sigma]2*[Rho]23*w3*w2)


impliedCorr[w1_, w2_, w3_] := (pfvar[w1, w2, w3] - (w1^2*\[Sigma]1^2 + w2^2*\[Sigma]2^2 
+ w3^2*\[Sigma]3^2))/( 2*(\[Sigma]1*\[Sigma]2*w1*w2 + \[Sigma]1*\[Sigma]3*w1*
w3 + \[Sigma]3*\[Sigma]2*w3*w2) )

impliedCorr[w1, w2, w3] /. w2 -> w3 /. [Sigma]2 -> [Sigma]3 /. [Sigma]3 -> [Sigma]1 /. w3 -> 0.5 /. w1 -> -0.5 // Simplify



[Rho]12 + [Rho]13 - [Rho]23 /. [Rho]12 -> 0.95 /. [Rho]13 -> 0.95 /. [Rho]23 -> 0.89


EDIT: Thanks to @John I found a mistake and corrected ρ2,3 to 0.89.


No comments:

Post a Comment

technique - How credible is wikipedia?

I understand that this question relates more to wikipedia than it does writing but... If I was going to use wikipedia for a source for a res...