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
Diversification can be a powerful tool for an investor seeking minimizing the risks associated with their investment choices. But it also leads to new questions, such as "how should I diversify my stock portfolio" and "how much should I invest in each of my individual stocks?"
While the answer to the first question may be as unique as each individual investor, the answer to the second might be found in the Kelly Criterion, a method that was originally developed in the 1950's by John Kelly, who worked at AT&T's Bell Laboratory, to deal with signal noise issues in long distance telephone service.
That the method might also be effective in reducing gambling losses and maximizing winnings over the long term became apparent to both Kelly and professional gamblers. For his part, Kelly described his method in 1956 in A New Interpretation of Information Rate.
Beyond the telecommunications and gambling industries, the Kelly Criterion has also proven to be useful for investors seeking to minimize the downside risk of losses in their investing portfolios while also increasing their returns over time. That's why our latest tool does the math behind the Kelly Criterion for working out how big your individual stock investments should be!
Here are the things you need to know or estimate before using the tool:
And that's it! Enter the indicated data and our tool below will find out how much you should place in each of your individual investments using the Kelly Criterion:
The Kelly Criterion percentage given above is the percentage of the entire value of your portfolio that you should invest in any one stock within your portfolio.
Investopedia's Justin Kuepper offers this additional advice:
The system does require some common sense, however. One rule to keep in mind, regardless of what the Kelly percentage may tell you, is to never commit more than 20-25% of your capital to one equity. Allocating any more than this is carries far more risk than most people should be taking.
And he notes some other things you should know (the chart referred to is available through the link above):
No money management system is perfect. This system will help you to diversify your portfolio efficiently, but there are many things it can't do. It can't pick winning stocks for you, make sure you continue to trade consistently or predict sudden market crashes (although it can lighten the blow).
Also, there is always a certain amount of "luck" or randomness in the markets, which can alter your returns. Consider again the chart we looked at above. See how the best person received a 140% return, the worst got less than 40%. Both traders used the same system, but randomness and volatility can cause temporary swings in account value.
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.