Federal Reserve to announce interest rate cut amid economic slowdown, pressure from President Trump
Federal Reserve to announce interest rate cut amid economic slowdown, pressure from President Trump
The Federal Reserve is set to announce an interest rate cut this week in response to a slowing economy, making clear it is not surrendering to President Donald Trump’s demands.
Advertisement
Federal Reserve to announce interest rate cut amid economic slowdown, pressure from President Trump
The Federal Reserve is set to announce an interest rate cut this week in response to a slowing economy, making clear it is not surrendering to President Donald Trump’s demands.
Updated: 8:42 AM MDT Sep 14, 2025
The Federal Reserve is expected to announce a long-awaited interest rate cut this week, responding to a slowing economy as opposed to yielding to President Donald Trump’s demands. Recent data shows hiring is slowing and unemployment is ticking up, which would normally call for an interest rate cut. Lower interest rates make borrowing money for things like cars and credit cards cheaper. At the same time, inflation remains stubbornly high, which is usually solved by keeping interest rates where they are and leaving costly prices up.With a big decision facing the Fed, added pressure from President Trump isn’t helping. Experts say his repeated calls for the Fed to lower interest rates are damaging the agency’s independence and credibility, spooking investors and the market. “If the Fed is politicized and they’re acting based upon political pressures rather than accurate economic data, that’s going to send messages throughout the economy that maybe what they’re doing isn’t really good for the economy, and maybe it doesn’t come from a solid place of evidence,” political analyst Todd Belt said. “It will introduce even more uncertainty in the economy, and uncertainty is the enemy of business planning.”President Trump’s tariffs have also injected lots of uncertainty in the market, and economists say that, in turn, will further drive up inflation.In a further escalation involving the president and the Fed, last week, a federal judge blocked Trump’s unprecedented attempt to fire Federal Reserve Governor Lisa Cook, alleging mortgage fraud. Now, the administration is appealing and is pushing the courts for an emergency ruling before the Fed’s big interest rate decision this week. But a big twist could undermine the administration’s case, as the Associated Press reports that Cook previously referred to the property in question as a “vacation home,” which would contradict the White House’s accusations of fraud.Watch the latest on the Federal Reserve:
The Federal Reserve is expected to announce a long-awaited interest rate cut this week, responding to a slowing economy as opposed to yielding to President Donald Trump’s demands.
Recent data shows hiring is slowing and unemployment is ticking up, which would normally call for an interest rate cut. Lower interest rates make borrowing money for things like cars and credit cards cheaper.
`;
}
function initializeWeatherBox(container) {
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
});
clickedElement.classList.add(‘open’);
container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
}
}
function loadWeatherData() {
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocation = localStorage.getItem(‘htv.zip.last’);
if (storedLocation) {
location = JSON.parse(storedLocation);
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (weatherWatchHeader && weatherData.alerts_count > 0) {
weatherWatchHeader.className = ‘weather-watch-header has-alerts’;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
weatherWatchLink.href = ‘/alerts’;
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) tempEl.textContent = weatherData.current.temp_f || ”;
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className = ‘weather-grid–current-icon weather-current-icon icon icon-weather-‘ + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) skyEl.textContent = weatherData.current.sky || ”;
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) feelsEl.textContent = (weatherData.current.feels_like_f || weatherData.current.temp_f || ”) + ‘°F’;
}
}
function updateForecastTabs(weatherData) {
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html = ”;
var maxHours = Math.min(5, weatherData.hourly.length);
for (var i = 0; i < maxHours; i++) {
var hour = weatherData.hourly[i];
html += generateForecastItem({
timeLabel: hour.hour_display,
iconName: hour.icon_name,
primaryTemp: hour.temp_f,
secondaryInfo: hour.precip_chance + ‘%’
});
}
hourlyContainer.innerHTML = html;
}
}
if (weatherData.daily) {
var dailyContainer = container.querySelector(‘.weather-daily-forecast’);
if (dailyContainer) {
var html = ”;
var maxDays = Math.min(5, weatherData.daily.length);
for (var i = 0; i < maxDays; i++) {
var day = weatherData.daily[i];
var dayName = getShortDayName(day.day);
html += generateForecastItem({
timeLabel: dayName,
iconName: day.icon_name,
primaryTemp: day.high_f,
secondaryInfo: day.low_f + ‘°’
});
}
dailyContainer.innerHTML = html;
}
}
}
function getShortDayName(dayName) {
switch (dayName) {
case ‘Today’:
return ‘Today’;
case ‘Tomorrow’:
return ‘Tmrw’;
case ‘Sunday’:
return ‘Sun’;
case ‘Monday’:
return ‘Mon’;
case ‘Tuesday’:
return ‘Tue’;
case ‘Wednesday’:
return ‘Wed’;
case ‘Thursday’:
return ‘Thu’;
case ‘Friday’:
return ‘Fri’;
case ‘Saturday’:
return ‘Sat’;
default:
return dayName;
}
}
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.onclick = function() {
switchWeatherTab(this.getAttribute(‘data-tab-id’), this);
return false;
};
});
loadWeatherData();
}
document.querySelectorAll(‘.weather-sidebar’).forEach(function(weatherBox) {
initializeWeatherBox(weatherBox);
});
document.addEventListener(‘fullscreenchange’, function() {
var fullscreenElement = document.fullscreenElement;
if (!fullscreenElement) {
document.querySelector(‘.weather-box-container’).querySelectorAll(‘.fa-times’).forEach(function(icon) {
icon.classList.remove(‘fa-times’);
icon.classList.add(‘fa-expand’);
});
}
});
});
Advertisement
At the same time, inflation remains stubbornly high, which is usually solved by keeping interest rates where they are and leaving costly prices up.
With a big decision facing the Fed, added pressure from President Trump isn’t helping. Experts say his repeated calls for the Fed to lower interest rates are damaging the agency’s independence and credibility, spooking investors and the market.
“If the Fed is politicized and they’re acting based upon political pressures rather than accurate economic data, that’s going to send messages throughout the economy that maybe what they’re doing isn’t really good for the economy, and maybe it doesn’t come from a solid place of evidence,” political analyst Todd Belt said. “It will introduce even more uncertainty in the economy, and uncertainty is the enemy of business planning.”
President Trump’s tariffs have also injected lots of uncertainty in the market, and economists say that, in turn, will further drive up inflation.
In a further escalation involving the president and the Fed, last week, a federal judge blocked Trump’s unprecedented attempt to fire Federal Reserve Governor Lisa Cook, alleging mortgage fraud.
Now, the administration is appealing and is pushing the courts for an emergency ruling before the Fed’s big interest rate decision this week. But a big twist could undermine the administration’s case, as the Associated Press reports that Cook previously referred to the property in question as a “vacation home,” which would contradict the White House’s accusations of fraud.
Watch the latest on the Federal Reserve: