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 S&P 500 (Index: SPX) dropped 1.1% to close the trading week ending Friday, 10 February 2023 at 4090.46.
But according to the dividend futures-based model, the trajectory of the index is running hot compared with the latest redzone forecast. Here's the newest update to the alternative futures chart showing that situation:
Another way to read the level of the S&P 500's trajectory is that it's running about six to seven weeks ahead of the dividend futures-based model's schedule.
There's another possibility that might explain the current trajectory of stock prices. As shown, the model is currently based on the assumption its multiplier is +2.0, which is consistent with how investors have been setting stock prices since 13 September 2022. But what if that has changed for 2023?
One hypothesis we're currently evaluating behind the scenes is that the multiplier may have shifted to zero at the beginning of the year. Here's what the alternative futures chart looks like with that assumption.
Time will tell which of these scenarios is right. Unfortunately, unlike changes in dividend expectations that are easy to identify, the factors that cause the dividend futures-based model's basic multiplier to shift are much more opaque. Our thinking is those shifts are affected by substantial changes in expectations for earnings growth, inflation and interest rates, but lack the data to be able to tell one way or another. Despite having invented and developed the model in 2008 and early 2009, we only have the experience of its multiplier changing from 2020 onward to test that proposition. The jury is very much out for what variables contribute to the shifts in the multiplier, which is why we rely on observation to determine its approximate value.
Meanwhile, the model works in forecasting stock prices because the multiplier tends to be constant for sustained periods of time. Since 2008, we've seen everything from a matter of weeks (in early 2020) to more than a decade (before early 2020)! How long those periods are sustained is one of the chaotic factors that make the behavior of stock prices so fascinating.
The CME Group's FedWatch Tool continues to project a quarter point rate hike at the Fed's upcoming 22 March (2023-Q1) meeting, followed by another at its 3 May (2023-Q2) meeting, with the latter representing the last for the Fed's series of rate hikes that started back in March 2022. After that, the FedWatch tool anticipates the Fed will hold the Federal Funds Rate at a target range of 5.00-5.25% until 1 November 2023 (2023-Q4). It anticipates a quarter point rate hike six weeks later when the Fed meets in mid-December (2023-Q4).
The Atlanta Fed's GDPNow tool's projection for real GDP growth in the first quarter of 2023 jumped to +2.2% from its previous +0.7% estimate.
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.