ADVERTISEMENT

Banks to benefit from lower rates by mid-2025—COL

Published Oct 20, 2024 08:35 pm

The two recent rate cuts by the Bangko Sentral ng Pilipinas (BSP) amounting to 50 basis points is not expected to affect the earnings of banks until the middle of 2025 although the sector has been outperforming in the local stock market.

“The banking sector continued to outperform the market, with rising prices driven by resilient earnings and favorable economic developments,” said COL Financial Chief Equity Strategist April Lynn Tan. 

She noted that “in the past three months, the PSE Financials index rallied by 16.1 percent, outperforming both the main benchmark index, which was up 10.6 percent, as well as the other sector indices.” 

Mid-sized banks led the charge, delivering strong returns over the three-month period. 

Meanwhile, the BSP delivered on the long-awaited rate cuts, lowering the overnight reverse repurchase rate (RRP) by a total of 50 bps in August and October to six percent. For 2025, the policy rate is expected to be reduced by another 100 bps, bringing it to five percent by year-end.

Tan said rate cuts will have mixed impact on bank net interest margins (NIMs), “given that interest rates typically operate with a lag, we don’t expect to start seeing the impact of lower rates on NIM until the middle of next year.”

“We believe that the rate cuts will have a varying impact across the sector. For the banks that carry large proportions of consumer loans, the rate cuts should have a positive impact on NIM," she said. 

“Since consumer loan yields are less sensitive to changes in the policy rate, these banks should see spreads increase as funding costs go down,” she added.

One bank has guided that it expects to see an improvement of five to 10 bps in NIM for every 25 bps reduction in the RRP.

Tan said banks with heavier reliance on time deposits for funding are also expected to benefit from lower rates. Thus, mid-sized banks could see some relief from elevated funding costs.

In contrast, the biggest local banks that benefited from having substantial low-cost deposit bases as rates went up would be more likely to see NIMs decline as their loan portfolios reprice with lower yields. 

“However, the negative impact of rate cuts on NIMs would likely be reduced by banks’ decision to build-up their portfolio of investment securities with high yields,” she noted.

Tan added that “as borrowing costs decrease, businesses could borrow more to pursue expansion plans. Consequently, although banks’ earnings could take a hit from NIM contractions, this may be offset by increasing loan volumes.”

The BSP also recently announced that it will be implementing a reduction in the reserve requirement ratio (RRR) of banks, effective Oct. 25, 2024.  

The RRR of universal and commercial banks (U/KBs) will decrease by 250 bps to seven percent, while the RRR for digital banks will be cut by 200bps to four percent.

Thrift banks and rural and cooperative banks will both see a reduction of 100 bps bringing their respective RRRs to one percent and zero percent.

“We estimate that the 250bps cut this year to introduce approximately P400 billion of additional liquidity into the banking system,” Tan said adding that, “according to BSP Governor Eli Remolona, the central bank is considering further reductions to bring the RRR down to 5 percent in the coming years.”

She pointed out that “from a big picture perspective, the decrease in RRR frees up funds that were not generating income for the bank. Thus, the release of these deposits to be lent out to clients or invested in other interest-earning assets provides an incremental tailwind for earnings. 

“More specifically, for the largest three banks, we are expecting to see 3 to 5bps improvement in NIM for every 100bps reduction in the RRR, equivalent to 7.5 to 12.5bps benefit for the 250bps cut. For the smaller banks, we estimate that NIM could increase by 5bps or slightly more for every 100bps RRR cut," she added.

Related Tags

COL Financial April Lynn Tan
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.