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 first week of October 2022 saw the S&P 500 (Index: SPX) swing wildly along with investor expectations for future interest rates.
Starting from its Friday, 30 September 2022 closing value of 3,585.62, the index powered upward early in the week to reach a high of 3.790.93 by the close of trading on Tuesday, 4 October on the news the Royal Bank of Australia would not hike the interest rates it controls by as much as expected because of developing recessionary conditions. With the U.S. economy faced with the similar situation, investors began anticipating the Federal Reserve would also be forced to pull back its recent rate hike ambitions, which would perhaps peak in 2022-Q4, shifting investor attention toward that nearer term horizon.
That expectation had a short life thanks to a full court press by the Fed's minions on Thursday, 6 September, before being fully dashed by a stronger-than-expected September 2022 jobs report on Friday, 7 September 2022. The S&P 500 ended the trading week at 3,639.66, right in the middle of the alternative futures chart's redzone forecast range that assumes investors are focusing on the more distant future quarter of 2023-Q2.
Which is to say the index behaved as the dividend futures-based model suggests it should given where it started and how the investment horizon shifted with the week's changing expectations of the future. The week's action almost qualifies as two Lévy flight events, and would have had the index closed just 20 points higher on Tuesday, 4 October 2022. As it was, the index moved entirely within the range associated with investors focusing their forward-looking attention on 2023-Q2, so we cannot definitively reject the hypothesis that's all investors did during the week that was. We can only say they appear to have briefly shifted most of their attention from 2023-Q2 to 2022-Q4, before locking it back on 2023-Q2 again.
Here are the week's market moving headlines to color in the context behind the numbers from the week's trading action.
The CME Group's FedWatch Tool continues to project a three-quarter point rate hike when the FOMC next meets on 2 November 2022, followed by a half point rate hike in December (2022-Q4). In 2023, the FedWatch tool projects a quarter point rate hike in February (2023-Q1), setting the top for the Federal Funds Rate's target range at 4.50-4.75%. After last week's stronger than expected jobs report, the FedWatch tool anticipates that rate will be held through most of the year, with a quarter point rate cut now expected in December (2023-Q4).
The Atlanta Fed's GDPNow tool's projection for real GDP growth in the just-ended calendar quarter of 2022-Q3 rose from +2.4% to +2.9% as the U.S. economy rebounded from the week first half of 2022. The Bureau of Economic Analysis will provide its first official estimate of real GDP growth in 2022-Q3 at the end of October 2022.
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.