Description Usage Arguments Examples
Get a list of the performance indicators of an object of class Strategy
.
1 2 3 4 5 6 7 8 9 10 | performanceIndicators(object, of="portfolio"
, from=NULL, until=NULL, which=NULL, alpha=0.05
, scaling.periods=NULL, include.weights=TRUE
, include.costs=TRUE, use.backtest=FALSE)
## S4 method for signature 'Strategy'
performanceIndicators(object, of = c("portfolio",
"assets"), from = NULL, until = NULL, which = NULL, alpha = 0.05,
scaling.periods = NULL, include.weights = TRUE, include.costs = TRUE,
use.backtest = FALSE)
|
object |
An object of class |
of |
Indicators to be calculated for assets separately or the portfolio. |
from |
The date in character format |
until |
The date in character format |
which |
Names or number of assets that should be included in calculation. |
alpha |
The significance level α that is used for propability of cumulative loss at level 1-α. |
scaling.periods |
Vector with annualization factors for calculation. Default is 252, 52, 12, 4, 1 for daily, weekly, monthly, quarterly and yearly data respectively. |
include.weights |
Only relevant if |
include.costs |
If |
use.backtest |
If set to |
1 2 3 4 5 6 7 8 9 10 | ## Not run:
# MA(200)-Strategy
params <- list(k=200)
myStrat.MA <- Strategy(assets=assets, strat="MA", strat.params=params)
# Get performance indicators of MA(200)-Strategy assets
performanceIndicators(myStrat.MA, from="2015-01-01", until="2015-12-31")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.