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
What is the best way to think about what Bitcoin (BTC-USD) is as an investment?
We've already demonstrated what it isn't. Bitcoin isn't "Gold 2.0". We know that's true because Bitcoin doesn't act like gold (KITCO: Live Gold Price), which rises in value whenever inflation forces real interest rates to fall. If anything, we found changes in the value of Bitcoin is almost completely independent of inflation-adjusted interest rates. If gold were a duck, Bitcoin wouldn't look, walk or quack anything like it.
Which then raises the question: what does Bitcoin look, walk and quack like?
We think Bitcoin looks, walks, and quacks like a non-dividend paying stock.
The thing that put us onto that line of thought was a recent headline: Bitcoin’s correlation with the Nasdaq 100 index reaches a new all-time high.
To be highly correlated with something is akin to looking, walking and quacking like it. So we put that proposition to the test, tracking the relationship between Bitcoin and the Nasdaq Composite Index (NASDAQ: COMP.IND), which is a broader measure of the stocks that trade on the NASDAQ stock exchange. The following chart shows what we found after we mapped the available data we have for the historic value of Bitcoin against the value of the Nasdaq Composite Index over the same period of time, from 17 September 2014 through 20 May 2022.
In the chart, we see that Bitcoin's value has two distinct phases. One before the NASDAQ Composite index exceeded $10,000 in value, which was generally linear outside of a bubble-like period from October 2017 through November 2018. One after the NASDAQ exceeded $10,000 in value, coinciding with when Bitcoin began gaining institutional backing and its value with respect to the index took on power law characteristics. In both cases though, outside short periods where changes in its valuation decoupled from changes in the value of the stock index, Bitcoin has a generally tracked along with the NASDAQ, rising and falling with it in a positive relationship.
That makes it very much like a non-dividend paying stock, especially during the period after it began gaining significant institutional backing. We know that from the exponent of the power law relationship that exists between Bitcoin and the Nasdaq Composite Index during this period, which represents the ratio of the exponential growth rates of Bitcoin and that of the Nasdaq index, which includes dividend-paying stocks.
In doing that, Bitcoin is very much looking, walking, and quacking like a volatile non-dividend paying stock, which shares those characteristics. Unless and until it starts acting differently, that's perhaps the best way for investors to think about Bitcoin's qualities as an investment.
We're not the only ones looking at a cryptocurrency and wondering what it looks, walks, and quacks like! Elsewhere on the interwebs, Mitchell Zuckoff argues many cryptocurrencies are passing the Ponzi duck test.
Federal Reserve Economic Data. NASDAQ Composite Index. [Online Database (Text File)]. Accessed 20 May 2022.
Yahoo! Finance. Bitcoin USD (BTC-USD), 14 September 2014 through 21 April 2022. [Online Database]. Accessed 20 May 2022.
Image credit: Photo by Ross Sokolovski on Unsplash.
Labels: data visualization, stock market, stock prices
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.