getStratFUN: Get strategy function from 'Strategy'-object

Description Usage Arguments Examples

Description

Gets the strategy function of an object of class Strategy that was used for strategy calculation.

Usage

1
2
3
4
getStratFUN(object)

## S4 method for signature 'Strategy'
getStratFUN(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 strategy function from MA(200)-Strategy
MA.FUN <- getStratFUN(myStrat.MA)

##End(Not run)

quants-ch/Strategy documentation built on May 26, 2019, 4:37 p.m.