AppraisalRatio | R Documentation |
Appraisal ratio is the Jensen's alpha adjusted for specific risk. The numerator is divided by specific risk instead of total risk.
AppraisalRatio(Ra, Rb, Rf = 0, method = c("appraisal", "modified", "alternative"), ...)
Ra |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
Rb |
return vector of the benchmark asset |
Rf |
risk free rate, in same period as your returns |
method |
is one of "appraisal" to calculate appraisal ratio, "modified" to calculate modified Jensen's alpha or "alternative" to calculate alternative Jensen's alpha. |
... |
any other pass through parameters |
Modified Jensen's alpha is Jensen's alpha divided by beta.
Alternative Jensen's alpha is Jensen's alpha divided by systematic risk.
Appraisal ratio = Jensen's alpha / specific risk
Modified Jensen's alpha = Jensen's alpha / beta
Alternative Jensen's alpha = Jensen's alpha / systematic risk
where alpha is the Jensen's alpha, σ_{epsilon} is the specific risk, σ_S is the systematic risk.
Ho Tsung-wu <tsungwu@ntnu.edu.tw>, College of Management, National Taiwan Normal University.
Carl Bacon, Practical portfolio performance measurement
and attribution, second edition 2008 p.77.
See also package PerformanceAnalytics
.
data(assetReturns) Ra=assetReturns[, -29] Rb=assetReturns[,29] #DJI AppraisalRatio(Ra, Rb, method="appraisal")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.