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) pulled back from last week's record high close. The index ended the first trading week of April 2024 at 5,204.34, a little under one percent below where it ended up the week before.
Two factors combined to produce that outcome. On Monday, 1 April 2024, signs that oil prices are likely to rise in the months ahead pushed up inflation expectations. Later in the week, several Fed officials responded by trying to dial back expectations for when they will start cutting interest rates. After the preceding weeks, when Fed officials had all but committed to cutting rates several times in 2024, the effect was to reverse the momentum for rate hikes.
The CME Group's FedWatch Tool still projects the Fed will hold the Federal Funds Rate steady in a target range of 5.25-5.50% until 12 June 2024 (2024-Q2), but that's now looking very shaky. After last week's news, the tool indicates investors are now giving a little over a 50% chance of a rate cut taking place at that date.
Not unsurprisingly, investors responded by shifting their time horizon from 2024-Q2, where they had previously fixed it in anticipation the Fed would announce rate cuts after its meeting in June 2024, toward the more distant future quarter of 2024-Q4.
That change can be seen in the latest update of the alternative futures chart, where the trajectory of the S&P 500 has shifted from the trajectory associated with investors focusing on 2024-Q2 toward the alterate trajectory associated with investors fixing their attention on 2024-Q4.
Assuming that change holds, it represents a new Lévy flight event for stock prices, which occur whenever investors are prompted by the random onset of new information to shift their investing time horizon.
As for the new information that prompted the change, you'll find the market-moving headlines captured in the following summary of the past week's newstream.
The Atlanta Fed's GDPNow tool's latest estimate of real GDP growth for the first quarter of 2024 (2024-Q1) increased to +2.5% from the +2.3% level anticipated last week.
Image credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a bull driving a car that has had to stop because a Federal Reserve official stepped out in front of it, with the Federal Reserve official looking at a map but appearing lost". That prompt is pretty different from the image we got, but we were able to make it work. Just pretend the prompt we gave was "An editorial cartoon of a Federal Reserve official getting lost while driving on the road to rate cuts as a bull looks on."
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.