Australia macro signals (CPI, 10-year bond yield, RBA-band gauges)
Monthly Australia macro signals from OECD Main Economic Indicators (via FRED): headline CPI (AUTCPIALLMINMEI, 1958 ->) and the 10-year Commonwealth Government bond yield (IRLTLT01AUM156N, 1989 ->), with 3-month momentum, year-on-year change, 30-month change volatility, 3-sigma anomaly flags, naive-drift forecasts, plus a high-inflation flag keyed to the top of the RBA's 2-3% target band, a 10-year-yield 5-year z-score and a yield-spike stress flag. The Australia lens on global macro — a commodity-linked, China-exposed advanced economy. Companion to japan-macro-signals (Asia-Pacific peer). All rows normalized to country_code AUS. Raw series: OECD Main Economic Indicators via FRED.
Qualité
Attribution
OECD Main Economic Indicators via FRED; signals by Frontier Data Hub
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | Observation date (FRED API field date; YYYY-MM-DD, monthly). |
| country | string | |
| country_code | string | |
| series_id | string | CPI: Consumer Price Index: All Items for Australia (FRED AUTCPIALLMINMEI); YIELD10Y: Long-Term Government Bond Yields: 10-Year for Australia (FRED IRLTLT01AUM156N). Both from the OECD Main Economic Indicators database. |
| series_label | string | CPI: headline consumer price index covering all items (OECD MEI). YIELD10Y: yield on 10-year Australian Commonwealth Government bonds, percent per annum (OECD MEI). |
| value | float | CPI: index level (OECD MEI). YIELD10Y: yield in percent per annum (OECD MEI). |
| momentum_3m | float | |
| yoy_change | float | |
| volatility_30d | float | |
| anomaly_flag | integer | |
| forecast_1m | float | |
| high_inflation_flag | float | |
| yield_z_5y | float | |
| yield_spike_flag | float |
Exemple de lignes
| date | country | country_code | series_id | series_label | value | momentum_3m | yoy_change | volatility_30d | anomaly_flag | forecast_1m | high_inflation_flag | yield_z_5y | yield_spike_flag |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1958-01-01 | Australia | AUS | CPI | Consumer Price Index: All Items for Australia (OECD MEI, monthly, index) | 15.565129999999998 | — | — | — | 0 | — | 0 | — | — |
| 1958-02-01 | Australia | AUS | CPI | Consumer Price Index: All Items for Australia (OECD MEI, monthly, index) | 15.59639 | — | — | — | 0 | — | 0 | — | — |
| 1958-03-01 | Australia | AUS | CPI | Consumer Price Index: All Items for Australia (OECD MEI, monthly, index) | 15.58076 | — | — | — | 0 | — | 0 | — | — |
| 1958-04-01 | Australia | AUS | CPI | Consumer Price Index: All Items for Australia (OECD MEI, monthly, index) | 15.8308 | 0.26567000000000185 | — | — | 0 | — | 0 | — | — |
| 1958-05-01 | Australia | AUS | CPI | Consumer Price Index: All Items for Australia (OECD MEI, monthly, index) | 16.03396 | 0.4375700000000009 | — | — | 0 | — | 0 | — | — |
Télécharger un échantillon
Téléchargez l'échantillon complet de ce jeu de données (lignes d'exemple, pas le jeu complet).
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/australia_macro_signals/australia_macro_signals" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/australia_macro_signals/australia_macro_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)Point d’accès API: https://datazimuts.com/v1/datasets/australia_macro_signals/australia_macro_signals
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.