...empty dataframes The purpose of this case is to determine the ideal number of fields and assets to download in each query, to avoid null data or empty dataframes. I have noticed that when I try to download various metrics and assets, sometimes the data returned is null or the dataframes are empty. However, this issue is…
Below is my code to retrieve an example bond data using RDP Python API: import refinitiv.data as rd from refinitiv.data.content import historical_pricing rd.open_session('desktop.workspace') response = historical_pricing.summaries.Definition( universe='TH179175215=', fields=['ZSPREAD'], start='2010-04-20',…
...ct date using .net Using RDP libraries , i want to get the futures first trade date, expiration date, futures contract date using .net
...Data Platform Library for Python use? I have been trying to find the rate limits of the fundamental and reference module from the Content layer of Refinitiv Data Platform Library for Python and was wondering what API does it use so that I can find out more about it in the playground API. Thanks!
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.
Hello. I have a python program (using refinitiv.data library) that will obtain the refinitiv data twice: 1st part. get_data for [ 'trd_status', 'CF_DATE', 'TR.ACCUMULATEDVOLUME(SDate=0,EDate=0,Frq=D)', 'TR.ACCUMULATEDOFFBOOKVOLUME(SDate=0,EDate=0,Frq=D)' ] for a list of securities, which works fine. split_rq3 =…
I'm using a basic python setup, following the session example on GitHub. import refinitiv.data as rdfrom refinitiv.data.content import fundamental_and_reference rd.open_session() # run routines -> After a number of routines, some 1000 correct calls with http 200 I sometimes receive http code 401. Token de-activated. The…
When requesting quarterly/3 month historical data from the Summaries API the data type for the OPEN_PRC column is defined as Int64 which means we're missing data precision for the values. I'm attaching a screen shot of the resulting table... You can see that the 6 rows in the OPEN_PRC column are all integers. The code to…
I am trying to find all the possible column headers for a script but there doesn't seem to be any help finding what are the possible filters. Using Codebook and taking one of their examples on shipping and want to return a different set of columns on the dataframe but within codebook examples-> 06 - > Shipping, you find…
Hi, I'm using the refinitiv.data module to access data from the Refinitiv Data Library for Python. I'm looking for a way to handle errors. With the previous eikon module i had something like this implemented; try: data_new, e = ek.get_data(instruments, field) except ek.EikonError: handle error in code when i try; try:…
It looks like you're new here. Sign in or register to get started.