使用Rblpapi

时间:2016-07-07 03:48:41

标签: r finance bloomberg

我正在使用R从Bloomberg下载数据(买入价和卖出价),具体时间为印度标准时间15:15至15:16。请找到代码。现在我每天通过手动更改日期来运行脚本。我想自动化这些东西。我想在不做更改的情况下运行脚本。

library('Rblpapi')
con = blpConnect()

Function_getTick<-function(Bloomberg_Instrument_Name)
{

    local.times    <- as.POSIXct(c("2016-07-05 15:15:00", "2016-07-05 15:16:00"), format="%Y-%m-%d %H:%M:%S")
    temp_dataframe <- getTicks(Bloomberg_Instrument_Name, eventType = "BID",
                               startTime = local.times[1], endTime = local.times[2],
                               verbose = FALSE)
    temp_dataframe2 <- getTicks(Bloomberg_Instrument_Name, eventType = "ASK",
                                startTime = local.times[1], endTime = local.times[2],
                                verbose = FALSE)
}

0 个答案:

没有答案