All datasets

Emerging-market currency stress signals (depreciation momentum, shock flags)

Signals derived from FRED's daily emerging-market FX series (local currency per USD) for India, Brazil, South Korea and Thailand: 30-day annualized log-return volatility, 63-day depreciation momentum, 1-year depreciation, drawdown depth vs the trailing 1-year high, 3-sigma currency-shock anomaly flags, naive-drift 21-day forecasts and a per-day cross-currency volatility rank. The EM-stress companion to the broad US-dollar-strength signals. All rows carry canonical country_code so they join cleanly with country-keyed macro data. Raw series: Federal Reserve Bank of St. Louis (FRED), underlying data Federal Reserve Board.

Source: EM Currency Stress Signals (derived)44,164 rowsUpdated: 9/22/2026
fxemerging-marketscurrencydepreciationdevaluationvolatilitymomentumanomaly-detectionforecastingsignalsfred

Quality

99.8

Attribution

Federal Reserve Bank of St. Louis (FRED; derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringObservation date (FRED API field date; YYYY-MM-DD).
countrystring
country_codestring
series_idstringFRED series ID, e.g. DEXINUS; resolves to the series page at https://fred.stlouisfed.org/series/<id>.
series_labelstringOfficial FRED series title as published for the series (foreign exchange rate, local currency per USD, daily).
valuefloatSpot exchange rate in units of local currency per one US dollar, as published by FRED; a rising value means the local currency is weakening against the dollar. See the series notes for methodology.
volatility_30dfloat
momentum_3mfloat
depreciation_yoy_pctfloat
drawdown_1yfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3mdepreciation_yoy_pctdrawdown_1yanomaly_flagforecast_1mrank
1973-01-02IndiaINDDEXINUSIndian Rupees to U.S. Dollar Spot Exchange Rate8.020
1973-01-03IndiaINDDEXINUSIndian Rupees to U.S. Dollar Spot Exchange Rate8.020
1973-01-04IndiaINDDEXINUSIndian Rupees to U.S. Dollar Spot Exchange Rate80
1973-01-05IndiaINDDEXINUSIndian Rupees to U.S. Dollar Spot Exchange Rate8.010
1973-01-08IndiaINDDEXINUSIndian Rupees to U.S. Dollar Spot Exchange Rate80

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/emfx_signals/em_currency_stress_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/emfx_signals/em_currency_stress_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/emfx_signals/em_currency_stress_signals

Tip: fetch /llms.txt for the full machine-readable catalog.