All datasets

Canada monetary policy signals (policy stance, curve slope, funding stress)

Daily-to-monthly monetary-policy signals derived from Bank of Canada Valet data: 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, plus the real policy stance (target rate minus YoY CPI inflation), the CORRA-target funding-stress spread, the 10Y-2Y Canadian curve-slope spread and a policy-move streak tracker (consecutive hikes/cuts). Covers the BoC target for the overnight rate, the overnight rate, CORRA, 2Y/10Y benchmark bond yields and total/trim/median/common CPI inflation. All rows are normalized to country_code CAN so they join cleanly with Canadian macro data. Raw data: Bank of Canada (Valet API).

Source: Canada Monetary Policy Signals (derived)22,389 rowsUpdated: 9/22/2026
monetary-policybank-of-canadapolicy-ratecorrayield-curveinflationvolatilitymomentumanomaly-detectionforecastingsignalscanada

Quality

99

Attribution

Bank of Canada (Valet API; derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringObservation date (Valet field d; YYYY-MM-DD).
countrystring
country_codestring
series_idstringValet series name, e.g. STATIC_ATABLE_V39079 (target for the overnight rate), AVG.INTWO (CORRA), BD.CDN.10YR.DQ.YLD (10-year benchmark bond yield); resolves in the Valet API at https://www.bankofcanada.ca/valet/.
series_labelstringOfficial Bank of Canada series label from the Valet seriesDetail metadata.
valuefloatObservation value as published by the Bank of Canada for this series (policy rates and bond yields in percent; CORRA in percent; CPI measures as index or year-over-year percent change); see the Bank of Canada's notes for methodology.
volatility_30dfloat
momentum_3mfloat
yoy_change_pctfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
real_target_ratefloat
corra_target_spreadfloat
curve_spread_cafloat
policy_streakinteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3myoy_change_pctanomaly_flagforecast_1mrankreal_target_ratecorra_target_spreadcurve_spread_capolicy_streak
1995-01-01CanadaCANCPI_COMMONCPI-common1.100
1995-01-01CanadaCANCPI_MEDIANCPI-median1.700
1995-01-01CanadaCANCPI_TRIMCPI-trim1.800
1995-01-01CanadaCANSTATIC_TOTALCPICHANGETotal CPI, percentage change year-over-year (unadjusted)0.600
1995-02-01CanadaCANCPI_COMMONCPI-common1.200

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/boc_signals/canada_monetary_policy_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/boc_signals/canada_monetary_policy_signals

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