All datasets

Norway macro momentum signals (labour-market and CPI momentum, anomaly flags)

Value-added Norwegian macro signals derived from the free Statistics Norway StatBank labour-force survey and consumer price index (CC-BY-4.0): unemployment-rate, participation-rate and employment momentum with 3-month annualized rates, 2-year z-scores and 3-sigma anomaly flags, plus headline CPI momentum — a compact Norway macro-momentum dashboard for oil-economy and Nordic watchers. All computation is local pandas/numpy; no paid models or APIs.

Source: Norway Macro Momentum Signals (derived)1,983 rowsUpdated: 9/22/2026License: CC-BY-4.0
norwaylabour-marketunemploymentcpimomentumanomaly-detectionsignalsssb

Quality

99.8

Attribution

Statistics Norway; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference month of the observation (first day of the month), as published in the Statistics Norway StatBank tables.
countrystring
country_codestring
series_idstringDerived series identifier: LFS_UNEMP_RATE (unemployment rate, LFS), LFS_PARTICIPATION (labour force in percent of the population), LFS_EMPLOYMENT (total employment), or CPI_ALL_ITEMS (consumer price index, all items).
series_labelstringHuman-readable series label from the Statistics Norway StatBank table, naming the indicator, population scope, and seasonal adjustment.
valuefloatIndicator value as published by Statistics Norway: rates in percent, employment in thousands of persons, CPI as an index.
momentum_3mfloat
mom_3m_annualizedfloat
z_2yfloat
anomaly_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3mmom_3m_annualizedz_2yanomaly_flag
1920-03-01NorwayNORCPI_ALL_ITEMSConsumer Price Index, all items (Statistics Norway)3.70
1920-04-01NorwayNORCPI_ALL_ITEMSConsumer Price Index, all items (Statistics Norway)3.80
1920-05-01NorwayNORCPI_ALL_ITEMSConsumer Price Index, all items (Statistics Norway)3.80
1920-06-01NorwayNORCPI_ALL_ITEMSConsumer Price Index, all items (Statistics Norway)3.90.199999999999999730.79999999999999890
1920-07-01NorwayNORCPI_ALL_ITEMSConsumer Price Index, all items (Statistics Norway)40.200000000000000180.80000000000000070

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ssb_norway_signals/norway_macro_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/ssb_norway_signals/norway_macro_momentum_signals

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