R/genericModelStrategy.R

Defines functions getExpandingLookback setExpandingLookback getBetasByMoney setBetasByMoney addIndicators

Documented in addIndicators getBetasByMoney getExpandingLookback setBetasByMoney setExpandingLookback

#' @export
#' @rdname getExpandingLookback
getExpandingLookback <- function(this){
  UseMethod('getExpandingLookback', this)
}

#' @export
#' @rdname setExpandingLookback
setExpandingLookback <- function(this, x){
  UseMethod('setExpandingLookback', this)
}

#' @export
#' @rdname setBetasByMoney
getBetasByMoney <- function(this){
  UseMethod('getBetasByMoney', this)
}


#' @export
#' @rdname setBetasByMoney
setBetasByMoney <- function(this, x, price){
  UseMethod('setBetasByMoney', this)
}


#' @export
#' @rdname addIndicators
addIndicators <- function(this, ...){
  UseMethod('addIndicators', this)
}
Vitalic57/stratbuilder2pub documentation built on Dec. 18, 2019, 2:56 a.m.