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
Did you ever wonder how much money you could earn in the form of cash dividends if you were invested in the S&P 500 (Index: SPX)?
Josh Scandlen of Heritage Wealth Planning did, discovering he could use one of our signature tools, The S&P 500 at Your Fingertips, to extract the information he was after. He put together the following 14 minute YouTube video to explain both how dividends work for you as an investor and how to get cash dividend payout information from our tool:
After watching the video, we had two thoughts:
Long time readers will already see where this discussion is heading! We've built a new tool, one that ties directly into the quarterly dividend data that Standard & Poor reports in spreadsheet form for its heralded S&P 500 index. In it, we put you in the shoes of someone who has either just bought into the index or has just flipped the switch to begin collecting cash dividends from it during the month ending a historic calendar quarter.
Based on the value of the investment at that point of time, it estimates the equivalent number of shares of the S&P 500 you own. It then calculates how much dividend income you would have collected at a later point of time, assuming you never sell any of the shares you own. It will also tell you how much your investment in the S&P 500 is worth at that later point of time you selected.
But that's not all! The tool also extracts how much you would have earned in dividends during the first calendar year of your investment, during the final calendar year, and also during any calendar year that might interest you in between. It will also identify the highest and lowest amount of dividends earned in any calendar year throughout your full period of interest.
If you're ready, here's the tool. If you're reading this article on a site that republishes our RSS news feed, please click through to our site to access a working version of the tool.
We've set the default data in the tool up to reflect the example Josh Scandlen worked in his video, but we've made all the quarterly dividend data we have for the S&:P 500 and its predecessor indices and component stocks going back to 1871. If you want to see that historic data, you can access it either through our The S&P 500 at Your Fingertips tool, which is updated monthly, or at our Quarterly Data for the S&P 500, Since 1871 resource, which we update annually.
Speaking of updates, we plan to update this tool in January 2023 after 2022's dividend data is available, then quarterly afterward.
Using the tool, we recommend selecting different periods and paying attention to when the lowest annual dividend payout data differs from the first year's data. The idea here is that you would want your investment to handle a worst case scenario when the market experiences a major downturn. While this will depend on what periods you might cover, we found that 1896 and 1933 represent major low points for a multi-decade investment holding period.
That said, we're celebrating our anniversary today, and what better way to do it than building on the capabilities of a tool we featured in one of our earlier anniversaries!
Our anniversary posts typically represent the biggest ideas and celebration of the original work we develop here each year. Here are our landmark posts from previous years:
We marked our 2013 anniversary in three parts, since we were telling a story too big to be told in a single blog post! Here they are:
Resuming our list of anniversary posts....
Labels: current, dividends, ideas, investing, SP 500, stock market, tool
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.