rblpapi

(Rbplpapi) Get more than 7 months of intraday data

。_饼干妹妹 提交于 2021-02-10 13:15:56
问题 Good afternoon. The task I want to perform is actually quite simple. Using R, connected to Bloomberg with the Rbplpapi package, I want to get as more as possible of intraday (1min) data for the S&P 500.I tried the following code: library("Rblpapi") con = blpConnect() start_date = "01/01/1999 00:00:00" last_date = "07/12/2019 00:00:00" start_date = as.POSIXct(start_date, format="%m/%d/%Y %H:%M:%S",tz="EST") last_date = as.POSIXct(last_date, format="%m/%d/%Y %H:%M:%S",tz="EST") data_spx =

(Rbplpapi) Get more than 7 months of intraday data

生来就可爱ヽ(ⅴ<●) 提交于 2021-02-10 13:14:09
问题 Good afternoon. The task I want to perform is actually quite simple. Using R, connected to Bloomberg with the Rbplpapi package, I want to get as more as possible of intraday (1min) data for the S&P 500.I tried the following code: library("Rblpapi") con = blpConnect() start_date = "01/01/1999 00:00:00" last_date = "07/12/2019 00:00:00" start_date = as.POSIXct(start_date, format="%m/%d/%Y %H:%M:%S",tz="EST") last_date = as.POSIXct(last_date, format="%m/%d/%Y %H:%M:%S",tz="EST") data_spx =