ADVERTISEMENT
970x220

Anticipated rate cuts to revitalize property sector

Published Jul 11, 2024 07:12 am

The real estate industry, particularly the residential segment, is seen to be revitalized once the Bangko Sentral ng Pilipinas finally implements the much anticipated interest rate cut in the coming months.

“We have been anticipating for much too long. We're moving from a pessimistic market to hopefully a more optimistic one. And that will have very positive near-term and long-term effect to all sectors — office, hospitality, residential,” Leechiu Property Consultants (LPC)Director for Investment Sales Tam Angel said during a press briefing.

Angel noted that the recent inflation figure in June and the succeeding pronouncement from the BSP have provided optimism for a possible rate cut in the third and fourth quarter of the year.

“We think, for the most part, as far as the real estate sector is concerned, the impact of these rate cuts is it will provide more price stability... stimulate a very sluggish market, and will allow both developers and investors to take on more activity,” he said. 

Amid the high interest rate environment, the real estate industry has been concerned that the softening of the market around Metro Manila may eventually affect properties located in key business districts of the metropolis.

“All we really need from the BSP is a sign of where the interest rates are gonna go. Because it's not like we need any drastic change. Real estate's a long term play so we really just need a sign of whether it's going to go down. Now, given the very dovish tone from the BSP, we're closer to really be more optimistic,” he said. 

Angel said that, while the BSP kept interest rates at 6.5 percent after its June 27 meeting, the pronouncement of monetary officials of “bordering if not committed to doing a rate cut” of 25 basis points in the third quarter has been a good signal. 

“So that will bring us down from 6.5 to 6.25 percent. Not massive, still high, but a very good first. And on top of that cut that they will do in August, or maybe October, they also are looking at another cut in December 19, during their last board policy meeting for the year of another point 0.25 percent. So that will bring our rates down to 6 percent, which is really good news for people who lose sleep over our mortgages,” he said.

He noted that, it's going to be a soft landing, a gradual decrease of rates and this could result in better funding costs for investors.

“Developers are going to be more willing to buy properties, launch their new projects, or activate their land bank, even develop and start constructing because they now have access to funding that's more reasonable. 

“And then, from the investors’ and buyers’ perspective, also a practical standpoint, they can now feel more confident, more secure in picking up and taking positions in these projects, because they will also have access to more reasonable funding costs for their five-, 10-, 15-, 20-year mortgages. 

“Because they wouldn't be worried that it will go from P10,000 a month to P20,000 or P50,000 or P200,000. They know that, for the foreseeable future, the next three, four or five years, it will be more or less the same,” he said.

Thus, Angel said “that should allow for a much more stimulated market, healthier transaction volumes, and just generally more activity in the current, quite cathartic market that we have.”

Related Tags

Leechiu Property Consultants
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.