carry_prices_forward: Carry prices forward

Description Usage Arguments Value Examples

View source: R/utilities.r

Description

Carry prices forward

Usage

1

Arguments

x

an xtx object that may have mulitple columns and NA's

na.rm

should the rows with NA's be omitted after carrying forward?

Value

an xts object where NA's are replace by the last valid value. Note that if NA's appear in the beginning of the series they will appear in the result.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(aapl_fix)
data(a_fix)
aapl_cons = consolidate_prices(aapl_fix$sys_date, aapl_fix$sys_time,
 aapl_fix$td_price, aapl_fix$td_size)
a_cons = consolidate_prices(a_fix$sys_date, a_fix$sys_time,
 a_fix$td_price, a_fix$td_size)
trades = merge(aapl_cons$price, a_cons$price)
trades = carry_prices_forward(trades)
names(trades) = c("aapl", "a")
cointegration_p_matrix(trades)

hafen/nxcore documentation built on May 17, 2019, 2:03 p.m.