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
Six months and two earnings seasons have come and gone since Thanksgiving 2025 when we were introduced to the worst performing stocks of the S&P 500 (Index: INX). How many of those 10 stocks have seen their fortunes improve and how many are proving to be an even bigger investment turkey than they appeared on the day after last Thanksgiving?
Let's cut to the chase! Here are the relative winners as measured by the percentage of their stock price recorded value on 28 November 2025:
The stock price of these S&P 500 component companies are all higher than they were on 28 November 2026 and are also beating the S&P 500's growth, which has risen to 109.8% of its day-after-Thanksgiving-Day-2025 level. What each of these companies have in common is improved business performance combined with an improved outlook for their earnings.
Meanwhile, all seven of the other Thanksgiving Leftover stocks have experienced continuing declines in their stock prices. Here they are, ranked from best-to-worst performing over the past six months:
The following spaghetti chart shows how each performed throughout the last six months:
Since our last update, Lululemon Athletica (NASDAQ: LULU) has taken the most negative turn for the worse. The athletic apparel company is struggling to sell its mostly foreign-made clothing line in the U.S. after hiking prices to cover the cost of new tariffs. But higher costs are not the "athleisure" clothing company's biggest problem. Its latest products have been on the wrong side of fashion trends as it faces increased competition.
If that weren't enough, the company's top management is involved in war of words with Chip Wilson, the company's founder, who criticized them for losing the company's "cool" factor.
TLDR: Poorly managed Lululemon has become costly and unfashionable with few indications that will change anytime soon, sending its stock price even lower.
Breaking away from the ongoing drama of a failing business, the next chart reveals how the performance of the Thanksgiving 2025 Leftover stocks compares as a group with the S&P 500 index, both as a market-cap weighted index and as an equal-weighted index.
By both grouping methods, the Thanksgiving Leftover stocks are substantially underperforming the S&P 500 index.
Compared to a month ago, the equal-weighted group is close to the same, but the market-cap weighted group is worse off. If you went double-or-nothing in betting whether the Thanksgiving Leftover stocks were going to be doing better or worse than they were a month ago, we'd have to give the edge to worse this month.
Labels: SP 500, stock prices
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.