getCosts: Get strategy function from 'Strategy'-object

Description Usage Arguments Examples

Description

Returns the fixed and relative trading costs of an object of class Strategy..

Usage

1
2
3
4
getCosts(object)

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

Arguments

object

An object of class Strategy.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##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.costs <- getCosts(myStrat.MA)
# return fix costs
MA.costs$fix
# return relative costs
MA.costs$relative

##End(Not run)

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