Learn how to properly construct, maintain, and report on GIPS composites to uphold transparency and consistency in your investment performance presentation.
When you think about showcasing your investment performance to potential clients, how do you do it in a way that best reflects your underlying strategy and skill, without cherry-picking only your biggest successes? Well, that’s where the concept of composites swoops in to save the day. Composites are basically groupings of portfolios that share a similar investment strategy or mandate. By gathering these portfolios together under one umbrella, you can present a track record that is more robust, more reliable—more real.
This section explores how composites work under the Global Investment Performance Standards (GIPS). We’ll see how they’re built, how you’re supposed to maintain them, and, importantly, how they bolster transparency by ensuring you don’t selectively choose “good” portfolios to show off. I remember the first time I had to compile composites—boy, it felt like juggling puzzle pieces in midair. But once you get it, everything sort of clicks, and you can see how it all fits together to build trust and credibility.
Generally speaking, a composite includes all the actual, fee-paying, discretionary portfolios managed under the same strategy (sometimes we call that the same “mandate” or objective). For example, if you run a global equity strategy, all your global equity portfolios that are discretionary and that pay fees (unless there’s a valid reason to exclude them) must end up in that “global equity composite.” This practice ensures the performance you report is, in fact, representative of the entire set of portfolios for that strategy.
By grouping portfolios, you’re forcing yourself—perhaps a little painfully at first—to be consistent and fair in your performance reporting. GIPS helps set these guidelines to protect the industry’s credibility and your clients’ trust.
When you start building composites, you need to define your strategies in a crystal-clear fashion. Are we talking about a small-cap growth equity strategy? A fixed-income liability-driven approach? This is the foundation: a composite can only be credible if its mandate is well-defined.
Now, one of the cornerstones of GIPS is that you must include every actual, fee-paying, discretionary portfolio in at least one composite. That’s right—no convenient “Oops, let’s leave that laggard out.” This universal inclusion staves off the temptation to only show the best performers and ditch the rest. As you might guess, a big reason behind this rule is to make sure you’re not creating composites that mislead prospective clients.
Firms are required to document exactly how they create, maintain, and reclassify portfolios within each composite. Such a written policy ensures clarity and consistency over time. This “Composite Policy” should answer these kinds of questions:
Keeping these policies on paper also helps your staff and any potential auditors verify that your composites align with the GIPS foundation.
Alright, so you have a strategy labeled “global equities” and maybe 15 different portfolios all following that approach. The GIPS standards require that you assign portfolios to composites in a timely manner—don’t just wait until they perform well. If a new portfolio comes in on June 1, it should be included in the composite from that date forward, assuming it meets the discretionary criteria.
Timely assignment prevents “performance chasing.” Similarly, consistent assignment means if a portfolio’s circumstances don’t change, you don’t pop it out of the composite simply because it had a bad month. Think of it like sports: each team has to submit their official roster at the start of the season, and they can’t keep swapping players in and out to rig the score.
According to GIPS, your final return number for a composite should reflect the performance of all the portfolios in that group. Typically, it’s an asset-weighted return, so larger portfolios have a proportionally greater impact on the composite result than smaller ones. Here’s a generic formula:
$$
R_{composite} = \sum_{i=1}^{n} \left(w_i \times R_i\right)
$$
Where:
Composite-level returns are essential because clients want to see how well you can manage a particular strategy, not just how well you managed a single star portfolio. By providing these aggregate numbers, it gives prospective investors (or existing clients) confidence they’re seeing the “real deal,” warts and all. If you end up pitching yourself as an incredible manager of, say, emerging market equities, prospective clients can look at your emerging market equity composite data—and that data should theoretically capture everything you manage in that space.
Large inflows or outflows can skew a portfolio’s results for a short period. GIPS allows for certain carve-outs and treatment approaches to ensure that your performance information remains fair. Some firms temporarily remove a portfolio from a composite if it experiences a significant cash flow that disrupts the strategy’s normal process. The key is to follow your documented policy consistently. If you do it once, you have to do it for all similarly affected portfolios.
When a portfolio’s mandate changes or if a client terminates a relationship, you can’t just quietly bury that portfolio’s performance. Under GIPS, you must properly reflect that portfolio’s partial period performance in the composite before its transition or closure. This ensures continuity and helps track the real, historical performance track record for that composite.
Imagine you have a bond portfolio you manage under a strict duration target. The client decides to broaden the mandate to include convertible bonds, effectively changing the strategy’s entire scope. Under your composite policy, that might trigger a reclassification: the portfolio leaves the old composite on the date of the strategy change and (if it meets eligibility) joins the new convertible-bond composite.
Let’s consider “Sunrise Asset Management,” a hypothetical mid-sized firm that manages three main strategies:
Each time they accept a new client mandate, they place that client’s portfolio into the appropriate composite based on the investment strategy. Over time, the firm can measure how each composite has evolved in terms of size, risk profile, and returns. Suppose the Large-Cap Core Equities composite has 45 portfolios. Some are performing quite well; others are merely average. But collectively, the composite’s track record provides a thorough view of the firm’s skill at consistently picking or managing large-cap stocks.
Now, if Sunrise Asset Management tried to show a “Large-Cap All-Star Composite” by only including the five top portfolios, they’d be in direct violation of GIPS. Moreover, prospective investors would see a skewed picture. This is exactly what GIPS aims to prevent.
Below is a quick visual of how portfolios might flow into a single composite and how that composite then serves as the backbone for client reporting. You can see how multiple portfolios converge into one aggregated performance figure:
flowchart TB A["Portfolio 1"] --> B["Global Equity Composite"] A2["Portfolio 2"] --> B["Global Equity Composite"] A3["Portfolio 3"] --> B["Global Equity Composite"] B["Global Equity Composite"] --> C["Performance Report"]
If you’re curious about computing an asset-weighted composite return, here’s a tiny Python code example:
1portfolios = {
2 'portfolio1': {'weight': 0.4, 'return': 0.02}, # 2% return
3 'portfolio2': {'weight': 0.3, 'return': 0.01}, # 1% return
4 'portfolio3': {'weight': 0.3, 'return': 0.03}, # 3% return
5}
6
7composite_return = sum([p['weight'] * p['return'] for p in portfolios.values()])
8print(f"Composite Return: {composite_return:.2%}")
In this example, the composite’s overall return factors in both the returns and the relative sizes of the portfolios in the composite.
• Be sure you have formal, written composite policies. Being sloppy with those will lead to inconsistencies, confusion, and possible compliance breaches.
• Watch out for “performance outliers.” If a portfolio has a huge inflow or outflow, handle it carefully. Document your approach within your policies.
• Refrain from making frequent reassignments. If a portfolio’s strategy truly changes, that’s one thing, but bouncing portfolios around to massage performance is a big no-no.
• Always track partial period performance when a portfolio joins or leaves a composite mid-period.
From an exam perspective, big points often revolve around demonstrating that you understand the spirit of GIPS—full disclosure and consistency. Here are a few practical tips:
• In essay or item-set questions, make sure to identify whether a portfolio is discretionary and fee-paying, which triggers its inclusion in a composite.
• Look out for trick questions where a portfolio might be subjected to a major inflow or outflow and see if the correct approach is to remove or keep it (based on the firm’s policy).
• Explain the rationale behind requiring written composite policies and timely assignment—it’s about avoiding performance manipulation.
• If asked to calculate a composite return, remember it’s typically asset-weighted—not just a simple average.
• Keep an eye on partial-period returns if a portfolio joins or exits in the middle of a reporting period.
• CFA Institute (2020). “Creating and Maintaining GIPS Composites.”
• Le Sourd, V. (2012). “Performance Measurement for Traditional Investment.” EDHEC Publications.
• Journal of Performance Measurement – Special Issues on Composite Construction Practices.
These resources provide deeper dives and more technical details on composite construction, maintenance, and performance measurement techniques.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.