Description Usage Arguments Examples
Gets the maximum drawdown of the performance of an object of class Strategy
.
1 2 3 4 5 6 7 8 9 | MDD(object, of="portfolio"
, from=NULL, until=NULL, which=NULL
, type="relative", include.costs=TRUE
, use.backtest=FALSE)
## S4 method for signature 'Strategy'
MDD(object, of = c("portfolio", "assets"), from = NULL,
until = NULL, which = NULL, type = c("absolute", "relative"),
include.costs = TRUE, use.backtest = FALSE)
|
object |
An object of class |
of |
Maximum Drawdown 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. |
type |
If the |
include.costs |
If |
use.backtest |
If set to |
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
# MA(200)-Strategy
params <- list(k=200)
myStrat.MA <- Strategy(assets=assets, strat="MA", strat.params=params)
# Get MDD of MA(200)-Strategy portfolio
MDD(myStrat.MA, from="2015-01-01", until="2015-12-31")
# Get MDD of MA(200)-Strategy (daily data = 252 trading days)
# MDD(myStrat.MA, from="2015-01-01", until="2015-12-31", use.backtest=TRUE)
## End(Not run)
|
$Portfolio
$Portfolio$mdd
[1] 0.08629215
$Portfolio$from
2015-01-05
1.003505
$Portfolio$to
2015-11-28
0.9172128
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.