The most recent content from our members.
Hello, I'm using the Refinitiv data library for python. In particular, I'm using the following function and have been getting some errors for too many requests. Using rd.get_history(), we were pulling data for a total of 6,458 RICs, separating the requests out into loops of 100 RICs and 3 fields. We've only submitted…
Hello. I've recently been looking at implementing the Refinitiv Data Library in existing code over the eikon library. I've found that when large universes are specified, the refinitiv data library performs significantly worse than the eikon library. Following some testing some strange results were found. For example: When…
I'm just getting started with the Refinitiv Data Library and trying to go through some of the examples contained here: https://github.com/LSEG-API-Samples/Example.DataLibrary.Python/blob/main/Examples/2-Content/2.04-ESG/EX-2.04.01-ESG.ipynb However, I get stuck on even the most basic ones like: response =…
Hello, I'm using the Refinitiv data library for python. In particular, I'm using the following functions and have been getting some errors for too many requests. For rd.discovery.search() and rd.get_history(), I've been getting: RDError: Error code 429 | Too many requests, please try again later. For rd.get_data(), I've…
Hello, I am currently working with the Refinitiv Data Library and attempting to fetch market capitalization data with a quarterly frequency using the get_history() method. Despite specifying interval='quarterly' as a parameter, I am only able to retrieve the yearly data. The quarterly values are available through…
I am trying to compile a list of all vessels that have left a list of ports. I have checked the 'PORTS' app. This works well but doesn't have origin port or commodity as columns in the result. I would like to pull this in Python too if that's easier. I have a list of 17 berths. I am trying to figure out how to generate a…
I am trying to retrieve the 'CONDITIONS' data when calling rd_getHistory with the Time and Sales ("tas") interval for equity instruments: df = rd.get_history(universe, start = "2024-07-18T13:30:00.000", end = "2024-07-18T20:00:00.000", fields=["TRDPRC_1","TRDVOL_1","CONDITIONS"], interval = "tas") In Workspace if I display…
I am migrating from Eikon Python API to Workspace Python API, and the Eikon call to get_timeseries is now get_history. get_timeseries used to return Date,HIGH,CLOSE,LOW,OPEN,COUNT,VOLUME by default for bar type data. Is the below call equivalent: df = rd.get_history(universe = [Symbol_T], end = Date_T,…
Hi, I am looking to match up API data to Workspace chart data. Using the .Net sample for historical pricing summaries, I'm finding that TRDPRC_1 sometimes doesn't match that shown in Workspace, wondering if I need to use a different field etc.. This is the sample code: // Retrieve Interday Summaries with P1D (1-day…
Is there a more organized way to retrieve metadata information within the News service? The current script, rd.content.news.story.Definition("urn:newsml:reuters.com:20240508:nL4N3HB510:3").get_data(), outputs metadata in a format that is difficult to parse.
It looks like you're new here. Sign in or register to get started.