Learn how GIPS ensures transparent and comparable investment performance reporting, fosters credibility, and enhances global best practices in portfolio management.
It’s easy to get excited when your portfolio returns exceed the competition’s, right? But how do you know if all managers measure and present performance the same way? A few years ago, I chatted with a friend who boasted about their firm’s “incredible track record.” After digging a bit, I found out they sometimes excluded underperforming accounts from that track record. Oops. That’s part of what the Global Investment Performance Standards (GIPS) aim to prevent—“cherry-picking” the good stuff and hiding the bad. GIPS basically says: let’s all play by the same performance-reporting rulebook so investors can have apples-to-apples comparisons.
Think of GIPS as a universal language for investment performance. It was developed by the CFA Institute to solve the problem of inconsistent and, let’s be honest, sometimes misleading performance reporting practices. When a firm claims GIPS compliance:
• It commits to transparent calculation and presentation of historical returns.
• It doesn’t get to selectively omit losers from the track record.
• It groups similar portfolios into what’s called a “composite.”
The big plus? Investors gain confidence that a GIPS-compliant firm is telling the full story of how it manages money.
So, how do managers calculate their performance under GIPS? Let’s spotlight a couple of concepts:
• Time-Weighted Return (TWR): This approach weights each sub-period based on the portfolio’s value, reducing the effect of large cash inflows or outflows. GIPS typically recommends TWR for standard performance reporting.
• Money-Weighted Return (MWR): Also known as the Internal Rate of Return (IRR), more suitable when the manager actually controls the timing of cash flows. But due to complexities, TWR remains the GIPS “go-to” in most typical circumstances unless you’re dealing with private equity or certain real estate assets.
For example, in Python, you might quickly check a TWR calculation:
1import numpy as np
2
3returns = [0.05, -0.02, 0.04, 0.06]
4
5growth_factors = [1 + r for r in returns]
6twr = np.prod(growth_factors) - 1
7
8print("Time-Weighted Return:", f"{twr:.2%}")
This little snippet sequentially multiplies each (1 + period return) factor to get the overall TWR. GIPS helps standardize how you’d present something like this to a client.
Portfolios with a similar investment objective or strategy are typically grouped into what’s known as a “composite.” Suppose a firm has six international equity portfolios. It must include each of these in an international equity composite if these portfolios have discretionary mandates (i.e., the manager is free to invest or divest as they see fit). The main GIPS mantra here: “All actual, fee-paying, discretionary portfolios must be included in at least one composite.” No playing hide-and-seek with poor performers.
If you accidentally exclude a struggling portfolio from a composite or misclassify it under a different strategy for the sake of boosting your performance presentation, that’s the kind of cherry-picking GIPS is designed to prevent.
GIPS insists on fair value methodologies for all investments, from liquid stocks to illiquid real estate. Now, we’ve all seen markets get crazy, which can make “fair value” feel like guesswork. But GIPS has your back:
• Managers are required to define (and consistently apply) credible valuation methods.
• Many managers rely on independent appraisers or recognized pricing models.
• For private equity and alternatives, GIPS details additional guidelines (like using valuations in line with the International Private Equity and Venture Capital Valuation (IPEV) Guidelines).
Perhaps you’re wondering, “What if the investment is a unique piece of real estate with no comparable sales?” GIPS wants you to document a robust approach—like a specialized appraisal—to ensure you’re not inflating the numbers.
GIPS leaves no room for vagueness in how you show performance. Managers must openly discuss:
• The specific strategies or styles of each composite.
• The fees applicable (management fees, performance fees, etc.).
• The currency used (it can be USD, EUR, GBP, anything, but you have to say which one).
• The relevant benchmarks (and if no benchmark is appropriate, you must say so).
In effect, it’s the difference between a cryptic “we returned 10%” and a thorough “our composite achieved 10% net-of-fee returns in USD over the last 12 months, compared to a 9% rise in the XYZ benchmark.”
There’s something reassuring when an independent party says, “Yes, you’re doing everything right.” Enter GIPS verification. Firms hire a third-party verifier to review:
• Policies and procedures related to composite construction.
• Calculation methods for returns.
• How firms comply with the entire GIPS framework.
Verification is not mandated by GIPS, but it sure adds credibility. If a firm’s marketing claims “We are GIPS-compliant, and we have been verified,” it usually instills greater trust among institutional clients. Some firms also do internal checks, but an external verification is typically more respected.
Here’s a little flow diagram showing a firm’s GIPS compliance process:
flowchart LR A["Set Policies <br/>& Procedures"] --> B["Construct Composites"]; B["Construct Composites"] --> C["Calculate <br/>Performance"]; C["Calculate <br/>Performance"] --> D["Compile Disclosures"]; D["Compile Disclosures"] --> E["Verification <br/>(External/Internal)"]; E["Verification <br/>(External/Internal)"] --> F["Publish <br/>GIPS-Compliant Report"];
Think of it as a repeatable loop: the better your documentation and methodology, the smoother each cycle will be.
From experience, I recall the time a small asset manager balked at the complexity of GIPS. They had only five portfolios yet found themselves buried in the details. Honestly, the best tip: start small. Document each step meticulously, use consistent software or spreadsheets for calculations, and confirm every portfolio belongs to a relevant composite.
Best practices also involve:
• Training teams in GIPS guidelines.
• Automating data collection and reconciliation to reduce the risk of manual errors.
• Setting up a robust compliance calendar to keep an eye on changes to GIPS.
GIPS is never static. It gets revamped to address new frontiers in finance. From private debt funds to impact investing strategies, GIPS constantly evolves. If you manage ESG-focused portfolios, you must be mindful of additional or nuanced disclosures—like how you apply negative screens or measure carbon footprint. You might see upcoming GIPS guidance on presenting these specialized metrics so that everything remains consistent worldwide.
Let’s face it: claiming GIPS compliance can be a great marketing advantage. But GIPS is clear on how these claims can be phrased. For instance, saying you are “GIPS-certified” is a no-go because GIPS doesn’t “certify” anyone. The correct approach is something like: “ABC Asset Management claims compliance with the Global Investment Performance Standards (GIPS).” Make sure to avoid overselling, and ensure you are fully in compliance. Otherwise, the potential damage to your reputation is massive.
Imagine your firm manages three composites:
• Composite A: Large-cap growth strategy (three portfolios)
• Composite B: Small-cap value strategy (eight portfolios)
• Composite C: Fixed income strategy (two portfolios)
Under GIPS, you’d produce a compliant presentation for each composite. For each, you’d highlight:
• The net-of-fee return for each year in the track record (at least five years initially, building up to ten).
• The benchmarks used.
• The number of portfolios in the composite and total assets.
• Any events that affected performance (like a manager transition).
If you tried to remove a portfolio that simply flopped in 2023, you’d breach GIPS. Each composite must include all discretionary portfolios for that strategy, full stop. Investors can then see the good, the bad, and the (hopefully not too) ugly.
• Inconsistent Valuation Methods: Using one approach for your “star” portfolio and a different approach for the rest is a no.
• Partial Reporting: Presenting only partial periods or skipping months can mislead performance.
• Mixing Gross vs. Net Returns: Failing to clearly show how fees factor into returns can confuse or mislead clients.
• Incorrect Benchmark Comparisons: Must align the benchmark with the strategy.
In earlier chapters, you saw how we measure risk and return (see Chapters 2 and 3 on risk/return). GIPS picks up where those frameworks leave off, ensuring that performance presentation is consistent, accurate, and globally comparable. Investors, analysts, and regulators want confidence that the numbers they see reflect robust calculation methods (Chapters 2.3 and 3.4 might come to mind).
Exam questions often revolve around:
• Recognizing what’s allowed vs. what’s prohibited under GIPS.
• Identifying whether certain disclosures (fees, composites) are mandatory.
• Understanding verification, marketing claims, and fair-value applications.
• Spotting issues like “cherry-picking” or improper composite inclusion.
When faced with (constructed response) exam prompts, watch for tricky details. If a firm omitted a newly-founded portfolio from a composite on the grounds that it had only one month of data, is that GIPS-compliant? Probably not—most likely, you must include it once it meets your defined composite criteria.
And time management matters, so structure answers clearly: mention the relevant GIPS guidelines, apply them to the scenario given, and conclude succinctly.
• Global Investment Performance Standards (GIPS):
https://www.cfainstitute.org/ethics-standards/gips
• “Global Investment Performance Standards Handbook” by CFA Institute
• GIPS Guidance Statements on the CFA Institute website
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.