
Originally Posted by
tukkk
z-score is a reward to variability ratio and its simple formula is return/standard deviation
an ATS bet standard deviation is close to 1, thats a fact
so how can one be slightly off here and get "bullshit" ?
if you have a reasonable sample size, z-score is a fine way to compare different models imo
That's not quite right, unless I misunderstood you.
I wrote a quick monte-carlo simulation of making sequences of 11/10 (-110 or 1.91) bets of varying lengths and used excel to plot a curve of the standard deviations. A power curve fit perfectly.
For any sequence of X bets, the expected return from those bets is -0.045455 with a standard deviation of 0.9545455x^-0.5
Interestingly, I think you can extend this for any sequence of bets of x length with probability of payoff p and decimal odds of d. I backtested a few different equations and they seem to look like:
Code:
Expected (mean) return = d * p - 1
Standard deviation of the expected return = (d * p) * x ^ (p - 1)
so as a check: x=100, p=0.5, d=1.90909
Code:
Expected return = 0.5 * 1.90909 - 1 = 0.95455 - 1 = -0.045455
Standard deviation = (0.5 * 1.90909) * 100 ^ (0.5 - 1) = 0.95455 * 100 ^ -0.5 = 0.095455
checked by simulation to be correct...