I just replicated the quantopian vol -- it is indeed std(daily_returns) * sqrt(all_days_in_simulation)
The sharpe ratio, likewise, seems to be the (simulation_return - simulation_treasury_return) / (simulation_vol)
I believe this means that sharpe ratios (and all the stats) are incomparable between backtests of different lengths.
I am not sure about the risk-free return, I had always assumed that the risk-free rate was the daily-compounded overnight risk-free (OIS) rate, not necessarily the long-term treasury of the nearest maturity.
re: log returns:
Using the existing entire-simulation method of calculating the sharpe ratio, arithmetic returns and the stddev of arithmetic returns * sqrt(sim_period) results in a sharpe ratio of, for instance, 1.74. Using logarithmic returns and the stddev of logarithmic returns * sqrt(sim_period) results in a sharpe ratio of, for instance, 1.58, so these distinctions make a difference.