Stocks drop, oil rises as Iran and rate worries 

HONG KONG — Fresh worries about the Middle East ceasefire and the prospect of a US interest rate hike hit most stocks and lifted oil prices Thursday, following a rollercoaster week for markets that has sent shivers through trading floors.

Investors took a little heart from closely watched data Wednesday that showed May US inflation had come in around expectations but still hit a more than three-year high as fuel costs surged owing to the Iran war.

The reading came days after figures showing a forecast-busting jump in jobs creation last month ramped up bets on the Federal Reserve hiking interest rates for the first time since 2023.

Attention will now turn to the Fed's next policy meeting in a week's time, and while the new chief Kevin Warsh is unlikely to make a hike his first act, observers said futures markets suggest a move up could come before the end of the year.

"Overall (the inflation report) was not as bad as it could have been and core was a little lighter than expected so the market is seeing this as a positive," Neil Wilson, Saxo investor strategist, said.

"This could re-anchor expectations a touch for a bit but I still think that the Fed is swinging more quickly behind a hike than it might have done or markets might think.

"Time is growing short and even if it could have been a hotter read, headline CPI above four per cent against a really strong labour market clearly deserves attention from the Fed."

The prospect of higher borrowing costs once again hurt tech firms, which tumbled on Wall Street, where the Nasdaq sank two per cent and the S&P 500 shed almost as much.

Asia mostly fell but stabilised after the previous three days of whipsawing.

Hong Kong, Shanghai, Sydney, Wellington, Taipei, Manila and Jakarta were all in the red.

But Seoul — at the forefront of the region's tech-led rally to record highs — edged up, having seen wild swings over the previous two days.

Tokyo, Singapore, Mumbai and Bangkok also crept up.

London and Paris opened with gains, while Frankfurt was flat.

A series of fresh US military strikes on sites in Iran, on top of those carried out Tuesday for the downing of a helicopter, added to the sense of unease among investors.

They led Tehran to hit back at US targets in the Middle East, with Iranian officials saying they would target any ship passing through the Strait of Hormuz.

And while US Central Command said it had completed its strikes, the latest increase in attacks fuelled concerns about their shaky truce and attempts to reach a peace deal to reopen the strait and allow crude ships to pass again.

The second day of US strikes followed President Donald Trump's complaint that Tehran's negotiators were taking too long and "playing us for suckers". Earlier this week he had suggested a peace accord was just days away.

"We hit them hard yesterday. We're going to hit them again hard today," the US president told reporters Wednesday morning. "We were really close to a deal, but they keep stringing us along."

Oil prices jumped as much as two per cent Thursday, extending similar gains the day before.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });