Learn R Programming

Strategy (version 1.0.1)

getStratFUN: Get strategy function from Strategy-object

Description

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

Usage

getStratFUN(object)

# S4 method for Strategy getStratFUN(object)

Arguments

object

An object of class Strategy.

Examples

Run this code
# NOT RUN {
##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)
# }

Run the code above in your browser using DataLab