
Newsletter Subscribe
Enter your email address below and subscribe to our newsletter
Enter your email address below and subscribe to our newsletter
Mortgage rates in Canada have been anything but boring. From sky-high peaks in the 1980s to rock-bottom lows during the pandemic, interest rates have shaped everything from home prices to household budgets. Whether you’re a first-time buyer, a seasoned homeowner, or just mortgage-curious, understanding the historical trends of Canadian mortgage rates can give you valuable insights into where things might be headed.
Let’s dive into how mortgage rates have evolved in Canada over time — and what it means for you today.
Before we dig into the history, let’s answer the big question: who calls the shots on mortgage rates?
The Bank of Canada (BoC) is the main player. Since its founding in 1935, the BoC has set what’s called the policy interest rate (officially the overnight rate), which guides how expensive it is for banks to borrow money. Lenders then use this policy rate to determine their own prime rate, and most variable-rate mortgages in Canada are based on this prime.
Mortgage rates in Canada are closely tied to the Bank of Canada’s overnight lending rate. Here’s a simplified timeline showing how shifts in the BoC rate cascade into changes in the bank prime rate and, eventually, variable and fixed mortgage rates:
📅 Year | 🏦 BoC Rate (%) | 🏛️ Prime Rate (%) | 💡 Variable Mortgage Rate (%) | 🔒 5-Year Fixed Rate (%) |
---|---|---|---|---|
2019 (pre-COVID) | 1.75 | 3.95 | 2.65 | 2.89 |
2020 (pandemic cut) | 0.25 | 2.45 | 1.35 | 1.69 |
2022 (rate hikes begin) | 3.25 | 5.45 | 4.20 | 4.99 |
2023 (peak) | 5.00 | 7.20 | 6.00 | 5.69 |
2024 | 4.75 | 6.95 | 5.85 | 5.49 |
2025 (Q2 forecast) | 4.25 | 6.45 | 5.30 | 5.19 |
🔍 Takeaway: A single BoC rate cut doesn’t instantly lower your mortgage rate—but it often signals where variable rates are headed. Fixed rates follow bond yields more directly.
In short:
The early ’80s were brutal for homeowners. Thanks to global oil shocks and runaway inflation, the Bank of Canada rate hit a jaw-dropping 20.03% in 1981. That meant many Canadians were paying mortgage rates well above 18%. It was a time when even a modest home came with massive monthly payments.
After the 1980s recession, the BoC shifted focus toward stability. In 1991, they introduced the inflation-targeting policy we still use today. This helped bring inflation — and rates — down gradually. By the end of the decade, rates had dipped into single digits again.
The early 2000s were relatively calm, but the 2008 global financial crisis hit hard. The BoC slashed its policy rate to 0.50% in 2009, sparking a wave of affordable mortgages. Rates hovered low for several years as the economy slowly recovered.
Throughout the 2010s, Canada enjoyed modest growth and tame inflation. The BoC kept rates low, peaking only around 1.75% before COVID-19 hit. Fixed and variable mortgage rates followed suit, making homeownership feel more accessible — at least from an interest rate perspective.
When COVID-19 shook the world in 2020, the BoC responded by slashing its policy rate to 0.25% — the lowest in Canadian history. Mortgage rates dropped dramatically, with some lenders offering 5-year fixed rates under 1.50%.
But the good times didn’t last. As the economy reopened and inflation soared, the BoC started hiking rates in 2022. By mid-2023, the policy rate hit 5.00%, bringing mortgage rates back above 6.00% for the first time in years.
In Canada, the 5-year fixed mortgage has long been the most popular option. It offers stability, predictability, and usually better rates than shorter terms.
However, during times of rate volatility — like in 2022–2023 — many Canadians started considering shorter-term fixed mortgages like 3-year options. These give you time to wait out the high-rate environment while avoiding a long-term lock-in.
const ctx = document.getElementById(‘mortgageRateChart’).getContext(‘2d’); const mortgageRateChart = new Chart(ctx, { type: ‘line’, data: { labels: [ “2000”, “2002”, “2004”, “2006”, “2008”, “2010”, “2012”, “2014”, “2016”, “2018”, “2020”, “2022”, “2024” ], datasets: [ { label: ‘5-Year Fixed Rate’, data: [7.2, 6.9, 6.1, 5.8, 5.5, 5.2, 4.6, 3.9, 3.4, 3.5, 2.8, 4.9, 5.2], borderColor: ‘#0074e0’, borderWidth: 2, fill: false, tension: 0.2 }, { label: ‘3-Year Fixed Rate’, data: [6.9, 6.6, 6.0, 5.6, 5.3, 4.9, 4.3, 3.6, 3.1, 3.3, 2.7, 4.6, 5.0], borderColor: ‘#34a853’, borderWidth: 2, fill: false, tension: 0.2 } ] }, options: { responsive: true, plugins: { title: { display: true, text: ‘Average Fixed Mortgage Rates in Canada (2000–2024)’, font: { size: 20 } }, legend: { position: ‘bottom’ }, tooltip: { callbacks: { label: (context) => `${context.dataset.label}: ${context.parsed.y.toFixed(2)}%` } } }, scales: { y: { beginAtZero: false, title: { display: true, text: ‘Interest Rate (%)’ } }, x: { title: { display: true, text: ‘Year’ } } } } });Mortgage payments have always fluctuated based on both interest rates and home prices.
In 1980, the average monthly mortgage payment was about $725, which adjusts to around $2,720 in today’s dollars. But homes back then cost significantly less — when adjusted for inflation, the average price was just $283,941.
Fast forward to today, and while rates are lower than in the ’80s, sky-high home prices have changed the game. The average Canadian home now costs 2.5x more, meaning payments are much higher even if interest rates seem modest.
Back in the 1980s, a single salary could comfortably cover the average mortgage. In fact, mortgage payments took up just 27% of a typical monthly income.
But as of 2024? Less than 3% of Canadians can afford an average-priced home on a single income. That’s a major shift in affordability — not just because of rates, but because income hasn’t kept pace with real estate prices.
const ctxBar = document.getElementById(‘incomeVsMortgageChart’).getContext(‘2d’); const incomeVsMortgageChart = new Chart(ctxBar, { type: ‘bar’, data: { labels: [“1980”, “1990”, “2000”, “2010”, “2020”, “2024”], datasets: [ { label: “Average Household Income ($)”, data: [24000, 36000, 49000, 64000, 88000, 95000], backgroundColor: “#34a853” }, { label: “Average Annual Mortgage Payments ($)”, data: [8000, 12000, 16000, 22000, 34000, 41000], backgroundColor: “#0074e0” } ] }, options: { responsive: true, plugins: { title: { display: true, text: ‘Income vs Mortgage Payments in Canada (1980–2024)’, font: { size: 20 } }, legend: { position: ‘bottom’ }, tooltip: { callbacks: { label: context => `${context.dataset.label}: $${context.parsed.y.toLocaleString()}` } } }, scales: { y: { beginAtZero: true, title: { display: true, text: ‘Dollars (Annual)’ } }, x: { title: { display: true, text: ‘Year’ } } } } });What’s the highest rate Canada has ever seen?
In 1981, the BoC’s policy rate reached 20.03%, driving mortgage rates even higher.
Are rates high today?
Compared to the early 2020s? Yes. Compared to the 1980s? Not even close. Today’s rates are high relative to recent years but still below historic peaks.
Why do mortgage rates follow bond yields?
Fixed mortgage rates — especially 5-year terms — track the 5-year Government of Canada bond yield. Bond markets reflect investor expectations for inflation and BoC policy.
Mortgage rates in Canada have gone through dramatic ups and downs, shaped by everything from global oil shocks to pandemics. By understanding this history, you’re better equipped to plan for the future.
Whether rates are climbing, falling, or holding steady, your best bet is to stay informed and make a mortgage decision based on your personal financial situation — not just market noise