ADVERTISEMENT

Peso faces downside bias on growth slump, less defensive BSP

Published Nov 11, 2025 01:19 pm
Sluggish Philippine economic growth, compounded by a wider trade deficit and a less interventionist Bangko Sentral ng Pilipinas (BSP), is expected to weigh on the peso’s recovery, potentially overriding the lift from expected easing of United States (US) interest rates.
Dutch financial firm ING has projected a neutral bias for the peso after it hit its all-time weakest level of ₱59.13 per dollar in October. ING forecasts a slight strengthening to ₱58.50 per dollar in the fourth quarter, up from the current ₱58.96 spot rate.
The firm expects stability in the first quarter of 2026, followed by a slip to ₱58.75 per dollar through the second and third quarters of 2026, before settling back at ₱59 per dollar in the final quarter of 2026.
“On balance, we expect external balances to weaken and the BSP to maintain a less defensive stance, which should keep the Philippine peso biased to the downside over the medium term,” Deepali Bhargava, ING’s Asia-Pacific (APAC) head of research and chief economist, wrote in a Nov. 10 commentary.
BSP Governor Eli M. Remolona Jr. earlier stated the central bank would only intervene in the foreign-exchange (forex) market if the peso’s drop was sharp enough to fuel inflation. The currency recently showed weakness after the BSP cut its monetary policy rate to 4.75 percent, driven by a downbeat growth outlook tied to an alleged corruption scandal in flood control projects.
Bhargava noted that the highly anticipated US Federal Reserve (Fed) easing “could offer some near-term support for the currency” through the end of the year. However, she warned that gross domestic product (GDP) growth could underperform expectations in the coming periods.
Third-quarter growth plunged to its weakest level in nearly five years at four percent, hampered primarily by the ongoing probe into the flood control scandal.
National Socioeconomic Planner Arsenio Balisacan conceded that hitting even the lower bound of the five to six percent full-year target would be challenging, as the year-to-date average stands at five percent, short of the 5.5 percent goal.
Balisacan estimated the economy must expand by 6.9 percent in the fourth quarter to meet the minimum target.
Bhargava said that the economy “likely suffered significant losses over the past two years due to corruption-linked schemes” even before the recent slump.
She added, “Historical precedent suggests that heightened scrutiny after such scandals often triggers prolonged fiscal tightening.” Tightened infrastructure spending from July to September was a major drag on the quarter's disappointing performance.
ING’s 2026 growth forecast of 5.8 percent carries the risk of a slower outcome, exacerbated by the vague direction of the government’s infrastructure spending plans.
The country’s balance of payments (BOP) position—a reflection of its global transactions—narrowed sharply to an $82-million surplus in September from $3.53 billion a year earlier, resulting in a massive deficit over the nine-month period.
On the upside, the peso could benefit from foreign debt inflows if the government achieves its anticipated inclusion of peso-denominated bonds in the Government Bond Index–Emerging Markets (GBI-EM).
“This could unlock significant foreign demand for peso-denominated government bonds, in turn improving liquidity,” Bhargava said. Foreign holdings are currently estimated at 5.5 percent to six percent, and inflows into the local bond market are expected to continue given anticipated BSP rate cuts and the possible index inclusion.

Related Tags

Bangko Sentral ng Pilipinas (BSP)
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.