Has the U.S. Dollar’s Position as a Global Safe Asset Diminished in 2025?#

23rd October 2025

Gita Gopinath, until very recently the top economist at the IMF, argues in a new column in The Economist that the ‘popping’ of the widely recognised bubble in U.S. equity markets might lead to a correction more painful than the ‘dotcom’ crash a quarter of a century ago.

Highlighting in particular the huge wealth losses that foreign investors could incur as a result, Gopinath casts doubt on thinking that the crash might be tempered by U.S. government bonds tendency to appreciate in value during times of turmoil:

"This 'flight to safety' has helped mitigate the impact of lost dollar-denominated wealth on foreign consumption. The greenback’s strength has long provided global insurance, often appreciating even when the crisis originates in America, as investors seek refuge in dollar assets... There are, though, reasons to believe that this dynamic may not hold in the next crisis."


Despite 2025 being a year characterised by multiple ‘risk-off’ phases in global financial markets, including resulting from the U.S. President’s ‘Liberation Day’ tariffs in April, the value of the U.S. dollar measured against a broad basket of currencies has steadily declined during 2025. The near continuous decline in value was only arrested due to expansionary fiscal policy, namely the July unveiling of the ‘Big Beautiful Bill’.

Hide code cell source

import getBISy.data as data
usd_eer = data.get_effective_exchange_rate_data('US', 'N', 'D', 'B')

figure1

Have the departures from orthodoxies in global trade led to established patterns in key relationships in global finance similarly breaking down?

One noted ‘law’ in international finance is failure of Uncovered Interest Rate Parity - that is, the tendency of high (low) interest rate currencies to appreciate (depreciate), implying the existence of profits to the carry trade.

As noted in the BIS’s latest Quarterly Review, this observed law - that higher interest rate currencies appreciate - broke down for the USD in April following the Liberation Day tariffs.

From the period 2020-2025, there was an positive relationship between the EURUSD exchange rate and the US-DE one-year yield spread, in line with the so-called ‘Fama Puzzle’. Since April, however, this relationship has not been as strong.

Hide code cell source

import refinitiv.data.eikon as ek
import datetime
import getBISy.data as data

# EUR/USD exchange rate
df_EUR = data.get_exchange_rate_data('EUR', 'DE')

# DE vs. U.S. one-year government bond yield differential
de = ek.get_timeseries(["EU1YT=RR"], start_date="2000-01-01", end_date=datetime.datetime.now(), interval='daily', fields=["CLOSE"])
us = ek.get_timeseries(["US1YT=RRPS"], start_date="2000-01-01", end_date=datetime.datetime.now(), interval='daily', fields=["CLOSE"])
df = de.join(us, lsuffix='_EU', rsuffix='_US')
df['ir_differential'] = df['CLOSE_US'] - df['CLOSE_EU']

figure2

Moreover, an essential observed characteristic of a global safe asset should be that it exhibits a high degree of correlation with other recognised safe assets. Looking at the correlation of 10Y U.S. Treasury Bonds with two other ‘safe-haven’ investments, Gold and 10Y Swiss Bunds, as well as the IX ‘Fear Index’, the relationship does indeed seem to have noticeably weakened this year.

Hide code cell source

import pandas as pd
import numpy as np

# USD  10-year government bonds
usd = ek.get_timeseries(["US10YT=RRPS"], start_date="2000-01-01", end_date=datetime.datetime.now(), fields=["CLOSE"])

# CHF 10-year bunds
chf = ek.get_timeseries(["CH10YT=RR"], start_date="2000-01-01", end_date=datetime.datetime.now(), fields=["CLOSE"])

# Gold price history
gold = ek.get_timeseries(["XAU="], start_date="2000-01-01", end_date=datetime.datetime.now(), fields=["CLOSE"])

# Merge into consolidated dataframe
crm = pd.merge(pd.merge(gold, chf, left_index=True, right_index=True, how='inner'), usd, left_index=True, right_index=True, how='inner').rename(columns={'CLOSE_x': 'Gold Price', 'CLOSE_y': 'CHF_10Y yield', 'CLOSE': 'US10Y yield'})

# Convert each relevant column to numeric
for c in ['Gold Price', 'CHF_10Y yield', 'US10Y yield']:
    crm[c] = pd.to_numeric(crm[c], errors='coerce')

# Calculate rolling correlations
crm['gold_log_diff'] = np.log(crm['Gold Price']).diff()
crm['usd_log_diff']  = np.log(crm['US10Y yield']).diff()
crm['chf_log_diff']  = np.log(crm['CHF_10Y yield']).diff()
crm['corr_gold_usd_1M'] = crm['gold_log_diff'].rolling(window='30D').corr(crm['usd_log_diff'])
crm['corr_chf_usd_1M'] = crm['chf_log_diff'].rolling(window='30D').corr(crm['usd_log_diff'])

figure3

Taken at face value, the implication is that U.S. assets can no longer be relied on to offer a cushion against declining asset values amidst a period of global financial crisis, as cautioned by Gopinath.

Aside from this however being a somewhat ‘back-of-the-envelope’ calculation, I would caution the above analysis with two caveats.

First, the role of FX Hedging played a key role in generating dollar weakness in April and May. As global uncertainty spiked, global investors with dollar exposures bought hedges on an ex post basis, contributing to USD weakness. This has little implication for the dollar’s role as a global safe asset.

Second, as with any statistic, it’s worth being cautious about extrapolating out correlations calculated in a period of relative stability to the potential future scenario of a global financial crisis. A catastrophically sharp correction in U.S. equity markets that spills over to wider financial system would mark a structural break in the dynamics governing it.

Finally, foreign capital did not actually flock en masse to the U.S. at the height of the GFC 2007-08 - something which I’ve already discussed. So there’s perhaps no reason to think that the dynamics of a potential crisis would be hugely different from before.

What the above does indeed illustrate, however, is how U.S. policy uncertainty can cause noticeable shifts in previously well-founded and established rules in international finance.

Matthew Potts

crossbordercode.com