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
Usually when we wrap up a trading week for the S&P 500 (Index: SPX), we focus on the big picture for the index.
For instance, did the index set any new highs? The answer to that question is yes, twice in the past week, as the S&P 500 reached 4,187.62 on Monday, 26 April 2021 and then reached higher to 4,211.47 on Thursday, 29 April 2021, before dropping back to close the week of trading at 4,181.21. On the alternative futures spaghetti forecast chart, we see the trajectory of the index is running at the lower edge of the redzone forecast range we have technically been projecting since 11 January 2021, but which we locked in on 22 February 2021.
But it is within the component stocks that make up the index that something more remarkable happened in the month of April 2021. Here's ZeroHedge with that story:
... while the 5%-ish gain for the month in S&P is notable, during 18 sessions this month through trading on Thursday, 95% or more of the index’s members traded above their 200-day moving average.
That’s the most days ever observed in a single calendar month and double the previous high of nine days in September 2009.
Being ZeroHedge, they find the cloud in that seemingly silver lining in the form of a note by Miller Tabak analyst Matt Maley:
“The fact that 95% of the S&P 500 is now above its 200-day moving average is NOT a bullish sign,” Matt Maley, chief market strategist for Miller Tabak + Co., wrote in an April 26 note.
“Yes, a high number of stocks above their 200 DMA’s is usually positive, BUT it is NOT bullish when the number becomes extreme (like it is now…at 95%). In other words, this data point is much like sentiment. When it is strong, it is positive…but when it becomes extreme, it becomes a contrarian indicator!”
If you've been paying attention to the S&P 500 chaos series, you know we're coming up on when the current trend will end.
But what will be the triggering event that changes the index' trajectory? For that, we pay attention to the market moving headlines in the news. Here's what we flagged as notable in the final week of April 2020.
Want to find out what positives and negatives were in the past week's markets and economics news? Click through to find Barry Ritholtz' succinct summary!
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.