At this time no further help needed. This post can help someone else if they get stuck.
…trying to get started downloading data directly into R. Getting stuck out of the gate.
library(Refinitiv)
#This is the 1st line in which I get an error (taking the code straight from GGBO ReadMe)
timeseries1 <- rd_GetHistory(RDObject = RD, universe=c("AAPL.O", "NVDA.O"))
<Error in rd_GetHistory(RDObject = RD, universe = c("AAPL.O", "NVDA.O")) :
<unused argument (RDObject = RD)
tweaked that works:
timeseries1 <- rd_GetHistory( RD, universe=c("AAPL.O", "NVDA.O")) #dropped "RDObjact ="
So if anyone gets stuck, just drop the "RDObject ="