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
How far forward in time are investors looking in setting current day stock prices?
If you can answer that question, you're well on your way to understanding why stock prices are behaving as they have been.
For example, the specter of rising interest rates has rattled the S&P 500 (Index: SPX) during the past two weeks. So much so that the bond market's latest 'tantrum' greatly increased the prospects of the Federal Reserve taking action sooner rather than later to ensure the bond market has sufficient liquidity and to bring rates under greater control.
We see these dynamics in the time horizon for investors pulling inward to the current quarter of 2021-Q1 in the alternative futures chart's latest update. That move comes after investors have generally fixed their attention on 2021-Q2 since late January 2021, with some brief glances at the more distant future quarter of 2021-Q4 in mid-February 2021.
Since expectations for the change in the year-over-year growth rate of dividends in 2021-Q1 are less than those for 2021-Q2, investors shifting their focus toward 2021-Q1 would coincide with falling stock prices. As the chart shows, the trajectory of the S&P 500 came close to breaking below the redzone forecast range shown on the alternative futures chart on Thursday, 4 March 2021, but rebounded to stay within it on Friday, 5 March 2021.
For now, that means the assumption built into the redzone forecast range that investors would maintain their forward looking focus on 2021-Q2 still holds. However, we're getting a taste of the volatility that results from investors shifting their forward time horizon. That volatility would be a lot bigger if investors were to fully shift their attention to 2021-Q1, but the events of the past week were such they only shifted a portion of their attention to that possibility, and so, we just got a small taste of that potential.
Speaking of the events of the past week, here's our list of the more notable items based on our assessment of their market-moving potential.
Elsewhere, The Big Picture's Barry Ritholtz scans the past week's markets and economics news and sets out the positives and negatives he found!
In his succinct summary, Barry observes the NASDAQ Composite stock index (Index: COMP) is now down for the year. The current bond market tantrum is hitting tech stocks much harder than others, which given its composition, means the Nasdaq has taken the most damage from the tantrum among the major U.S. stock market indices. The reason for that may be found in the hedging strategies of bond investors, who had been plowing money into 2020's high-flying tech stocks to offset the risk of losses from rising rates in bonds during the coronavirus recession. With interest rates now rising, they are cashing in their profits in these stocks to offset their losses in bonds, as they sell tech stocks into a stock market that's no longer propped up by their demand for tech stocks.
The S&P 500 has been affected by this activity because tech stocks have grown to claim a significant weighting within the index. It has been affected to a lesser extent than the Nasdaq because of its greater diversification.
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.