Learn R Programming

highfrequency (version 0.6.5)

matchTradesQuotes: Match trade and quote data

Description

Function matches the trades and quotes and returns an xts-object containing both.

Usage

matchTradesQuotes(tdata, qdata, adjustment = 2)

Arguments

tdata

data.table or xts-object containing the trade data (multiple days possible).

qdata

data.table or xts-object containing the quote data (multiple days possible).

adjustment

numeric, number of seconds the quotes are registered faster than the trades (should be round and positive). Based on the research of Vergote (2005), we set 2 seconds as the default.

Value

data.table or xts-object containing the matched trade and quote data

References

Vergote, O. (2005). How to match trades and quotes for NYSE stocks? K.U.Leuven working paper.

Examples

Run this code
# NOT RUN {
# match the trade and quote data
tqdata <- matchTradesQuotes(sample_tdata, sample_qdata)
head(tqdata)
# multi-day input allowed
tqdata <- matchTradesQuotes(sample_tdata_microseconds, sample_qdata_microseconds)
# }

Run the code above in your browser using DataLab