Skip to main content

Diversification from DFA

Diversification is an essential tool available to investors. It enables them to capture broad market forces while reducing the uncompensated risk associated with individual securities. We have constructed strategies that seek to draw heavily upon this philosophy.
We believe successful investing means not only capturing reliable sources of expected return but managing diversifiable risks and other risks that do not increase expected returns. Avoidable risks include holding too few securities, betting on countries or industries, following market predictions, speculating in areas like interest rate movements, and relying solely on information from third-party analysts or rating services. To all these, diversification is an essential tool available to investors. While it does not eliminate the risk of market loss, diversification does help eliminate the random fortunes of individual securities and positions your portfolio to capture the returns of broad economic forces.

Dimensional's strategies diversify not only in the amount of securities they hold but in the range of capital markets they explore and develop. In this way, strategies are designed to focus on the factors that drive investment returns while reducing excess and undesirable risk.
The Benefits of Stock Diversification
The Benefits of Stock Diversification
Quarterly data: 1970–2010, rebalanced quarterly.
The S&P data are provided by Standard & Poor's Index Services Group. MSCI data copyright MSCI 2011, all rights reserved. Results represent past performance and do not predict future performance.
For many investors, the S&P 500 represents the first equity asset class in a diversified portfolio. Although the S&P 500 Index is diversified in large US companies, investors can benefit further by adding components. Take, for example, a portfolio that holds just US stocks (S&P 500 Index), a portfolio that holds just Japanese stocks (MSCI Japan Index), and a portfolio that holds both. As illustrated above, the diversified portfolio has not only provided a higher historical return than either alone, but it has done so with fewer negative quarters.

Fixed income investors also benefit from diversification among government and corporate issuers and across global yield curves. The illustration below features a US government bond index and a world government bond index hedged to USD. Adding global issuers to a US bond index substantially reduced overall volatility while the average returns were similar.
The Benefits of Fixed Income Diversification
The Benefits of Fixed Income Diversification
1985–2010, Citigroup WGBI USD Hedged Indices (1–5 years).
Citigroup bond indices copyright 2011 by Citigroup.
Results represent past performance and do not predict future performance.
Standard deviation is the statistical measure of the degree to which an individual value in a probability distribution tends to vary from the mean of the distribution.
This is the power of diversification: the whole is greater than the sum of its parts.

Diversification does not eliminate the risk of market loss.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...