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
There's an old joke that has two economists coming across a $20 bill on the sidewalk, which goes:
The young economist looks down and sees a $20 bill on the street and says, “Hey, look a twenty-dollar bill!”
Without even looking, his older and wiser colleague replies, “Nonsense. If there had been a twenty-dollar lying on the street, someone would have already picked it up by now.”
The joke is really about the efficient market hypothesis (EMH), which holds that:
... it is impossible to "beat the market" because stock market efficiency causes existing share prices to always incorporate and reflect all relevant information. According to the EMH, stocks always trade at their fair value on stock exchanges, making it impossible for investors to either purchase undervalued stocks or sell stocks for inflated prices. As such, it should be impossible to outperform the overall market through expert stock selection or market timing, and the only way an investor can possibly obtain higher returns is by purchasing riskier investments.
We can see where that's often true, but is the market always that efficient?
To quote the master: "In theory, there is no difference between theory and practice. In practice there is."
We think we have an example of that today, with an example that involves the S&P 500 quarterly dividend futures that are quoted by the CME Group. Because we track dividend futures closely, we couldn't help but notice that they really haven't moved since 15 December 2017, which happened to be the expiration date for 2017-Q4's dividend futures contracts. At that time, the following values for the amount of quarterly dividends per share expected to be paid out to S&P 500 shareholders by the end each of the indicated quarters were recorded:
[Before we go any further, let's note that these values indicate the approximate amount of cash dividends per share that investors would reasonably expect to collect from their investment in the S&P 500 in the period from the end of the third Friday of the month preceding the indicated quarter through the end of the third Friday of the month ending the indicated quarter, which coincides with the expiration dates of the dividend futures contracts themselves. These values don't match the S&P 500's dividends per share figures that are reported by Standard and Poor, which cover the period of the calendar quarter itself, which runs from the first day of the month that begins the quarter through the last day of the month that ends the quarter.]
What's important about these values is that they haven't changed for a prolonged period of time, even though the expectations for future dividend payments have changed. The following chart shows how much those expectations have changed for the future quarters of 2018-Q2 and 2018-Q3 since 21 December 2017, which is based on the data that we've collected and calculated from the S&P 500's expected future quarterly dividends provided by IndexArb. [Note: IndexArb provides the total dividends expected to be paid out between now and the dividend futures contracts expiration date for the indicated month - to get these values for a given quarter, like 2018-Q2, you need to subtract the value provided for 2018-Q1 from the value provided for 2018-Q2, and so on...]
Keeping in mind that the CME Group's dividend futures represent a prediction of how much cash dividends per share will have been paid out by the time the indicated quarter's dividend futures contract expires, while IndexArb's dividend futures are simply an indication of where those expected dividends per share are right now, the current differences between these two sources of dividend futures suggests that there may be an investment opportunity related to the CME Group's tradable dividend futures contracts. An opportunity that shouldn't exist if this particular market were truly efficient, but which we believe exists because these dividend futures contracts are trading on very thin volumes.
Which would kind of make them like finding money on the sidewalk whenever they get to be too different from a more up-to-date picture of what investors are really expecting for the future.
If you're of an options-trading mind, the question is how would you take advantage of the opportunity presented by this situation for the S&P 500's dividend futures for both 2018-Q2 and 2018-Q3? Is this situation really the equivalent of finding money on the investing sidewalk? And if so, how would you pick it up and claim it as yours before somebody else might?
Regardless of the answers to these questions, it is suggestive evidence that all markets aren't always quite as efficient as many economists might like to think!
Labels: dividends, economics, investing
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.