Description Usage Arguments Examples
Gets the backtest parameter values of an object of class Strategy
that were used for backtesting the strategy. This includes the information about the parameters,
1 2 3 4 | getBacktestSetup(object)
## S4 method for signature 'Strategy'
getBacktestSetup(object)
|
object |
An object of class |
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 backtest setup from MA(200)-Strategy
getBacktestSetup(myStrat.MA)
##End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.