All datasets

Global housing price signals (real house prices, boom/bust gauges, forecasts)

Signals derived from the BIS real residential property price series (quarterly, as published on FRED) for 18 economies: 30-quarter annualized volatility of quarterly changes, quarterly momentum, year-over-year percent change (the housing boom/bust gauge), a cycle-position percentile of current growth versus each country's own history, 3-sigma anomaly flags, naive-drift 1-quarter forecasts and a per-quarter cross-country volatility rank. 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 Bank for International Settlements.

Source: Housing Price Signals (derived)3,780 rowsUpdated: 9/22/2026
housinghouse-pricesreal-estateboom-bustvolatilitymomentumanomaly-detectionforecastingsignalsbisfred

Quality

99.1

Attribution

Federal Reserve Bank of St. Louis (FRED; BIS; 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. QUSR628BIS; resolves to the series page at https://fred.stlouisfed.org/series/<id>.
series_labelstringOfficial FRED series title as published for the series (BIS real residential property prices, quarterly).
valuefloatReal residential property price index as published by FRED/BIS for this series; see the series notes for base period, methodology and revisions.
volatility_30dfloat
momentum_1qfloat
yoy_change_pctfloat
cycle_positionfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_1qyoy_change_pctcycle_positionanomaly_flagforecast_1mrank
1947-01-01ItalyITAQITR628BISReal Residential Property Prices for Italy32.04160
1947-04-01ItalyITAQITR628BISReal Residential Property Prices for Italy29.9313-2.11030000000000230
1947-07-01ItalyITAQITR628BISReal Residential Property Prices for Italy27.9126-2.0186999999999990
1947-10-01ItalyITAQITR628BISReal Residential Property Prices for Italy29.12091.20829999999999770
1948-01-01ItalyITAQITR628BISReal Residential Property Prices for Italy33.82554.7045999999999995.56744981524017751000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/world_housing_signals/global_housing_price_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/world_housing_signals/global_housing_price_signals

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