The confidence level is no confidence interval, it splits the simulations into two set of results. You can find many explanations of Monte Carlo simulation on the Internet. I've borrowed the description from here:
http://www.adaptrade.com/Articles/article-mc.htm. Thanks for that! I have done a course in which we used Monte Carlo methods, basically you generate many samples from a distribution (uniform, normal, etc) and then plot a bin graph. The amount of times a bin (which could be a value or a range of values) appear divided by the number of samples was the probability.
From what I read in the link you posted it is the same procedure. My confusion came from here:
In this way, a probability or confidence level is assigned to each result.
As I thought, they mix the concept of probability with confidence level which have a subtle difference, but anyway what is important is to understand what we are talking about.
Actually, what is being described here is the probability of an interval (which is a set),
if U is the universe and A union B = U then P(A) = P(U) - P(B) + P(A intersection B). P(U) = 1 and if the sets are disjoint then P(A intersection B) = 0.
If your Universe is {1,2,3,4,5,6,7} the probability of getting a value less than 4 is P(X < 5) = P(X=1)+P(X=2)+P(X=3)+P(X=4) or which is the same, P(X < 5) = 1 - P(X>=5) = 1 - (P(X=5)+P(X=6)+P(X=7))
so when in the table in
http://zorro-trader.com/manual/en/montecarlo.htmit appears:
it means that in 90% of the samples:
1) the AR was at
least 165%? or exactly 165%?
2) the DDmax was at
most 3080$? or exactly 3080$?
3) the Capital required was at
most 2580$? or exactly 2580$?
Please, if it at least/most, correct me if is at least or at most in each of 3.
If it is exactly then, how did you manage to arrive to an exact value? The bins from a Monte Carlo simulation would be a lot (consider the drunk walk problem that models prices)...Do you average them? For instance if you get AR of 163,164,165,166,167% they go to the 165% bin?
The "1/n" just results from the fact that the higher the confidence level, the less likely it is to get the same or a worse result. At 100% confidence level, only 1 of n samples was same or worse - that's your 1/n probability.
Ok, this is like what I put in the spoiler above, but shouldn't it be 99%? Look: (Confidence level/100) = 1 - alpha,
if Confidence level is 100% then alpha is 0 and P(better result) = 1-alpha = 1 , that is you are sure, and P(the same or worse result) = 1 - P(better result) = 1 - 1 = 0 which is never...
if Confidence level is 99% then alpha is 0.01 and P(better result) = 1-alpha = 0.99 , that is you are almost sure, and P(the same or worse result) = 1 - P(better result) = 1 - 0.99 = 0.01 which is almost never...If n = 100 then 1/100 is 0.01
So the 1/n example works with 99% of Confidence level or am I missing something?