All datasets

US-China bilateral trade signals (decoupling tracker)

US-China bilateral goods-trade signals (Census via FRED, monthly 1985 ->): import/export momentum, 30-period change volatility, 3-sigma shock flags, drift forecasts, the bilateral deficit tracker, its 5-year z-score and the export reciprocity gauge. The bilateral lens: where the decoupling story shows up in the numbers. US government data via FRED (free, keyless-by-reuse of the existing FRED key).

Source: US-China Trade Signals (derived)998 rowsUpdated: 9/22/2026
chinatradebilateral-tradeimportsexportsdecouplingdeficitcensusmacroeconomicsanomaly-detectionforecastingsignalsfred

Quality

99.5

Attribution

U.S. Census Bureau via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference month (FRED observation date; monthly, seasonally adjusted).
countrystringUnited States (all series are US bilateral).
country_codestringISO 3166-1 alpha-3 code: USA.
series_idstringFRED series ID: IMPCH (U.S. imports of goods from China) or EXPCH (U.S. exports of goods to China).
series_labelstringOfficial FRED series title as published in the series metadata.
valuefloatU.S. goods trade flow with China in millions of dollars, seasonally adjusted (imports on a customs basis; exports on an FAS basis); U.S. Census Bureau via FRED.
yoy_change_pctfloat
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
bilateral_deficitfloat
deficit_yoy_changefloat
deficit_z_5yfloat
export_share_of_bilateralfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvalueyoy_change_pctmomentum_3mvolatility_30danomaly_flagforecast_1mbilateral_deficitdeficit_yoy_changedeficit_z_5yexport_share_of_bilateral
1985-01-01United StatesUSAEXPCHU.S. Exports of Goods by F.A.S. Basis to Mainland China319.20-26.0999999999999661.089048106448311
1985-02-01United StatesUSAEXPCHU.S. Exports of Goods by F.A.S. Basis to Mainland China222.7058.300000000000010.7925266903914591
1985-03-01United StatesUSAEXPCHU.S. Exports of Goods by F.A.S. Basis to Mainland China239.5053.50.8174061433447098
1985-04-01United StatesUSAEXPCHU.S. Exports of Goods by F.A.S. Basis to Mainland China265.6-16.79197994987468017.699999999999990.9375220614189905
1985-05-01United StatesUSAEXPCHU.S. Exports of Goods by F.A.S. Basis to Mainland China329.347.867085765603970-34.199999999999991.115892917655032

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/china_trade_signals/us_china_trade_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/china_trade_signals/us_china_trade_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/china_trade_signals/us_china_trade_signals

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