Live release feed
Sub-second macro releases for FX backtests
Point-in-time history

Trade Views

Market Analysis

インフレ差と対貨:EUR/USD,AUD/USD USD/CAD

How the gap between two countries' inflation rates signals the medium-term direction of their exchange rate. A data-driven walkthrough of EUR/USD, AUD/USD, and USD/CAD using CPI, core, trimmed-mean, and PCE series from the FXMacroData API.

他言語版 English
Share article X LinkedIn Email
インフレ差と対貨:EUR/USD,AUD/USD USD/CAD image

When inflation runs hotter in one country than in a trading partner, the higher-inflation currency almost always loses ground over the medium term. The intuition is straightforward: purchasing power erodes faster where prices rise faster, and exchange rates ultimately reflect that divergence. But the timing, magnitude, and which inflation measure to watch differ sharply depending on the currency pair. EUR/USD tracks ECB versus Fed PCE divergence; AUD/USD pivots on RBA trimmed-mean readings versus US core; USD/CAD is shaped by the Bank of Canada's three-core framework versus the Fed's preferred gauge.

This article maps the inflation-differential framework to each of those three major crosses, explains which specific indicators drive central bank reactions, and shows how to pull and compare the relevant series programmatically via the FXMacroData API.

Core Framework: Three Pairs, Three Differentials

EUR/USD tracks the ECB HICP ex-food-and-energy gap versus US core PCE — the two gauges each central bank formally targets. AUD/USD 平均インフレ率とPCEの差のピボットが 引き裂かれています. 供給による変動をなくし,需要圧力を反映しています. ドル/CAD 基本CPIとカナダ銀行CPI・TrimとCPI-Medianの平均の差によって決まる.

なぜ インフレ 差 が 通貨 率 を 動かす の です か

理論的基礎は購買力平価 (PPP):長期的には,国Aの価格水準が国Bの価格より速く上昇した場合,国B通貨は物価の実質コストが均等になるように減価する必要があります.実際は,通貨レートは,KPPを常に超えて低減します.これは,運搬流量,リスクセンチメンタル,短期資本配置によって引き起こされます.しかし,インフレ差は,特に中央銀行の政策への影響により,最も強力な中期アンカーの一つです.

The transmission mechanism is two-stage. First, a persistent positive inflation differential (home inflation above partner inflation) signals to the home central bank that rates need to stay higher for longer — or be hiked further — relative to the partner central bank. Second, that policy-rate divergence then attracts capital into the higher-rate currency, driving appreciation. The FX move is not primarily about prices equalising directly; it is about the interest-rate response that inflation differentials trigger.

インフレ差の最も取引可能なバージョンは原価CPI格差ではなく, 政策関連 基本インフレ格差 各中央銀行が実際に対応する指標です.それゆえ,EUR/USDトレーダーは,頭文字対頭文字ではなく,ECBHICPの食品エネルギー別対FedPCEに重点を置く.

インフレ差異枠 通貨結果へのシグナル

例として,母国の基本インフレがパートナー国の水準を上回る場合,中央銀行の反応 (金利の上昇) は資本流入と通貨の上昇を促します.この関係は差値ピークの3~9ヶ月後に最も強くなります.

EUR/USD:ECB vs. FED インフレ差異

The ECB targets HICP inflation "below but close to 2%", with HICP ex-food-and-energy as the primary internal gauge of demand-driven price pressure. The Federal Reserve formally targets PCE inflation at 2%, with core PCE (excluding food and energy) as its preferred underlying measure. The spread between these two — ECB's core HICP and Fed's core PCE — is the inflation-differential signal most directly linked to EUR/USD medium-term direction.

The 2021–2023 inflation surge exposed this dynamic in sharp relief. European energy costs spiked more dramatically than in the US, pushing euro-area headline CPI far above core. The ECB lagged the Fed's hiking cycle by roughly twelve months — partly because policymakers initially attributed the surge to energy supply shocks rather than entrenched demand. By the time both banks were hiking in earnest through 2022–2023, core PCE had been running persistently above ECB's core HICP, biasing the differential toward the dollar. EUR/USD spent much of 2022 below parity, reaching 0.9525 in September 2022.

両央行が2024年~2025年に緩和サイクルに入ったとき,差は収縮し始めた.ECBは,ユーロ圏の急激なデインフレにより正当化された削減に先駆け,より迅速に動き出した.Fedは2026年第1四半期まで利率を高く維持し,米国マイナスユーロ圏差を保持し,一般的にドルを強く維持した.持続的なEUR/USD回復の主要な先行指標は,ECBの一時停止信号だけではない.それはECBのコアHICPが米国のコアPCEに向かってまたはそれ以上へと収束している証拠である.

EUR/USD: 通貨レートの対比率とインフレ率の基本差

ECB core HICP ex-food-energy minus US core PCE (left axis, blue). EUR/USD rate (right axis, amber). A positive differential — European core above US core — is historically associated with a stronger euro. Illustrative values approximating 2022–2026 dynamics.

両方のシリーズを抽出し,FXMacroData APIでEUR/USDインフレ差を計算するには,

import requests

BASE = "https://fxmacrodata.com/api/v1"
KEY  = "YOUR_API_KEY"

def fetch(currency: str, indicator: str, start: str = "2022-01-01") -> list[dict]:
    r = requests.get(
        f"{BASE}/announcements/{currency}/{indicator}",
        params={"api_key": KEY, "start": start}
    )
    r.raise_for_status()
    return r.json()["data"]

# ECB core (HICP ex food and energy)
eur_core = fetch("eur", "core_inflation")

# Fed core PCE
usd_core_pce = fetch("usd", "core_pce")

print("ECB core HICP (latest):", eur_core[0]["val"], "% as of", eur_core[0]["date"])
print("US core PCE   (latest):", usd_core_pce[0]["val"], "% as of", usd_core_pce[0]["date"])

# Differential: positive = EUR inflation above USD → historically EUR-positive
diff = eur_core[0]["val"] - usd_core_pce[0]["val"]
print(f"\nEUR-USD core inflation differential: {diff:+.2f}%")
print("Signal:", "EUR-positive" if diff > 0 else "USD-positive" if diff < 0 else "Neutral")

ユーロインフレの完全なパッケージのAPIドキュメント: /api-data-docs/eur/core_inflation インフレ率について家庭に 送金する /api-data-docs/usd/core_pce コンピュータのデータわかった

EUR/USDインフレ差額 トレーダー・プレイブック

  • ユーロの上昇信号: ユーロ/ドルの変動幅が上昇する見通しです.
  • EURの下落信号 ECBのコアHICPが引き続き低下し,米国のコアPCEは2.5%以上にとどまっている.
  • 確認のトリガー: 基本経路の修正は,個々のデータ印刷よりもEURを移動します.
  • 遅延して見よう 利差シフト後,通常2〜4ヶ月で,OISでレート削減価格設定が再評価される時期を反映する.

AUD/USD:RBAのトリミング・ミニアンとFedのコア・PCE

オーストラリアのインフレ測定方法は統計的に特徴的です.オーストラリア準備銀行は,事前に定義されたカテゴリを除外するのではなく,最も極端な価格動向 (配分の重量による上位および下位15%) を毎季度除去する分布的指標であるトリミング・ミニアンインフレを追跡しています.結果は,任意の期間で変動するものに自動的に調整されるより適応性の高い基礎指標です.

Fed の好ましい対価であるコアPCEは,異なる方法論 (チェーン・ウェイトとサービス重組) を使用しているが,同じ概念的な目的を果たしている.供給ショックではなく需要による価格圧力を捉える.RBAのトリミング・ミニアと米国のコア PCEの差は,AUD/USDにとって最もきれいなインフレ差信号である.

Australia reports its trimmed-mean series quarterly, which means major CPI releases (typically in late January, late April, late July, and late October) are treated as high-impact events by AUD traders. A trimmed-mean print significantly above the RBA's 2–3% target band while US core PCE is cooling creates a positive differential that forces markets to price out near-term RBA cuts — and in many cases to price in the possibility of further tightening. Both of these effects are AUD-positive.

AUD/USD: 切り替えられた平均対コアPCE差

RBA trimmed mean (quarterly, blue) vs US core PCE (monthly, amber). Differential shaded green. When trimmed mean exceeds core PCE, RBA policy diverges hawkish relative to the Fed — historically associated with AUD strength. Illustrative values approximating 2022–2026 dynamics.

Because Australia reports CPI quarterly and the US reports PCE monthly, the data frequency mismatch is a feature rather than a bug for event-driven traders: quarterly AUD CPI prints carry disproportionate impact relative to monthly US prints, and the four annual release dates create predictable high-volatility windows.

import requests
import pandas as pd

BASE = "https://fxmacrodata.com/api/v1"
KEY  = "YOUR_API_KEY"

def fetch(currency: str, indicator: str, start: str = "2022-01-01") -> pd.DataFrame:
    r = requests.get(
        f"{BASE}/announcements/{currency}/{indicator}",
        params={"api_key": KEY, "start": start}
    )
    r.raise_for_status()
    df = pd.DataFrame(r.json()["data"])
    df["date"] = pd.to_datetime(df["date"])
    return df.set_index("date").sort_index()

# RBA trimmed mean (quarterly)
aud_trim = fetch("aud", "trimmed_mean_inflation")

# US core PCE (monthly, converted to quarterly average for comparison)
usd_pce = fetch("usd", "core_pce")
usd_pce_q = usd_pce["val"].resample("QE").last()

print("RBA Trimmed Mean (latest):", aud_trim["val"].iloc[-1], "% as of", aud_trim.index[-1].date())
print("US Core PCE       (latest):", usd_pce["val"].iloc[-1], "% as of", usd_pce.index[-1].date())

diff = aud_trim["val"].iloc[-1] - usd_pce["val"].iloc[-1]
print(f"\nAUD-USD inflation differential: {diff:+.2f}%")
print("Signal:", "AUD-positive" if diff > 0 else "USD-positive")

AUDインフレエンドポイントの全文参照は /api-data-docs/aud/trimmed_mean_inflation インフレ率について月間CPI指標 (四半期印刷間公開): /api-data-docs/aud/月間_cpi 詳細はこちらからわかった

AUD/USD インフレ差額 トレーダー・プレイブック

  • 上昇信号 AUD: 平均は3%以上であり,米国のPCEは2%に低下する.
  • 熊本からの信号 平均値が2.5%以下に下がる一方,Fedは安定している.RBAはより積極的に削減することを余儀なくされた.AUD/USDの0.63以下に突破する.
  • 影響のある日程: Q1 CPI (late April), Q2 CPI (late July), Q3 CPI (late October), Q4 CPI (late January). Mark these as AUD volatility windows.
  • 月間CPI指標: 半年ごとに印刷される 月間カットされた推定値.合意値以下の印刷は,半年度の下落を予告し,早期位置付けを提供することができます.

USD/CAD: Bank of Canada Three-Core vs Fed Core CPI

Canada operates the most sophisticated core inflation framework among G10 central banks. The Bank of Canada formally monitors three simultaneous core measures: CPI-Trim (trims the extremes, similar to Australia's method), CPI-Median (the price change at the 50th percentile of the distribution), and CPI-Common (tracks price changes common across categories). The BoC's operating guide is the average of CPI-Trim and CPI-Median.

USD/CADの政策関連差は,このBCCコア平均値と米国コアCPIの差である.カナダコアが米国コアの上位に走っているとき,BCは国内インフレ圧力がより持続的に強くなり,ドルに対してCADが支持されているFedの相対性により激しく削減することができない.

石油価格チャネルは,USD/CADに特有の複雑さを追加する.カナダは原産物輸出国である.高価格の石油はカナダの貿易条件,エネルギー部門の企業収益,政府財政収入に栄養を与える.これは,純インフレ差異信号を部分的に抵消または増幅できるWTI価格とCADとの間のポジティブな相関を作り出す.実際,インフレ差差異と石油価格の両方がCADに有利に動いているとき (カナダコアが高く,WTIが高く),USD/ CADの減少は急激である.両者が衝突する時,石油が落ちるがカナダコアは粘着している.このペアは範囲に縛られる.

USD/CAD:BCCの基本平均値 vs 米国CPI基本値差

BoC preferred core (Trim/Median average, blue) vs US core CPI (amber). Differential shaded. Positive differential (Canadian core above US core) is historically associated with CAD strength — i.e., lower USD/CAD. Illustrative values approximating 2022–2026 dynamics.

import requests

BASE = "https://fxmacrodata.com/api/v1"
KEY  = "YOUR_API_KEY"

def latest(currency: str, indicator: str) -> float:
    r = requests.get(
        f"{BASE}/announcements/{currency}/{indicator}",
        params={"api_key": KEY}
    )
    r.raise_for_status()
    return r.json()["data"][0]["val"]

# Bank of Canada core measures
cad_trim   = latest("cad", "core_inflation_trim")
cad_median = latest("cad", "core_inflation_median")
boc_core   = (cad_trim + cad_median) / 2          # BoC preferred composite

# US core CPI
usd_core_cpi = latest("usd", "core_inflation")

print(f"BoC CPI-Trim    : {cad_trim:.2f}%")
print(f"BoC CPI-Median  : {cad_median:.2f}%")
print(f"BoC Core Average: {boc_core:.2f}%")
print(f"US Core CPI     : {usd_core_cpi:.2f}%")

diff = boc_core - usd_core_cpi
print(f"\nCAD-USD core differential: {diff:+.2f}%")
print("Signal:", "CAD-positive (USD/CAD bearish)" if diff > 0 else "USD-positive (USD/CAD bullish)")

完全なCADコアインジケータードキュメント: /api-data-docs/cad/core_inflation_trim インフレの状況についてほら /api-data-docs/cad/core_inflation_median インフレの平均値についてわかった

USD/CAD インフレ差額 トレーダー・プレイブック

  • 上昇するCAD (下落するUSD/CAD): 韓国の中央銀行の中央平均値は,米国の中核CPI+WTI上昇.両チャネルもCADを好む.USD/CADのサポートブレイクが1.35以下に期待する.
  • 熊本CAD: BoC core declining below US core + oil falling. Double pressure on CAD. USD/CAD tends to spike toward 1.40–1.42.
  • 差点監視: チェンジ・コアと石油が反対方向に動いている場合,両者は横向きにトレンドすることができます.
  • 重要なBoC会議の反応: 市場が減期を予想していたときに 驚愕的な BOCの維持は 特にCPI-TrimとCPI・Medianが3パーセント以上にあるとき 最も強力な短期 CAD触媒です

クロスペア比較:三つの差異性

Tracking all three inflation differentials simultaneously gives a cross-asset picture of where the US dollar stands relative to its major trading partners. A world in which all three differentials favour the USD — ECB core < Fed core PCE, Australian trimmed mean < Fed core PCE, and BoC core < US core CPI — is a structurally strong-dollar environment. When even one or two of these flip, the dollar basket weakens.

Three-Pair Differential Scorecard — Current Readings vs USD

Illustrative radar chart: each axis represents the inflation differential vs USD for the three pairs. Positive values (outside the centre) indicate the foreign currency faces higher inflation pressure than the US — historically associated with strength in the foreign currency. Illustrative values for analytical framing.

The following snippet pulls all five inflation series in one block and produces a comparison table:

import requests, json

BASE = "https://fxmacrodata.com/api/v1"
KEY  = "YOUR_API_KEY"

series = {
    "EUR core HICP"  : ("eur", "core_inflation"),
    "AUD trimmed mean": ("aud", "trimmed_mean_inflation"),
    "CAD Trim"       : ("cad", "core_inflation_trim"),
    "CAD Median"     : ("cad", "core_inflation_median"),
    "USD core PCE"   : ("usd", "core_pce"),
    "USD core CPI"   : ("usd", "core_inflation"),
}

readings = {}
for label, (ccy, ind) in series.items():
    r = requests.get(f"{BASE}/announcements/{ccy}/{ind}", params={"api_key": KEY})
    d = r.json()["data"][0]
    readings[label] = {"val": d["val"], "date": d["date"]}
    print(f"{label:25s}  {d['val']:5.2f}%  ({d['date']})")

boc_core = (readings["CAD Trim"]["val"] + readings["CAD Median"]["val"]) / 2
usd_pce  = readings["USD core PCE"]["val"]
usd_cpi  = readings["USD core CPI"]["val"]

print("\n--- Differentials ---")
print(f"EUR/USD  ECB core minus Fed PCE : {readings['EUR core HICP']['val'] - usd_pce:+.2f}%")
print(f"AUD/USD  Trim mean minus Fed PCE: {readings['AUD trimmed mean']['val'] - usd_pce:+.2f}%")
print(f"USD/CAD  BoC avg minus US core  : {boc_core - usd_cpi:+.2f}%")

実践的枠組み: 差分から貿易論説

The inflation differential is a medium-term input, not a short-term trigger. It typically takes 3–9 months for a shift in the core-inflation spread to fully propagate through central bank guidance, OIS pricing, and eventually spot FX. The practical workflow for integrating this into a trade thesis runs through four steps.

ステップ 1 流の差分方向を確立する Query the latest readings and compute the spread. Is the home-country core above or below the partner? Has the trend been widening or narrowing over the past three quarters?

ステップ2 中央銀行の政策姿勢に差を映し出す 拡大するポジティブな差 (ホームコアがパートナーコアよりも上昇) は,通常,パートナーが緩和に向かっている間に,ホーム中央銀行を保持または上昇させることを強制する.最も強力な設定は,差が拡大しているときであり,中央銀行のコミュニケーションがまだ完全に反映されていないときである.

ステップ3 確認触媒の放出カレンダーを確認する. やってみろ /ダッシュボード/リリースカレンダー 通貨の次回のインフレ印刷がいつになるかを特定するために.例えば,即日発生するAUDの四半期CPIは,熱調平均値が差差信号を直ちに加速させるバイナリーイベントとして知られています.

ステップ4 失効点を特定する 供給ショックや地政学的な出来事が支配するときに差異的な枠組みは崩壊する.国内干ばつが食料価格を押し上げるため,AUDが平均的なピークを削減した場合,それは供給に左右され,RBAはそれを調べる.差異信号は一時的に信頼性が低い.エネルギー価格,商品指数,PPIとのクロスチェックで,需要による供給によるインフレ動向を区別する.

インフレ 差異信号強度 方向精度

Illustrative: approximate directional hit rate when the core inflation differential points in one direction for three or more consecutive quarters. Strongest for EUR/USD and AUD/USD where both central banks have clear core-inflation mandates. USD/CAD is noisier due to the oil price channel. Based on historical analysis of 2010–2025 periods.

リリースカレンダーと統合されたこのフレームワークは, /ダッシュボード/リリースカレンダー ダイッシュボードは /ダッシュボードインフレ差のどれが変化し,その為の為替トレンドに位置するかを,完全に価格化される前に,体系的に監視する方法を提示しています.

Blogroll

AI Answer-Ready

Key Facts

Page
Inflation Differentials FX Pairs
Section
Articles
Canonical URL
https://fxmacrodata.com/ja/articles/inflation-differentials-fx-pairs
Source
FXMacroData editorial and official publisher references
Last Updated
2026-06-15 11:06 UTC

Provenance And Trust

Cite the canonical URL and source field above. Where available, this page maps to official publisher releases and timestamped updates.

Quick Q&A

What is this page about? This page explains Inflation Differentials FX Pairs with directly usable context for trading, research, and API workflows.

What source should be cited? Use the canonical URL and the listed source field; cite official publisher references when available.

How fresh is this content? The last updated value above reflects the page metadata or latest available data timestamp.

Can this be used in AI assistants? Yes. This section is intentionally structured for retrieval and citation in chat assistants.

Prompt Packs

Use these in ChatGPT, Claude, Gemini, Mistral, Perplexity, or Grok for consistent source-aware outputs.