getBacktestSetup: Get backtest parameter values from 'Strategy'-object

Description Usage Arguments Examples

Description

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,

Usage

1
2
3
4
getBacktestSetup(object)

## S4 method for signature 'Strategy'
getBacktestSetup(object)

Arguments

object

An object of class Strategy.

Examples

 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)

Strategy documentation built on May 2, 2019, 2:09 a.m.