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
The final week of summer saw the S&P 500 (Index: SPX) close out the week at 7,718.60, slightly up over the preceding week's close and one percent below its 13 August 2026 record high.
As expected, investors focused on the upcoming quarter of 2026-Q4 in setting stock prices. The future quarter has become the focus because of the Fed's ongoing "will they or won't they hike rates during the quarter" drama.
Speaking of which, the CME Group's FedWatch Tool projects a 59% probability the Fed will hike the Federal Funds Rate by a quarter percent on 16 September (2026-Q3), with a little under 41% chance of holding at its current target range of 3.50-3.75%. The big change from the previous week however is that the FedWatch Tool now projects the Fed will delay its next quarter point rate hike until 27 January (2027-Q1), although it still gives a 39% probability of an earlier rate hike on 8 December (2026-Q4).
The continuing uncertainty provides investors with an incentive to set their attention on 2026-Q4. The latest update of the alternative futures chart shows the S&P 500's trajectory remains consistent with the approximate level the dividend futures-based model would project for it provided investors focus their forward-looking attention upon 2026-Q4.
Here are the market moving headlines of the week that was:
The headlines out of Japan suggest the recent rising yields of U.S. Treasuries have a "made in Japan" element to them. This factor may be significant because they would have an effect on the U.S. stock market, with higher yields depressing stock prices because of the resulting higher cost of debt. The effect would be most pronounced on firms that are looking to utilize significant debt financing to support their growth.
The Atlanta Fed's GDPNow tool anticipates +4.7% real GDP growth for the U.S. economy in 2026-Q3, ticking up from the +4.6% annualized growth it projected a week earlier.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a Wall Street bull and bear enjoying a Labor Day holiday barbecue as the bear says ‘I CAN'T BELIEVE SUMMER IS OVER ALREADY! WHAT ARE YOU LOOKING FORWARD TO THE REST OF THE YEAR?’" We're not sure what the bull is thinking about with what they're barbecuing - perhaps they're a soy-based alternative to what they look like!
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.