I am trying to reproduce the new Refinitiv R library as in the following link
https://rdrr.io/github/GreenGrassBlueOcean/RefinitivR/f/README.md
After successfully installing the R package, I was able to run the following command successfully
Data <- EikonGetData(EikonObject = Eikon, rics = c("MMM", "III.L"), = c("TR.PE(Sdate=0D)/*P/E (LTM) - Diluted Excl*/", "TR.CompanyName"))
However, when I am trying to reproduce time series command using the following command:
Timeseries <- EikonGetTimeseries( EikonObject = Eikon, rics = c("MMM", "III.L"), , start_date = "2020-01-01T01:00:00", , end_date = paste0(Sys.Date(), "T01:00:00"))
I am getting the following error:
EikonGetTimeseries request returned with length 4
Error in data.table::rbindlist(TimeSeriesList, use.names = TRUE, fill = TRUE) :
Column 2 of item 1 is length 2 inconsistent with column 1 which is length 905. Only length-1 columns are recycled.
In addition: Warning messages:
1: In FUN(X[[i]], ...) :
is.na() applied to non-(list or vector) of type 'environment'
2: In FUN(X[[i]], ...) :
is.na() applied to non-(list or vector) of type 'environment'
3: In cbind(Date = c(FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, :
number of rows of result is not a multiple of vector length (arg 2)