point

 

 Remember me

Register  |   Lost password?

 

Next Dates: - Introduction to QuantLib Development with Luigi Ballabio, September 2 - 4, 2013 - £1700

 



Asset correlations with minimum variance portfolios

Wed, 09 May 2012 05:20:20 GMT

The minimum variance portfolios have slightly reduced correlations to assets in weight-constrained portfolios.

Previously

“Portfolio diversity” introduced the topic of asset-portfolio correlations. It also generated four sets of long-only random portfolios as of the start of 2011 using constituents of the S&P 500:

  1. exactly 20 names, weights between 1% and 10%
  2. exactly 200 names, weights between 0.1% and 1%
  3. exactly 20 names, maximum asset-portfolio correlation of 60%
  4. exactly 200 names, maximum asset-portfolio correlation of 60%

Here we see what the asset correlations with the respective minimum variance portfolios look like.

Asset correlations

Figures 1 through 4 show the asset-portfolio correlation distribution for the minimum variance portfolio with each set of constraints.

Figure 1: Asset-portfolio correlations in the 20-name minimum variance portfolio with weight constraints — blue are in the portfolio, gold are outside the portfolio.

The maximum correlation in Figure 1 is 66.9% and the maximum in Figure 2 is 76.5%.

Figure 2: Asset-portfolio correlations in the 200-name minimum variance portfolio with weight constraints — blue are in the portfolio, gold are outside the portfolio.

Figure 3: Asset-portfolio correlations in the 20-name minimum variance portfolio with correlation constraints — blue are in the portfolio, gold are outside the portfolio.

Figure 4: Asset-portfolio correlations in the 200-name minimum variance portfolio with correlation constraints — blue are in the portfolio, gold are outside the portfolio.

Summary

The asset-portfolio correlation distributions for the minimum variance portfolios don’t seem to be too different from those of typical portfolios (shown in “Portfolio diversity”).  The correlations are somewhat smaller for the minimum variance weight constraint portfolios, and somewhat larger for the correlation constraint portfolios.

Appendix R

The following commands need the Portfolio Probe software.

> require(PortfolioProbe)

get minimum variance portfolios

> divop.200w <- trade.optimizer(sp5.price10, sp5.var10, +    long.only=TRUE, gross=1e7, max.weight=.01, +    threshold=1e7 * .001/sp5.price10, +    port.size=c(200,200))

The command as written here will produce a warning about switching from the default utility of maximizing the information ratio.  In production code it is better to avoid such warnings by specifying the utility or suppressing that particular warning.

add asset-portfolio correlations

In this case where the asset-portfolio correlations are not part of the problem, we need to compute them.  An easy way to do this is to evaluate the optimization problem at its solution with correlations added as a constraint:

> divop.200wc <- update(divop.200w, risk.fraction=1, +    rf.style='corport', start.sol=divop.200w, funev=0)

The funev=0 is saying to limit the maximum number of function evaluations to zero.  It takes the liberty of performing one function evaluation — with the answer given by start.sol.

use correlations

The correlations are in the risk.fraction component of the new object.  An example of their use is:

> max(divop.200wc$risk.fraction) [1] 0.7648725 > which.max(divop.200wc$risk.fraction) [1] 332 > rownames(divop.200wc$risk.fraction)[332] [1] "PCAR"

Subscribe to the Portfolio Probe blog by Email

, , , , , , , , , , ,