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
Here we are, three months after Thanksgiving 2025. How are the Thanksgiving Leftover Stocks of the S&P 500 (Index: SPX) doing?
The Thanksgiving Leftover Stocks are a group of ten stocks that Seeking Alpha's Jason Capul identified as "Thanksgiving leftovers no one wants". Going into Thanksgiving 2025, these were the worst performing stocks of the index, having lost anywhere from 41.7% to 70.1% of their value up to that point of the year.
We've been tracking the daily ups and downs of these stocks since Thanksgiving 2025, creating two hypothetical stock indices to track them. One is a simple equal-weighted index, consisting of an equal number of shares of each stock. The other is a market capitalization-weighted index, like the S&P 500 itself, which we introduced in the previous edition of this series. We're comparing the performance of both of our Thanksgiving Leftover indices with that of the S&P 500.
The following chart shows where each of these indices stand after one quarter.
There have been dramatic changes since the previous edition. One month ago, both Thanksgiving Leftover Stock indices were handily beating the S&P 500. But now, through the end of trading on 25 February 2026, we find the S&P 500 is outperforming both having reached a value 101.4% of its value on the day after Thanksgiving 2025.
The value of the market cap-weighted version of the Thanksgiving Leftover Stocks has dropped to be 97.7% of its post-Thanksgiving Day value, but the equal-weighted version has lost 11.5% of its value, clocking in at 88.5% of its value on 28 November 2025.
The following spaghetti chart reveals the performance of each of the ten Thanksgiving Leftover Stocks with respect to the S&P 500, each indexed with respect to their closing values on 28 November 2025.
Three of the ten Thanksgiving Leftover stocks have beaten the S&P 500 in the last quarter: Deckers Outdoor (NYSE: DECK), Dow Inc. (NYSE: DOW), and Chipotle Mexican Grill (NYSE: CMG), which have risen to be 135.7%, 125.8%, and 108.6% of their values recorded on 28 November 2025.
Another three, Alexandria Real Estate Equities (NYSE: ARE), Fiserv (NASDAQ: FISV), and Molina Healthcare (NYSE: MOH) are treading water, coming within a few percent but still below the performance of the S&P 500.
The final four Thanksgiving Leftover Stocks however are still being clobbered by bears. Of these, Lululemon Athletica (NASDAQ: LULU) has done the best, dropping to 81.1% of its Thanksgiving Leftover Day value. Gartner (NYSE: IT) and Factset Research Systems (NYSE: FDS) are worth 78.4% and 74.5% what they were on 28 November 2025. But The Trade Desk (NASDAQ: TTD) is by far the worst, having dropped to 63.6% of its Day-After-Turkey-Day price.
Which is really amazing when you consider that to even be on this list, it had already registered the second worst performance of the individual stock components that make up the S&P 500 index. Since the beginning of trading on 2 January 2025, The Trade Desk's share price has fallen 78.8% in value, dropping from $117.73 to $24.94 per share on 25 February 2026.
That's a performance that raises questions of whether TTD will remain within the S&P 500 index. Seeking Alpha reports The Trade Desk's market capitalization is $12.06 billion, but that was before the firm reported better than expected earnings but a disappointing outlook after the closing bell on 25 February 2026.
That's less than the $13.36 billion market cap reported by Seeking Alpha for the Class B shares of News Corp (NWS), which was the smallest company by market cap in the S&P 500. If its bad fortune persists, Standard and Poor's next adjustment to its flagship index could see the Thanksgiving Leftover Stocks of the S&P 500 drop from ten to nine members this year.
Labels: ideas, SP 500, stock market, thanksgiving
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.