to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
We often make a point of pointing out how ordinary politics has very little influence over stock prices. But we do note there's a specific exception to that general rule: when changes in tax rates are on the line, politics can indeed influence stock prices.
That observation was driven home once again for the U.S. stock market with the outcome of the 2024 elections. A sweep by former President Donald Trump and the Republican party, which won the trifecta of the White House, the Senate, and the House of Representatives, has affected the market because the victories make it very likely the corporate and personal income tax rate reductions of the Tax Cuts and Jobs Act of 2017 will be extended. Had the current Vice President Kamala Harris won, those many of those tax cuts would have been allowed to expire after 2025.
With that being the case, the election had a notable impact on the expectations for the future profitability of many of the publicly traded companies of the S&P 500. With the Republican sweep, the risk of increases in the corporate income taxes they pay has been largely avoided, which sent stock prices off to what even the New York Times described as its "best week in over a year".
For the S&P 500 (Index: SPX), that meant a 4.6% increase to close out the election week's trading at 5,994.37. The latest update of the alternative futures chart shows the trajectory of the index has moved beyond the redzone forecast range, with the level of stock prices being consistent with investors focusing their forward-looking attention on the first quarter of 2025.
The election outcome had one other main impact on future expectations. After the Fed's quarter point rate cut on 7 November 2024, the CME Group's FedWatch Tool anticipates another 0.25% rate cut on 18 December 2024. And then another one 12 weeks later, followed by a final one 18 weeks after that. The CME FedWatch tool now sees the Federal Funds Rate bottoming at a target range of 3.75-4.00%, a half point higher than what it projected before the election.
That's an indication of how much the outlook for the U.S. economy improved over the previous week. The FedWatch tool is signaling that the economy will be stronger and won't require the Fed to cut interest rate cuts as much as had been projected.
Those were perhaps the biggest news stories of the week that was, but other stuff happened too! Here's our summary of the week's market-moving headlines:
The Atlanta Fed's GDPNow tool's projection of the real GDP growth rate for the current quarter of 2024-Q3 increased to +2.5% from the previous week's forecast of +2.3% growth.
Image credit: Stable Diffusion DreamStudio Beta. Prompt: "An editorial cartoon featuring a Wall Street bull who is celebrating the best week in the U.S. stock market in over a year."
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.