Browse CFA Level 2

Unique Risks: Political, Liquidity, and Currency

Explore the distinct challenges and risks that emerging and frontier market equities pose to investors, focusing on political instability, liquidity constraints, and currency volatility. Learn how these factors influence equity valuations and required returns.

Sometimes, investing in emerging or frontier markets feels a bit like stepping into a new restaurant when you’re not quite sure how good the food will be. You might have heard good things, maybe you read a few good reviews on social media, but honestly, you don’t truly know what’s going to happen until you’ve already sat down and taken a bite. In emerging and frontier markets, the “bite” you take can be deliciously rewarding—or it can leave a bad taste in your mouth if the chef (i.e., the market) changes the recipe (i.e., the rules).

Below we explore some of the biggest “recipe changes” that can spoil the meal for equity investors in emerging and frontier markets: political volatility, liquidity constraints, and currency fluctuations. We’ll also talk about the extra country risk premium (CRP) that ties all these unique risks together when we’re calculating required returns.

Political Risk

Political risk revolves around the stability (or lack thereof) in the local government environment. Whether we’re talking about an emerging economy with rapidly evolving leadership or a small frontier country dealing with regional conflicts, any sign of policymaker instability can lead to abrupt changes in how foreign capital is treated.

• Government Stability: Perhaps you’ve seen news headlines about leaders getting impeached, constitution rewrites floating around, or entire countries flipping from one ideology to another. When leadership is shaky, regulations and business environments can shift in the blink of an eye.
• Policy Changes and Nationalization: Protectionism and nationalization can affect equities more than you might imagine. Suppose you invest in a promising telecom company only for the government to decide six months later that they want a majority stake in that industry. That can erode your equity value overnight.
• Capital Controls: Even if the local firms are robust, government-imposed capital controls—like limiting foreign currency outflows—can lock you into an illiquid investment. This risk can materialize if a country experiences a sudden capital flight or a severe recession.

Practical Tip: Before committing funds, study the country’s track record. Examine political indexes, watch for sudden arrests of business leaders, or pay attention to international bodies (IMF, World Bank) that might raise red flags. Understanding local sentiment—through news outlets, local analysts, or even social media—helps you spot issues that aren’t always obvious in English-language sources.

Liquidity Concerns

If you think about large, developed equity markets, you’ll typically see a lineup of buyers and sellers ready to trade at any moment. Emerging and frontier markets often don’t have that same depth; the number of potential counterparties is smaller, and placing big orders can push prices around more than you’d expect.

• Market Capitalization and Trade Volume: Emerging markets generally have fewer large-cap names, and frontier markets may have only a handful of regularly traded stocks. The daily volume can be shockingly low for equities that look big on paper.
• Bid-Ask Spreads and Transaction Costs: Wider spreads mean that if you’re an active trader, you may pay a premium just to get in and to exit. And, well, if you’re dealing with large orders, crossing the spread can meaningfully impact your returns.
• Lock-Up Periods for Large Positions: In many frontier markets, if you hold a massive stake, you can’t unload your shares quickly without crashing the price. This illiquidity risk is where you need to prepare for a possible 5%, 10%, even 15% immediate loss as you feed shares into a starved market.

Practical Tip: To gauge liquidity, look at the average daily trading volume relative to your intended position size. Some experienced investors use incremental trading strategies or partial block trades over time—rather than one giant market order—to reduce slippage. Also, keep an eye on local circuit breakers set by exchanges; these can freeze trading if prices move too rapidly.

Currency Risk and Exchange Controls

Currency moves can sometimes overshadow the underlying fundamentals of a stock. Imagine discovering a terrific consumer goods company in a fast-growing emerging economy, only to see any potential gains evaporate because the local currency dropped 20% against the dollar.

• Historical Volatility: Emerging-market currencies can show wild swings. Often, you need to look at the local current account situation, trade balances, foreign reserves, and central bank policies that might peg or float the currency.
• Convertibility Restrictions: Some countries restrict converting the local currency into foreign currency. Repatriating dividends or proceeds from share sales can become complicated if there’s a shortage of foreign currency reserves.
• Hedging Strategies: Large institutional investors might hedge out currency exposure using forward contracts or currency swaps. However, these products may be expensive or even unavailable in smaller markets. A partial hedge might still reduce risk.

Practical Tip: If currency risk is huge, you might decide to build an extra discount rate factor into your valuation or keep your time horizon short to minimize your exposure. Alternatively, consider holding a basket of local market currencies to diversify. Always test the practicality of hedging—sometimes, structured FX derivatives are just too pricey or too illiquid to implement in these markets.

Incorporating a Country Risk Premium

You’ve got political risk, liquidity risk, and currency risk on your plate—how do you translate these into a single measure when valuing a stock? Many practitioners expand their discount rate by tacking on a country risk premium (CRP). In other words, they’ll start with a standard global CAPM approach and then add an extra yield to account for the unique risk of that market.

A popular formula is:

$$ \displaystyle r = r_f + \beta\,(E(R_m)-r_f) + \text{CRP} $$

• CRP Estimation Methods:
– Sovereign bond yield spreads (e.g., comparing a 10-year local bond yield with a 10-year U.S. Treasury).
– Credit Default Swap (CDS) spreads—often available for certain emerging market sovereign issuers.
– Damodaran’s approach: using equity risk premiums for developed markets plus an adjustment for country-specific default spreads and standard deviations of equity vs. bond markets.

Practical Tip: If a country’s a big commodity exporter, keep an eye on global commodity cycles. The CRP might need to be revised if, say, oil prices plummet and roil the local economy. Likewise, watch for short-term capital surges that can push down local yields, artificially deflating your CRP calculation.

Practical Applications and Advanced Notes

• Scenario Analysis: Picture a scenario where a new administration takes office and announces higher corporate taxes, or perhaps a central bank pegged the currency at an overvalued rate. Build “worst case” and “best case” versions of your discounted cash flow (DCF) or multiples-based models to see how political or monetary shifts could influence your investment.
• Stress Testing Liquidity: If you’re investing in a frontier market, jolt your trading liquidity assumptions by cutting daily volume in half or doubling the average bid-ask spread. This worst-case simulation can reveal whether a meltdown liquidity event might cause serious harm to your position.
• Double Taxation or Withholding Issues: In some jurisdictions, dividends to foreign shareholders might face heavy withholding taxes. This is an important component of your net yield analysis, not to be overlooked when you do your final valuations.

Below is a short Mermaid diagram to illustrate how major risk factors connect to the CRP in emerging and frontier markets:

    graph LR
	    A["Analyze <br/>Political Environment"] --> B["Assess <br/>Liquidity Constraints"]
	    B --> C["Evaluate <br/>Currency Factors"]
	    C --> D["Add <br/>Country Risk Premium"]

A Brief Python Example for Scenario Analysis

If you’re comfortable with Python, you could run a quick scenario test that simulates potential currency draws or expansions in the bid-ask spread. In real life, you’d obviously refine these assumptions using actual market data:

 1import random
 2
 3scenarios = 10000
 4initial_fx = 1.0   # Suppose local currency is pegged at 1:1
 5base_spread = 0.02 # 2% as an example bid-ask spread
 6
 7fx_changes = []
 8spread_changes = []
 9
10for _ in range(scenarios):
11    # Random shock to currency, range for demonstration
12    fx_shock = initial_fx + (random.uniform(-0.3, 0.3))
13    # Random shock to spread, range for demonstration
14    spread_shock = base_spread + (random.uniform(-0.01, 0.03))
15    
16    fx_changes.append(fx_shock)
17    spread_changes.append(spread_shock)
18
19avg_fx = sum(fx_changes) / scenarios
20avg_spread = sum(spread_changes) / scenarios
21
22print(f"Average simulated currency: {avg_fx:.2f}")
23print(f"Average simulated bid-ask spread: {avg_spread:.2%}")

Sure, it’s crude, but it might give you a directional sense of how a blowout in currency or local liquidity could impact your final returns.

Conclusion and Exam Tips

When venturing into emerging and frontier markets, a thorough analysis of political, liquidity, and currency risks is critical for building a realistic equity valuation. Don’t underestimate how rapidly a local government can shift policies, or how quickly a currency can tumble under global pressure or local mismanagement. Attempt to incorporate these uncertainties via explicit discount-rate adjustments (like the CRP) and scenario analyses.

• On exam day, practice item sets that revolve around a hypothetical frontier market scenario.
• Pinpoint how to separate the normal equity risk premium (ERP) from your country-specific premium.
• Watch out for potential “red flag” details in a vignette—such as references to new tariff regimes or contradictory central bank statements. These details usually hint at higher political or currency risk that must be factored into valuations.

Keeping these points in mind positions you to handle the unique set of issues that come with chasing higher returns in lesser-known markets.

Glossary

Political Risk
The risk of losses to investors due to political instability, policy changes, or expropriation.
Liquidity Premium
Additional return required by investors for holding assets with limited marketability.
Bid-Ask Spread
The difference between the price buyers are willing to pay (bid) and sellers are willing to accept (ask).
Capital Controls
Government-imposed restrictions on capital movements across borders, potentially limiting currency convertibility.
Country Risk Premium (CRP)
The extra yield demanded by investors to compensate for specific risks of investing in a foreign country, such as political and currency risks.
Convertible Currency
A currency that can be freely traded on the foreign exchange markets without restrictions.
Repatriation
Converting foreign currency into the investor’s home currency and transferring funds back to the home base.
Sovereign Yield Spread
The difference between yields on bonds issued by two different governments, often used to measure country-specific risk.

References

• Damodaran, A. (2021). “Measuring Market Risk Premiums and Country Risk Premiums.”
• International Monetary Fund (IMF): https://www.imf.org/
• World Bank’s “Ease of Doing Business” reports: https://www.worldbank.org/

Test Your Knowledge: Unique Risks in Emerging and Frontier Markets

### When analyzing political risk in an emerging market, which of the following factors is typically the MOST critical? - [ ] Historical volatility of the local currency - [x] Stability and track record of the local government - [ ] Average daily trading volume in the local market - [ ] Sovereign yield spread versus developed markets > **Explanation:** Political risk revolves primarily around local government stability and policies that can change abruptly or become hostile to foreign investment. ### Which of the following BEST characterizes liquidity concerns in frontier markets? - [x] Smaller market capitalizations and thinly traded stocks - [ ] Highly diversified investor base - [ ] Narrow bid-ask spreads - [ ] Robust capital controls that prevent large inflows > **Explanation:** Frontier markets typically exhibit smaller market capitalization and thinner trading volumes, leading to higher transaction costs and potential price slippage. ### All else being equal, if a country imposes strict exchange controls limiting currency convertibility, what is the most likely effect on foreign equity investors? - [x] A higher discount rate to account for restricted repatriation - [ ] A significantly lower dividend yield - [ ] A reduction in political risk - [ ] No meaningful impact on investor required returns > **Explanation:** Exchange controls increase currency and repatriation risks, making it harder for foreign investors to move capital. This risk is typically reflected in a higher required return. ### How can a Country Risk Premium (CRP) be estimated for the purpose of equity valuation? - [ ] Using macroeconomic factor models - [ ] Using technical analysis of stock price movements - [x] Observing the yield spread between a sovereign bond and a developed market benchmark - [ ] Checking daily exchange rate fluctuations > **Explanation:** A common approach to approximating CRP is to compare a local sovereign bond yield to a benchmark like the 10-year U.S. Treasury or to use CDS spreads. ### Which quote below BEST describes bid-ask spreads in emerging and frontier markets? - [x] "They can be significantly wider than in developed markets, leading to higher trading costs." - [x] "They often reflect the smaller pool of buyers and sellers willing to trade at any given time." - [ ] "They tend to be minuscule because liquidity is abundant." - [ ] "They remain fixed at government-mandated levels." > **Explanation:** In less liquid markets, fewer participants lead to larger bid-ask spreads; these can jump even more if large orders enter the market. ### In the context of political risk, which strategy is often employed to reduce vulnerability to unexpected regime changes? - [x] Diversifying across multiple countries - [ ] Engaging only in short selling - [ ] Implementing a strict currency hedge - [ ] Ignoring government policies and focusing on technical indicators > **Explanation:** Political risk can be partially mitigated by diversifying across different countries or regions, reducing the impact of any single regime change. ### Which of the following would NOT typically be considered a direct component of country risk premium? - [x] Company-specific default risk of a single local corporation - [ ] Political instability risk - [x] Broad liquidity constraints in the local equity market - [ ] Greater volatility in local currency exchange rates > **Explanation:** CRP generally encompasses systemic risks (political, liquidity, currency) at the country level rather than idiosyncratic, company-specific default risks; however, liquidity constraints across the entire market can also be captured under CRP if they are systemic. ### When performing scenario analysis for an investment in a frontier market, which shock is LEAST relevant? - [x] Untimely rainfall pattern changes over a single quarter in a high-income country - [ ] A sudden spike in capital flight - [ ] A regulatory overhaul freezing international currency transfers - [ ] A significant drop in global commodity prices if the country is resource-dependent > **Explanation:** While rainfall can influence specific agricultural markets, for a generic frontier market scenario analysis, overarching macro shocks (capital flight, regulatory freeze, commodity price drops) are far more relevant to systemic country risk. ### Which statement about currency risk is TRUE in the context of emerging markets? - [x] Major currency devaluations can overshadow solid company fundamentals, erasing potential gains. - [ ] Hedging is always inexpensive and widely available in frontier markets. - [ ] Historical currency stability is guaranteed to persist into the future. - [ ] Currency convertibility restrictions rarely affect repatriation of dividends. > **Explanation:** Large devaluations can destroy an investor’s returns even if the investee company’s fundamentals are strong, particularly in markets lacking inexpensive hedging instruments. ### A local stock trades on a frontier exchange with minimal liquidity. True or False: Investors are likely to require a liquidity premium as part of the discount rate for valuation. - [x] True - [ ] False > **Explanation:** Illiquid markets introduce higher transaction costs and greater challenges in exiting positions quickly, so investors typically demand a liquidity premium.
Wednesday, June 25, 2025 Friday, March 21, 2025

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.