All datasets

Canada sectoral momentum signals (industry growth breadth, momentum ranks, anomalies)

Value-added Canadian macro signals derived from the free Statistics Canada GDP-by-industry data (Open Licence): per-industry 3-month annualized momentum, year-on-year growth, 3-sigma anomaly flags and monthly cross-industry momentum ranks, plus the headline growth-breadth gauge — the share of industries expanding — so users can see whether Canadian growth is broad-based or narrow. All computation is local pandas/numpy; no paid models or APIs.

Source: Canada Sectoral Momentum Signals (derived)6,018 rowsUpdated: 9/22/2026
canadagdpsectorsgrowth-breadthmomentumanomaly-detectionsignalsstatcan

Quality

99.5

Attribution

Statistics Canada; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference month of the observation (first day of the month), as published in the Statistics Canada GDP-by-industry table.
countrystring
country_codestring
series_idstringDerived series identifier: the raw StatCan GDP-by-industry series key prefixed with IND_.
series_labelstringHuman-readable series label naming the industry and the Statistics Canada table (seasonally adjusted at annual rates, chained 2017 dollars).
valuefloatIndustry GDP in chained (2017) dollars, seasonally adjusted at annual rates, as published by Statistics Canada.
mom_3m_annfloat
yoyfloat
anomaly_flaginteger
rankinteger
breadth_sharefloat
breadth_zfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemom_3m_annyoyanomaly_flagrankbreadth_sharebreadth_z
1997-01-01CanadaCANIND_v65201210All industries — GDP, seasonally adjusted at annual rates, chained (2017) dollars (Statistics Canada)120042700
1997-01-01CanadaCANIND_v65201211Goods-producing industries — GDP, seasonally adjusted at annual rates, chained (2017) dollars (Statistics Canada)38253600
1997-01-01CanadaCANIND_v65201212Services-producing industries — GDP, seasonally adjusted at annual rates, chained (2017) dollars (Statistics Canada)81288200
1997-01-01CanadaCANIND_v65201236Mining, quarrying, and oil and gas extraction — GDP, seasonally adjusted at annual rates, chained (2017) dollars (Statistics Canada)6993000
1997-01-01CanadaCANIND_v65201254Utilities — GDP, seasonally adjusted at annual rates, chained (2017) dollars (Statistics Canada)3475800

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/statcan_canada_signals/canada_sectoral_momentum_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/statcan_canada_signals/canada_sectoral_momentum_signals

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