Understand how exchange rates are determined by supply and demand factors, as well as how various floating, fixed, and managed regimes shape currency markets and influence global investment decisions.
Exchange rates—essentially the prices at which one currency can be exchanged for another—are central to global finance. They impact everything from the cost of imported goods to the competitiveness of exports, from international investment decisions to the direction of capital flows. Indeed, if you’ve ever traveled abroad and traded your domestic currency for foreign notes, you’ve participated in the foreign exchange (FX) market. But once you move beyond that tourist transaction, you’ll find that exchange rate determination is both an art and a science, influenced not only by raw economic fundamentals (such as interest rate differentials and inflation) but also intangible factors like investor sentiment and geopolitical events.
Below we’ll unpack the big drivers of exchange rates, then compare and contrast major exchange rate regimes—from pure floats to strict pegs—while reinforcing how these regimes affect market behavior. Meanwhile, I’ll share a couple of personal experiences along the way, because, well, sometimes watching the currency markets feels like watching an action movie—especially when a central bank decides to intervene out of nowhere!
In a free or partially free market, exchange rates are still governed by basic principles of supply and demand. However, these drivers can be multifaceted and interwoven. Let’s break down a few important ones.
If you think about it, currencies are demanded when firms and consumers need to purchase goods or services from abroad. For example, if a U.S. importer needs to buy machinery from Japan, it usually needs Japanese yen to pay the exporting company. When a country exports more than it imports (i.e., a trade surplus), its currency may experience upward pressure. Conversely, if it imports more than it exports (a trade deficit), its currency might weaken—at least over the long run.
One of the biggest drivers in currency markets is often interest rate differentials between countries. Suppose the domestic interest rate is higher than the foreign interest rate. In that case, domestic assets may become more attractive to international investors seeking higher yields, increasing demand for the domestic currency. This relationship is frequently modeled through interest rate parity frameworks. One simplified version of uncovered interest parity can be shown as:
Where \(S_t\) is the spot exchange rate at time \(t\), \(i_{\mathrm{dom}}\) is the domestic interest rate, and \(i_{\mathrm{for}}\) is the foreign interest rate. Although real-world exchange rates rarely move exactly as predicted by simplistic formulas, the principle underscores how important interest rates can be.
High inflation generally erodes a currency’s value in the eyes of global investors. When domestic inflation is high, each unit of currency buys fewer goods. Over time, this can lead to currency depreciation. Many foreign exchange market participants keep a close eye on inflation indicators like CPI (Consumer Price Index) or PPI (Producer Price Index) because, well, nobody wants to hold a currency that loses value too quickly.
Large cross-border investments—whether from giant pension funds, hedge funds, or multinational corporations—also move exchange rates. For instance, in the build-up to major sporting events or big infrastructure projects, foreign direct investment (FDI) may flow into a host country, boosting demand for its currency. Similarly, shifts in global risk appetite can cause large “safe haven” flows into currencies like the U.S. dollar, Japanese yen, or Swiss franc.
I’ll never forget the time I was on a trading desk (unofficially assisting a portfolio manager friend) early one morning when rumors started swirling about a central bank cutting rates unexpectedly. The currency soared in volatility simply because of swirling predictions about what might happen. Sentiment and psychology can trigger short-term currency moves that often dwarf those driven by more fundamental factors.
Below is a simple conceptual diagram representing the interplay of these factors:
graph LR A["Interest Rate <br/> Differentials"] --> F["Exchange Rate"] B["Trade Flows"] --> F["Exchange Rate"] C["Inflation <br/> Expectations"] --> F["Exchange Rate"] D["Capital Flows"] --> F["Exchange Rate"] E["Market <br/> Sentiment"] --> F["Exchange Rate"]
Countries frequently adopt specific policy frameworks—often called “exchange rate regimes”—to guide how their currency behaves in international markets. The choice of regime can align with a nation’s macroeconomic objectives, historical norms, or even political considerations. As you might guess, each regime carries its opportunities and challenges.
Under a floating regime, a currency’s value is determined primarily by market forces. Although central banks may perform occasional interventions (say, by selling foreign reserves to prop up the currency or by buying them to weaken it), there’s no official target or strict rule that authorities enforce. The U.S. dollar, euro, British pound, and Japanese yen generally float.
One advantage of a floating regime is that it provides monetary policy autonomy: the central bank can focus on domestic goals (like controlling inflation or supporting growth) without worrying much about defending a specific currency level. However, large exchange rate swings can occur—sometimes beneficial, sometimes not. For example, if the currency appreciates too fast, exporters can suffer.
In a fixed regime, the central bank pegs its currency to another currency (or a basket). The Hong Kong dollar’s peg to the U.S. dollar is a notable example. Usually, the central bank commits to converting domestic currency at the fixed rate, maintaining large foreign currency reserves to defend that peg. This can stabilize trade relationships and limit exchange rate volatility, which is great for businesses used to predictable cross-border pricing.
But with a fixed regime, the central bank often sacrifices monetary independence. If market pressure mounts and foreign reserves run low, the peg can break dramatically—consider the sterling crisis of 1992 or the more recent Swiss franc de-peg in 2015. Maintaining a peg can be expensive and complicated, and if speculators sense it’s unsustainable, they might “attack” the currency to force devaluation.
A stricter form of a peg, a currency board arrangement means the domestic money supply is backed 100% (or very close to it) by a foreign currency reserve, often with legal constraints preventing the central bank from issuing more local currency beyond the pegged limit. While this arrangement can inspire confidence, it’s extremely restrictive—imagine trying to manage a local recession when you can’t really tailor monetary policy because you’re locked into the anchor currency’s fate.
Managed float regimes are a middle ground between free-floating and fixed. Here, the market mostly determines the exchange rate, but policymakers intervene to “smooth out” extreme volatility or guide the currency toward a desired path. Although some folks call it a “dirty float,” that label might sound a bit negative, whereas it’s often viewed as a pragmatic approach for emerging markets seeking some measure of exchange rate stability without fully giving up monetary policy freedom.
Some countries set a target exchange rate with relatively wider bands—a target zone. The currency is allowed to fluctuate within this band, but if it threatens to exit that zone, authorities intervene. This approach offers some flexibility but also tries to maintain stability. A “crawling peg” is a variation in which the central rate is adjusted periodically, often to reflect differences in inflation or other economic conditions.
A central theme in choosing an exchange rate regime relates to policy autonomy. In an ideal world, a country might want:
But the so-called “impossible trinity” suggests you can’t have all three simultaneously—at least not perfectly. You have to pick two. Floating exchange rates give you monetary independence and free capital mobility, but you sacrifice exchange rate stability. Pegged regimes can give you exchange rate stability, but you might lose some independence on interest rates. Managed floats and variations try to find a compromise.
Let’s illustrate with some real-life examples:
For Level III CFA candidates, you’ll often see exam questions focusing on whether or not to hedge currency risk, how exchange rate movements influence asset prices, and the potential for central bank intervention to upend forecasts. When you’re building or managing a global portfolio:
Beyond uncovered interest parity, you might also encounter purchasing power parity (PPP), especially in a long-run context. For instance:
Where \(P_{\mathrm{dom}}\) and \(P_{\mathrm{for}}\) are domestic and foreign price levels, respectively, and \(e_{\mathrm{dom/for}}\) is the exchange rate. While PPP tends to predict movement over longer horizons, in an exam context, be prepared to show how differences in inflation or changes in relative prices feed into currency valuations eventually.
If you want a quick Python snippet to see how changes in interest or inflation rates might project forward exchange rates, you could do something like:
1def projected_exchange_rate(spot_rate, dom_rate, for_rate, years=1):
2 """
3 Project forward exchange rate based on interest differentials.
4 """
5 return spot_rate * ((1 + dom_rate)**years / (1 + for_rate)**years)
6
7spot = 1.20 # EUR/USD
8domestic_interest = 0.02
9foreign_interest = 0.01
10projection = projected_exchange_rate(spot, domestic_interest, foreign_interest, years=2)
11print(f"Projected exchange rate over 2 years: {projection:.4f}")
Of course, in an exam context, you won’t be writing code—just be comfortable with the underlying math and logic.
The determination of exchange rates hinges on a variety of economic forces—interest rates, inflation, trade flows, capital movements, and investor psychology. Countries choose among floating, fixed, and managed exchange rate regimes, each with its own trade-offs regarding monetary policy autonomy and exchange rate stability. For the aspiring CFA Charterholder, understanding exchange rate dynamics is essential not only for analyzing international investments but also for managing currency exposures and navigating the sometimes-turbulent waters of central bank interventions.
Keep in mind that no single model can fully capture the complex and ever-changing nature of currency markets. Experience, market awareness, and a robust analytical toolkit all come into play. Good luck exploring (and sometimes braving) the currency markets in your career and on the CFA exam!
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.