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
Would the Dogs of the Dow investing strategy work for the year's worst performing component stocks of the S&P 500 (Index: SPX)?
We're asking that question because Seeking Alpha's Jason Capul posted an article with the irresistibly clickbait title of "Thanksgiving leftovers no one wants: 10 worst S&P 500 stocks of 2025" just before the Thanksgiving holiday for the U.S. stock market. Now that it's the day after the Thanksgiving holiday, we're wondering if the S&P 500's 'thanksgiving leftovers', the ten stocks that have lost the most value during the year-to-date in 2025, might provide an opportunity to deliver better returns than the S&P 500 itself in the next year.
Which would be cool if it works, but we don't know that it does. Here's how Investopedia describes how the Dogs of the Dow investing strategy works:
The general concept is to allocate money to the 10 highest dividend-yielding, blue-chip stocks among the 30 components of the DJIA. This strategy requires rebalancing at the beginning of each calendar year.
That presents a problem for the 10 worst-performing stocks of the S&P 500, because none of these stocks would be considered blue chip companies and because seven of the ten pay no dividends. Here's the list with stock prices and Year-To-Date (YTD) stock price performance as of 28 November 2025 to make them genuine Thanksgiving leftovers!
The three firms that pay dividends on this list are Alexandria Real Estate Equities (a real estate investment trust that focuses on pharmaceutical and biotech facilities), Factset Research Systems (a provider of financial data and analysis for financial professionals), and Dow Inc. (a manufacturer of chemicals, with no relation to Dow Jones Industrial Average that puts the "Dow" into the "Dogs of the Dow" investing strategy).
For our Thanksgiving leftovers from the S&P 500, we're going to look two hypothetical investing scenarios. For the first, we'll invest in only the "high-yielding" members of the list of Thanksgiving leftover stocks and compare how that investment performs against the seven other stocks in the list and the S&P 500 as a whole.
For the second hypothetical scenario, we'll invest in the entire list of stocks with the size of the investments weighted by their share of the ten stocks' market capitalizations as of 28 November 2025, and see how that compares against the S&P 500.
We have no idea how any of that is going to turn out. Will reversion to the mean happen for these worst performers giving each a market-beating rate of return? Or will the troubles at the companies that caused their stock prices to plummet so much in the first place keep them falling through the floor? Will the dividend-paying firms or non-dividend paying firms deliver a better performance? Or will the S&P 500 reign supreme over all of the above?
We're excited to find out! We'll nail down the methodology and update the status of how the Thankgiving Leftover stocks are doing about once a month, with the first update coming sometime in January 2026.
Image credit: Turkey sandwich photo by Matthew Moloney on Unsplash.
Labels: ideas, investing, 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.