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 trading week ending Friday, 11 August 2023 was the most boring week to date of 2023.
The S&P 500 (Index: SPX) experienced an uneventful week, with little new information to prompt a compelling swing in any direction. What news there was led to the index dipping to 4464.05, a week-over-week decline of 0.3%.
That's well within the "few percent" range we predicted would apply through this upcoming Friday in last week's edition.
If you look at the latest update to the alternative futures chart, we find that as expected, the trajectory is running below the dividend futures-based model's raw projections for this period.
That's because the model's projections are anchored to historic stock prices from 13 months, 12 months, and 1 month earlier. Because of that, the model's projections are affected by the past volatility of stock prices at these times. In this case, that past volatility is such that those projections are being skewed upward during this short two week period.
Because that is such a short period, we're opting to not add a redzone forecast range to the chart to account for that factor. As it stands, in about two weeks, we'll be coming up on a period where the model's projections will be skewed lower than what the actual trajectory of the S&P 500 will traverse for much longer period of time, where we will make that visual adjustment.
Meanwhile, we did say the trading week was uneventful. Here's our summary of what passes for the market-moving headlines was of the week that was.
As might be expected from such an uneventful week, the CME Group's FedWatch Tool showed little-to-no change from last week in its projections for the future of how the Fed will set interest rates. It projects no future rate hikes through April 2024, followed by a series of quarter point rate cuts will begin as early as 1 May (2024-Q2) and continue at six-to-twelve-week intervals through the end of 2024.
The Atlanta Fed's GDPNow tool boosted its estimate of real GDP growth in 2023-Q3 to +4.1% from the previous week's estimate of +3.9%.
Image credit: Financial District, New York, Wall Street sign photo by L-BBE via Wikimedia Commons. Creative Commons. Attribution 3.0 Unported (CC by 3.0).
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.