20%
Quote from k p:
So what you're saying is that 95% of the stocks out there will at some point be worth 5% more than they are at the present day? I don't think I can believe this. I have no idea what the actual number is, but even without a time frame, I doubt that 95% of all stocks will one day be worth 5% more than they are today. Can you back this up in any way?
Quote from jack hershey:
As a person who has explored a lot relative to being wealthy, I can suggest to you that you can make as much money as you want as fast as you want.
For position trading stocks, I settled on doubling capital about every 40 trading days. This requires a filter containing seven conditions.
For intraday trading of commodities, I settled on doubling capital every week. This requires a hold/reversal strategy whereby the system of operation of the market is completely defined.
Quote from jack hershey:
Both of you have done some erroneous reasoning.
BUT, with respect to your question, you can find the correct result by comparing instrument price to instrument volatility.
Volatility can be measured in different fractals. If you begin with the fastest fractal, you are comparing instrument price to granularity of the variables.
As you go to slower and slower fractals, the volatility increases with respect to price.
All complete trading systems take this phenomena into account in their design (neither of you would know this).
For example, in a position trading system it is possible to adjust its operation to any level of performance.
The name for this process is called filtering. Lets say the OP wanted to become wealthy. He would turn to asking the correct questions. He and the two of you have not reached that stage of life as yet.
As a person who has explored a lot relative to being wealthy, I can suggest to you that you can make as much money as you want as fast as you want.
For position trading stocks, I settled on doubling capital about every 40 trading days. This requires a filter containing seven conditions.
For intraday trading of commodities, I settled on doubling capital every week. This requires a hold/reversal strategy whereby the system of operation of the market is completely defined.
Other manners of trading/investing allow even a passive investor to use simple filtered lists to buy and hold and make 250% a year ROI in a context of a three year minimum hold period.
Quote from macintash:
Doubling every week⦠on my latest count you would have all the worlds money with a year or 2.. Maybe we let Forbes know.
Quote from k p:
Here is my stab at it. If its a coin toss, then you have a 50/50 chance. So if you were to ask how much do you bet on this, I think as others are saying 2% sounds about right. I'm not well trained in statistics, but I think the idea that coming up heads in a coin toss 10 or 15 times in a row is quite remote... 20 times in a row would be incredibly unlikely. So if you bet 2% of your account on a 50/50, even if wrong 20 times in a row, you have only lost 40% of your account, and who the heck thinks a coin will come up heads 20 times in a row??
#!/usr/local/bin/perl
use strict;
use Getopt::Std;
use Math::Random::Secure qw(rand);
MAIN: {
our ($opt_r);
getopts("r:");
my $rounds = $opt_r || 10000;
my %tosses = ();
my %runs = ();
my $last = 0;
my $current_h = 0;
my $current_t = 0;
for (my $i = 0; $i < $rounds; $i++) {
my $number = rand();
if ($number > .50) {
$tosses{Heads}++;
if ($last eq "Tails") {
$current_h = 1;
$runs{Tails}{$current_t}++;
$current_t = 0;
} else {
$current_h++;
}
$last = "Heads";
} else {
$tosses{Tails}++;
if ($last eq "Heads") {
$current_t = 1;
$runs{Heads}{$current_h}++;
$current_h = 0;
} else {
$current_t++;
}
$last = "Tails";
}
}
print "\n\nTotal Rounds = $rounds\t\tHeads = $tosses{Heads}\tTails = $tosses{Tails}\n\n";
foreach my $key (keys %runs) {
print "$key\n=====\n";
foreach my $run (reverse sort {$a <=> $b} keys $runs{$key}) {
print "$run\t= $runs{$key}{$run}\n";
}
print "\n";
}
}
Total Rounds = 10000 Heads = 4958 Tails = 5042
Tails
=====
13 = 1
12 = 2
11 = 3
10 = 1
9 = 2
8 = 9
7 = 26
6 = 48
5 = 79
4 = 155
3 = 306
2 = 616
1 = 1236
Heads
=====
11 = 1
10 = 8
9 = 3
8 = 11
7 = 17
6 = 49
5 = 69
4 = 147
3 = 298
2 = 630
1 = 1252
your risk should relate to how long you want to be in business,12 months is 1/12th of your acct per month,if you establish an avg monthly profit, that becomes your new risk per month... humans lie a lot so you can't bet on your ratings of 95% 's,another thing to consider ,if it is that good of a setup, like the bear packer game on monday night, packers giving 8 and over under at 49, the world bet on the pack and the over, if that came thru vegas lost, so they tweaked it( a few bogus penalties) and cleaned up, wall street does the sameQuote from macintash:
I agree all of that is a concern. So do you risk 2%, 5% 15% 35%...
Quote from blah12345678:
A sample run of 10,000 tosses:
Code:Total Rounds = 10000 Heads = 4958 Tails = 5042 Tails ===== 13 = 1 12 = 2 11 = 3 10 = 1 9 = 2 8 = 9 7 = 26 6 = 48 5 = 79 4 = 155 3 = 306 2 = 616 1 = 1236 Heads ===== 11 = 1 10 = 8 9 = 3 8 = 11 7 = 17 6 = 49 5 = 69 4 = 147 3 = 298 2 = 630 1 = 1252