matchTradesQuotes(RTAQ)
matchTradesQuotes()所属R语言包:RTAQ
Match trade and quote data
比赛贸易和报价数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function matches the trades and quotes and returns an xts-object containing both.
功能相匹配的交易和报价,同时包含返回XTS对象。
用法----------Usage----------
matchTradesQuotes(tdata,qdata,adjustment=2)
参数----------Arguments----------
参数: tdata
xts-object containing the trade data. Please see pdf documentation for the recommended format.
XTS对象,其中包含的贸易数据。请参阅PDF文档的推荐格式。
参数: qdata
xts-object containing the quote data. Please see pdf documentation for the recommended format.
XTS对象包含引用数据。请参阅PDF文档的推荐格式。
参数: 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.
数字的秒数的报价注册快于行业(应该是圆的,积极的)。基于Vergote(2005)的研究,我们作为默认设置2秒。
值----------Value----------
xts-object containing the matched trade and quote data
XTS对象包含匹配的交易和报价数据
(作者)----------Author(s)----------
Jonathan Cornelissen and Kris Boudt
参考文献----------References----------
实例----------Examples----------
#load data samples[加载数据样本]
data("sample_tdata");
data("sample_qdata");
#match the trade and quote data[相匹配的交易和报价数据]
tqdata = matchTradesQuotes(sample_tdata,sample_qdata);
#have a look[看看]
head(tqdata);
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|