Federal Reserve meeting begins amid political pressure to lower interest rates
The Federal Reserve’s meeting starts today, with President Trump applying pressure to lower interest rates amid a slowing job market and persistent inflation.
Over the last couple of weeks we’ve been seeing President Donald Trump applying unprecedented political pressure to the Federal Reserve to cut interest rates. We’re waiting to see if the board of governors will give in. The central bank meets today and tomorrow to address interest rates. Some economists predict the Fed will cut its benchmark interest rate by 0.25 point, mainly due to data suggesting that hiring has slowed in recent months. The growth rate has been very slow. We haven’t seen. New jobs being created and we’ve got inflation. This is what economists call stagflation and this is what led to the end of Jimmy Carter’s presidency. Certainly Donald Trump doesn’t want this, and that’s why he’s putting pressure on the Federal Reserve, and he wants to be able to take credit and show gains from the policies of tariffs that are still *** question mark for *** lot of people. Meanwhile, there is tension between the president and reserve Board governor Lisa Cook. President. Trump’s been trying to fire Cook for allegations of mortgage fraud. Cook has denied these allegations overnight. An appeals court ruled she can keep her position, so she is expected to be at the table unless the Supreme Court steps in. Last night, the Senate also confirmed *** top White House economic aid to the Fed’s board, Steven Myron, to fill *** vacancy. The interest rate announcement is expected to come tomorrow afternoon in Washington. I’m Rachel Herzheimer.
Advertisement
Federal Reserve meeting begins amid political pressure to lower interest rates
The Federal Reserve’s meeting starts today, with President Trump applying pressure to lower interest rates amid a slowing job market and persistent inflation.
Updated: 6:18 AM EDT Sep 16, 2025
The Federal Reserve begins a two-day meeting Tuesday to address interest rates, with President Donald Trump applying unprecedented political pressure to lower them amid a slipping jobs market and persistent inflation.Over recent weeks, Trump has been pushing the Federal Reserve to reduce interest rates, aiming to make borrowing cheaper for credit cards and home loans. The central bank’s Board of Governors will meet Tuesday and Wednesday, and some economists predict the Fed will cut its benchmark interest rate by a quarter point due to data suggesting that hiring has slowed in recent months.”The growth rate has been very slow. We haven’t seen new jobs being created, and we’ve got inflation. This is what economists call stagflation, and this is what led to the end of Jimmy Carter’s presidency. Certainly Donald Trump doesn’t want this, and that’s why he’s putting pressure on the Federal Reserve, and he wants to be able to take credit and show gains from the policies of tariffs that are still a question mark for a lot of people,” said Todd Belt, a political analyst.Meanwhile, tension persists between Trump and Reserve Board Governor Lisa Cook. The president has attempted to fire Cook over allegations of mortgage fraud, which she has denied. An appeals court ruled overnight that Cook can keep her position, so she is expected to be at the meeting unless the Supreme Court intervenes.Additionally, the Senate confirmed Stephen Miran, a top White House economic aide, to fill a vacancy on the Fed’s board. The announcement regarding interest rates is expected Wednesday afternoon.Keep watching for the latest from the Washington News Bureau:
The Federal Reserve begins a two-day meeting Tuesday to address interest rates, with President Donald Trump applying unprecedented political pressure to lower them amid a slipping jobs market and persistent inflation.
Over recent weeks, Trump has been pushing the Federal Reserve to reduce interest rates, aiming to make borrowing cheaper for credit cards and home loans.
`;
}
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
The central bank’s Board of Governors will meet Tuesday and Wednesday, and some economists predict the Fed will cut its benchmark interest rate by a quarter point due to data suggesting that hiring has slowed in recent months.
“The growth rate has been very slow. We haven’t seen new jobs being created, and we’ve got inflation. This is what economists call stagflation, and this is what led to the end of Jimmy Carter’s presidency. Certainly Donald Trump doesn’t want this, and that’s why he’s putting pressure on the Federal Reserve, and he wants to be able to take credit and show gains from the policies of tariffs that are still a question mark for a lot of people,” said Todd Belt, a political analyst.
Meanwhile, tension persists between Trump and Reserve Board Governor Lisa Cook. The president has attempted to fire Cook over allegations of mortgage fraud, which she has denied. An appeals court ruled overnight that Cook can keep her position, so she is expected to be at the meeting unless the Supreme Court intervenes.
Additionally, the Senate confirmed Stephen Miran, a top White House economic aide, to fill a vacancy on the Fed’s board.
The announcement regarding interest rates is expected Wednesday afternoon.
Keep watching for the latest from the Washington News Bureau: