sr_variance {SharpeR} | R Documentation |
sr_variance .
Description
Computes the variance of the sample Sharpe ratio.
Usage
sr_variance(snr, n, cumulants)
Arguments
snr |
the population Signal Noise ratio. Often one will use the population estimate instead. |
n |
the sample size that the Shapre ratio is observed on. |
cumulants |
a vector of the third through fourth, or the third through seventh population cumulants of the random variable. More terms are needed for the higher accuracy approximation. |
Details
The sample Sharpe ratio has variance of the form
where is the population Signal Noise ratio,
is the sample size,
is the population skewness,
and
is the population excess kurtosis, and
through
are the fifth through
seventh cumulants of the error term.
This form of the variance appears as Equation (4) in Bao.
See ‘The Sharpe Ratio: Statistics and Applications’, section 3.2.3.
Value
the variance of the sample statistic.
Author(s)
Steven E. Pav shabbychef@gmail.com
References
Bao, Yong. "Estimation Risk-Adjusted Sharpe Ratio and Fund Performance Ranking Under a General Return Distribution." Journal of Financial Econometrics 7, no. 2 (2009): 152-173. doi: 10.1093/jjfinec/nbn022
Pav, S. E. "The Sharpe Ratio: Statistics and Applications." CRC Press, 2021.
See Also
Examples
# variance under normality:
sr_variance(1, 100, rep(0,5))