All datasets

US federal fiscal signals (debt/deposit momentum, deficit tracker, anomalies)

Daily-quiet quarterly fiscal signals derived from FRED's US federal finance series: 30-period annualized change volatility, 3-month momentum, year-over-year change, 3-sigma anomaly flags, naive-drift 1-month forecasts, a per-date cross-series volatility rank, and the quarterly federal balance (receipts minus expenditures — the deficit tracker). Covers total federal public debt, federal current expenditures, federal current receipts, and the federal surplus or deficit. All rows are normalized to country_code USA so they join cleanly with US macro data. Raw series: Federal Reserve Bank of St. Louis (FRED; underlying data from US Treasury Fiscal Service, Bureau of Economic Analysis, and Office of Management and Budget).

Source: US Federal Fiscal Signals (derived)1,002 rowsUpdated: 9/22/2026
fiscaldebtdeficitfederal-budgetvolatilitymomentumanomaly-detectionforecastingsignalsfred

Quality

98.5

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. GFDEBTN, FGEXPND, FGRECPT, FYFSD; resolves to the series page at https://fred.stlouisfed.org/series/<id>.
series_labelstringOfficial FRED series title as published for the series.
valuefloatObservation value as published by FRED for this series (GFDEBTN in millions of dollars, FGEXPND and FGRECPT in billions of dollars, FYFSD in millions of dollars; negative FYFSD values are deficits); see the series notes for methodology and revisions.
volatility_30dfloat
momentum_3mfloat
yoy_change_pctfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
balance_qfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3myoy_change_pctanomaly_flagforecast_1mrankbalance_q
1901-06-30United StatesUSAFYFSDFederal Surplus or Deficit [-]630
1902-06-30United StatesUSAFYFSDFederal Surplus or Deficit [-]771422.2222222222222320
1903-06-30United StatesUSAFYFSDFederal Surplus or Deficit [-]45-32-41.558441558441560
1904-06-30United StatesUSAFYFSDFederal Surplus or Deficit [-]-43-88-195.555555555555570
1905-06-30United StatesUSAFYFSDFederal Surplus or Deficit [-]-2320-46.511627906976750

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/fiscal_signals/us_federal_fiscal_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/fiscal_signals/us_federal_fiscal_signals

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