Here’s an example R script that will login to Thomson Reuters, query for the historic time series data using the Illumina (ILMN.O) symbol, and then print the result.

Note that there are three time series constants that denote the period: “daily”, “weekly”, and “monthly”.

library("cdatafeedtre")
cdatafeedtre::Initialize()
cdatafeedtre::Login(yourDacsId)

nextUpdate <- cdatafeedtre::GetTimeSeriesDataFor(symbol="ILMN.O", period="daily")

nextUpdate

cdatafeedtre::Logout()

That’s it!

Java Documentation | Bitbucket

Leave a Reply