I'm not sure what you mean by "mean square error" so I'm going to guess.
If returns are uncorrelated and normally distributed then the standard deviation will always scale with the square root of time. So the daily standard deviation will be roughly 1/16 of the annual standard deviation.
The sampling error of the mean (or with certain assumptions the Sharpe Ratio) of a return series (like trading system performance) is equal to the standard deviation divided by the square root of a number of observations. A t-test for positive returns at some frequency is equal to the mean divided by the sampling error of the mean.
For example: Daily returns; average 0.01%. Standard deviation 0.4%
Analogous annual returns: 0.01% * 256 = 2.56% Standard deviation * 16 = 6.4%.
With 16 years of history the annual sampling error on the mean is 6.4 / sqrt(16) = 1.6%
A t-test for positive returns comes out at 2.56% / 1.6% = 1.6 (not significant, significance is normally 2)
With 16*256 = 4096 days of history the daily sampling error on the mean is 0.4% / sqrt(4096) = 0.00625%
A t-test for positive returns comes out at 0.01 / 0.00625 = 1.6 (same value as before)
(Both the numerator and denominator of the t-test have square root of time in them. So changing time has no effect)
The implication of this is that unless the system has a relatively high Sharpe Ratio, and trades relatively quickly, you can't get a narrower confidence interval*. To put it another way only getting a LONGER HISTORY of data will improve your confidence in your backtest, getting MORE FREQUENT returns won't help at all.
(Non Gaussian returns changes this slightly - in particular daily returns give you more chance of seeing the ugly drops that characterise negative skew. Correlated returns also changes this slightly - if they are negatively correlated using annual returns will flatter performance)
GAT
* With a high enough Sharpe Ratio just one year or a few months of data is enough to get a significant t-test using daily returns.
This is precisely what I meant. Thanks for the explanation
