Nine consecutive rate cuts. Two hundred and seventy-five basis points removed from policy in just sixteen months. The Bank of Canada completed one of the most aggressive easing cycles of any G10 central bank in living memory — and yet USD/CAD still sits near multi-year highs, the labour market remains slack, and the next BoC decision lands on April 29, 2026 against a backdrop of US tariff risk and a commodity price index that has been creeping lower for months.
この記事では,央行レートサイクルの全弧を図示し,決定を左右するマクロ指標を分解し,2026年の残りの部分に注目すべきことを特定し,単一のAPIコールですべての主要な信号を表面化するFXMacroDataエンドポイントを含む.
Core Finding — April 2026
The Bank of Canada's overnight rate is at 2.25% — the lower bound of the Bank's own neutral range estimate — following nine cuts from the 5.00% peak. With inflation near target, GDP contracting, and a 200-bps rate disadvantage vs the Fed, the dominant CAD risk is external: how deeply US tariffs dent Canadian export demand and whether the BoC is forced to cut into the next cycle before the Fed has even started one.
緊急税率から5.00%へ 2022年~2023年の緊縮サイクル
Like most G10 central banks, the BoC entered 2022 with policy rates anchored near zero — a legacy of pandemic-era emergency stimulus. Canadian CPI peaked at 8.1% in June 2022, the highest since 1983, forcing the Bank to act with unusual speed. Between March 2022 and July 2023, it delivered ten consecutive rate increases, moving the overnight rate from 0.25% to 5.00% — a full 475 basis points in just 16 months.
The speed and size of the hiking cycle was unprecedented for Canada in the modern era. Two 75-basis-point moves (June and September 2022) marked a departure from the Bank's typical 25-bps pace. By the time it reached 5.00% in July 2023, the BoC held at that level for nearly a full year while it waited for inflation to return to the 2% target.
Bank of Canada Overnight Rate — 2021 to April 2026
The full rate cycle: pandemic-era floor → fastest hike cycle in a generation → nine consecutive cuts to the neutral range. Source: CAD ポリシー_レート FXMacroData を使って
銀行の一日のレートの履歴を直接FXMacroDataから取得できます.
import requests
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
boc_rate = requests.get(
f"{BASE}/announcements/cad/policy_rate",
params={"api_key": KEY, "start": "2021-01-01"}
).json()["data"]
print(f"Current BoC rate : {boc_rate[0]['val']}% ({boc_rate[0]['date']})")
print(f"Next announcement: {boc_rate[0]['announcement_datetime']}")
The Great Easing: Nine Cuts in Sixteen Months
The Bank of Canada pivoted before virtually every other G10 central bank. With Canadian growth visibly slowing and inflation falling faster than expected, it began cutting in June 2024 — over three months before the US Federal Reserve made its first move. By October 2025, after nine consecutive reductions, the overnight rate sat at 2.25%.
BoC Easing Cycle — June 2024 to October 2025
| 日付 | 移動する | 税率後 | キードライバー |
|---|---|---|---|
| Jun 5, 2024 | −25bps | 4.75% | インフレ率は2%近くに戻り,成長は減速 |
| Jul 24, 2024 | −25bps | 4.50% | 労働市場緩和;住宅ローンのストレス |
| Sep 4, 2024 | −25bps | 4.25% | 目標に収束する基本インフレ指標 |
| Oct 23, 2024 | −50bps | 3.75% | 成長率は潜在的よりかなり低い. |
| Dec 11, 2024 | −50bps | 3,25% | GDP が収縮し,失業率が上昇 |
| Jan 29, 2025 | −25bps | 3.00% | 関税不確実性 ペースが減る |
| Mar 12, 2025 | −25bps | 2.75% | ビジネス信頼が悪化 |
| Sep 3, 2025 | −25bps | 2.50% | 持続的な緩慢;傾向の低い成長 |
| Oct 29, 2025 | −25bps | 2.25% ✓ | 中立下限に達; BoCは休止 |
Nine cuts, 275 bps of easing in 16 months. Source: CAD ポリシー_レート FXMacroData を使って
Two features of this cycle stand out. First, the Bank deployed two oversized 50 bps moves (October and December 2024) — the first time it had cut by that magnitude since the 2020 pandemic emergency. Second, the Bank explicitly flagged it had reached the "lower bound of its neutral range" in late 2025, signalling a pause rather than a full stop. Whether that pause holds through 2026 depends on the indicators below.
インフレ: 双核 枠組み
Canada's 2% inflation target is measured by headline CPI, but the Bank of Canada pays particular attention to two preferred core measures: CPI-Trim (最も変動する価格変動を毎月除外) CPI 中間数 (CPIの50パーセンチルの価格変動) これらは,共同で BoCの"ツインコア"フレームワークを形成し,次のレートの動きがカット,保持,または"尾のシナリオで"上昇であるかどうかを決定する主要な決定要因です.
カナダインフレ 上位CPI,CPI-Trim,CPi-Median (2022年2026年)
All three measures have converged on the 2% target. Core measures are stickier than headline — their persistence into 2025 was a key reason the BoC slowed its pace from 50 bps to 25 bps cuts. Sources: CAD インフレほら CAD core_inflation_trim についてほら CAD core_inflation_median インフレの中央値わかった
As of February 2026, headline CPI stood at 1.8% — below target — while the twin-core measures hovered just above 2.0%, confirming that underlying price pressures are contained rather than reigniting. For the BoC, this configuration is comfortable: inflation is not running away, and the Bank has room to ease further if growth disappoints. The risk is a commodity price spike — Canada remains highly exposed to energy through its BCPI index — which could quickly push headline inflation above core.
# Pull all three Canadian inflation measures
inflation = requests.get(f"{BASE}/announcements/cad/inflation", params={"api_key": KEY, "start": "2023-01-01"}).json()["data"]
cpi_trim = requests.get(f"{BASE}/announcements/cad/core_inflation_trim", params={"api_key": KEY, "start": "2023-01-01"}).json()["data"]
cpi_median = requests.get(f"{BASE}/announcements/cad/core_inflation_median", params={"api_key": KEY, "start": "2023-01-01"}).json()["data"]
print(f"Headline CPI : {inflation[0]['val']}% ({inflation[0]['date']})")
print(f"CPI-Trim : {cpi_trim[0]['val']}% ({cpi_trim[0]['date']})")
print(f"CPI-Median : {cpi_median[0]['val']}% ({cpi_median[0]['date']})")
労働 市場: 危険 が 増える
カナダの雇用背景は緩和サイクルを通じて著しく弱まりました. 2023年に5.0%近くに低下した失業率は,2025年末までに6.7%~6.8%に上昇しました. 流行病回復以来最高です. 月間雇用の変化は不安定で,パートタイムと公的部門の雇用によりますますポジティブな印刷がもたらされ,民間部門のフルタイム雇用は安定またはマイナスに残っています.
カナダの雇用変化と失業率 (2023年~2026年)
雇用の伸びは不均等であり,失業率は5.0%から6.7%に低下した.雇用の質は,量だけでなく,中央銀行が重視している. CAD の雇用ほら CAD失業率わかった
労働市場が弱くなり,BoCの政策は明らかに好ましい.失業率が上昇し続け,賃金成長 (現在約3.5%の年収) が停滞し始めると,Bo Cはさらに削減するカバーを持つだろう.逆に,フルタイム雇用の回復は,現在の2.25%の休止をより持続的にするホークのような驚きになるだろう.
USD/CADとレート差
The most direct transmission channel from BoC policy to FX markets is the Canada-US interest rate differential. With the Bank of Canada at 2.25% and the US Federal Reserve holding at 4.25–4.50% through much of 2025 and into 2026, the spread sits around 200 basis points in the USD's favour — the widest sustained differential in a decade.
USD/CAD vs BoC–Fed Rate Differential (2022–2026)
銀行が強硬に削減し,Fedが保持したため,レート差は急激に拡大し,CADの弱さを緊密に追跡した.USD/CADは2024年初頭の~1.34から2024年末までに1.45に上昇した. CAD ポリシー_レートほら ドル政策金利わかった
なぜ 違い が 今 に 重要 な の です か
利率差は通貨を機械的に動かすのではなく,貿易流と期待を運ぶ. 200bps BoC-Fedギャップは完全に価格化されている.ここからUSD/CADを動かすことは,Fedがカット (CAD上昇) にピホティングするか,BoCがすでに緩やかな政策姿勢 (CAD下落) に再びカットすることを余儀なくされるかである.両中央銀行のシグナルを同時に追跡することは,USD/ CADの正しい分析フレームです.
リアルタイムで差を監視するには
import requests
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
boc_rate = requests.get(f"{BASE}/announcements/cad/policy_rate", params={"api_key": KEY}).json()["data"][0]["val"]
fed_rate = requests.get(f"{BASE}/announcements/usd/policy_rate", params={"api_key": KEY}).json()["data"][0]["val"]
usdcad = requests.get(f"{BASE}/forex/usd/cad", params={"api_key": KEY}).json()["data"][0]["val"]
spread = fed_rate - boc_rate
print(f"BoC Rate : {boc_rate}%")
print(f"Fed Rate : {fed_rate}%")
print(f"Spread : +{spread:.2f}% (USD premium)")
print(f"USD/CAD : {usdcad}")
商品のワイルドカード:BCPIとCAD
カナダはG10経済の中で,その通貨が大宗商品価格と密接に関連しているという点でユニークである.カナダ銀行独自の大宗価格指数 (BCPI) カナダの輸出大宗製品の貿易重量化されたバスケットは,貿易条件,および拡張によりルーニーに対する最高のリアルタイム主要指標の一つです.
エネルギーはBCPIの重量の約半分を占める.WTI原油が落ちると,BCPIも落ち,カナダの貿易平衡は悪化し,CADは通常,金利政策に関係なく弱まります. 2025年には,需要不確実性と米国のシェール生産の増加による圧力の下の石油価格で,BCPIのエネルギー以外のサブインデックスも弱まり,木材,ポタッシュ,および基礎金属の弱さを反映しています.
総額,エネルギー,エネルギー別 (2022年~2026年)
エネルギーがBCPI総を支配しているが,2025年のエネルギー以外の弱さは,大宗商品需要の弱さを示す. CAD commodity_price_index 商品価格指数ほら CAD commodity_price_energy 商品価格 エネルギー価格ほら CAD commodity_price_ex_energy 商品価格 消費エネルギー 消費電力 消費消費エネルギーわかった
# Fetch the three BCPI series simultaneously
from concurrent.futures import ThreadPoolExecutor
def fetch(path):
return requests.get(f"{BASE}{path}", params={"api_key": KEY, "start": "2022-01-01"}).json()["data"]
with ThreadPoolExecutor(max_workers=3) as pool:
bcpi_total = pool.submit(fetch, "/announcements/cad/commodity_price_index").result()
bcpi_energy = pool.submit(fetch, "/announcements/cad/commodity_price_energy").result()
bcpi_ex_nrg = pool.submit(fetch, "/announcements/cad/commodity_price_ex_energy").result()
print(f"BCPI Total : {bcpi_total[0]['val']} ({bcpi_total[0]['date']})")
print(f"BCPI Energy : {bcpi_energy[0]['val']} ({bcpi_energy[0]['date']})")
print(f"BCPI Ex-Energy: {bcpi_ex_nrg[0]['val']} ({bcpi_ex_nrg[0]['date']})")
ビジネス展望調査: 金融銀行の前向きな信号
Published quarterly, the Bank of Canada Business Outlook Survey (BOS) is a closely-watched leading indicator that the Bank itself uses in its policy deliberations. The survey balance — the proportion of firms expecting better conditions minus those expecting worse — correlates strongly with future GDP growth and employment. When the BOS balance turns deeply negative, the BoC has historically cut rates within one to two quarters.
2024年末から2025年までの間,BOS残高は負の領域にとどまり,米国の関税リスクと国内需要の弱さに関連したビジネス不確実性に対応した.BOSの回復がゼロまたは正面に上昇することは,CBCがレートを保持するか次の緊縮サイクルを検討し始めるための最も明確な緑の灯りの一つである.
銀行ビジネス展望調査残高 (2021年~2025年)
When the BOS balance goes deeply negative, cuts follow within two quarters — it did so in mid-2023 and again in late 2024. A rebound toward neutral is a necessary precondition for the BoC to exit its accommodative stance. Source: CAD boc_business_outlook ビジネス・見通しわかった
The April 29, 2026 Decision: What to Watch
銀行からの利率発表が April 29, 2026金融政策報告書 (MPR) に同行し,銀行が成長とインフレを予測した. オーバーナイトレートは2.25%で中性線下位に,今後はデータに依存すると強調している.
📊 March CPI Print
Due mid-April. If headline stays below 2% and twin-core remains within 1.8–2.2%, the BoC has room to hold. A surprise above 2.5% changes the calculus.
💼 March Employment
失業率がさらに7%に上昇すれば,さらなる削減の圧力が増える.全日制の増幅とともに,強い雇用が増える.
関税影響
カナダの輸出品 (鋼鉄,アルミ,自動車) に対する米国の関税のエスカレーションは,尾のリスクであり続けます.
The most efficient way to monitor all three signals as they release is via the FXMacroData リリースカレンダー予想値と各CAD指標の先行値を示します.
curl "https://fxmacrodata.com/api/v1/calendar/cad?api_key=YOUR_API_KEY"
{
"data": [
{
"indicator": "inflation",
"release_date": "2026-04-15",
"prior": 1.8,
"expected": 2.0,
"unit": "%YoY"
},
{
"indicator": "employment",
"release_date": "2026-04-11",
"prior": 32.4,
"expected": 25.0,
"unit": "Thousands"
},
{
"indicator": "policy_rate",
"release_date": "2026-04-29",
"prior": 2.25,
"expected": 2.25,
"unit": "%"
}
]
}
Signals Dashboard: All CAD Indicators in One Place
FXMacroDataは,カナダ銀行関連マクロ指標の全 Suite をカバーしています. 45 CAD シリーズ以上,一夜間利率とツインコアインフレから BCPI,ビジネス展望調査,10年 GoC 債券の収益率,貿易平衡,住宅開始まで. FX アナリストが体系的な CAD ビューを構築するには,関連するエンドポイントは以下のとおりです.
- 政策率 — BoC overnight rate with second-level announcement timestamps
- インフレ / core_inflation_trim / core+inflation+median インフレの平均値 総額CPIと双重コア枠組み
- 雇用/失業 月間労働力調査データ
- commodity_price_index / commodities_prices_energy / comodities_prec_ex_energie コモディティ・価格・エネルギー価格 BCPIおよびサブインデックス
- boc_business_outlook ビジネス見通し BOS 季度収支 (GDP の主要指標)
- gdp / gd p_quarterly 年間総生産 GDPの月間および四半期成長
- 銀行債券2y / 銀行债券10y 利率予想のGCOの利回り曲線
すべてのシリーズには一致する応答形式があります dateほら val適用される場合 announcement_datetime 複数の指標を伴う信号の枠組みを簡単に構築する
import requests
import pandas as pd
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
INDICATORS = [
"policy_rate", "inflation", "core_inflation_trim",
"core_inflation_median", "unemployment", "employment",
"gdp", "boc_business_outlook", "commodity_price_index",
"gov_bond_2y", "gov_bond_10y",
]
snapshots = {}
for ind in INDICATORS:
data = requests.get(
f"{BASE}/announcements/cad/{ind}",
params={"api_key": KEY}
).json()["data"]
if data:
snapshots[ind] = data[0]["val"]
print(pd.Series(snapshots, name="Latest CAD Signals"))
2026年第2四半期におけるカナダの状況
カナダ銀行は重労働を遂行した. 金融危機後,G10の緩和サイクルの中で最も積極的な金融政策が実施された後,一夜間レートは中立範囲内である2.25%である. インフレは目標に近い. 労働市場は弱くなっているが急速に悪化していない. 主要な不確実性は外的なものである. 米国貿易政策がカナダの輸出量をどの程度削減するか,商品価格ショックが銀行に通貨の弱化と成長見通し低下のどちらかを選択することを強制するかどうか.
外国為替トレーダーにとって,分析枠組みは明確である.主要の保持またはカットスイング要因としてツインコアインフレプリント (CPI-TrimとCPI - Median) を観察し,商品主導のCADフローのBCPIを追跡し,ビジネス状況に関する主要な読み取りのためにBOSを四半期ごとに監視する.これらの信号が一致すると,インフレが安定し,BCPIが堅調で,BOSが回復し,USD/CADは近期上限に達した.彼らが異なる場合,インフレは低下し,BCPIは弱く,Bosは悪化し,BoCのさらなる緩和のための圧力,およびさらなるCADの弱さが再確認される.
分析 者 たち の 次 の ステップ
FXMacroData API キーを設定して,完全なCAD指標のスーツを引っ張ります. 簡単な信号ダッシュボードを構築して,レート差,コアインフレのスプレッド,BCPIの傾向を毎週追跡します. 2026年のすべてのBoC決定のための体系的な枠組みを持っています. /api-data-docs/cad/policy_rate 税率について オンラインでCADのカタログをご覧いただけます / サブスクリプトわかった