-
Refinitiv API errors
I tried running this code (attached below). The code is inconsistent in giving results. It worked in the very first attempt for 12 companies but then it throws an error when I ran it for more than 2 companies and sometimes it runs in 3rd/4th attempts. In this inconsistency problem, we can not just say that this code will…
-
Workspace Python API get_data does not sort and filter as expected
When using Workspace Python API under Windows 10, the following commands do not sort and filter the results as required: Fields=['TR.DealTarget', 'TR.DealAcquiror', 'TR.DealStatus', 'TR.DealDate', 'TR.DealType', 'TR.DealPercentSought/100', 'TR.DealValueAnnounced/1000000', 'TR.DealCurrency'] df=rd.get_data('NOVOb.CO',…
-
Workspace Python API fails when requesting data for some investor types
When using Workspace Python API (under Windows 10) and requesting data for some company investors, data are returned for institutional investors, but not for some other investors. For example, the command: df=dl.get_data('48471668160', ['TR.OrganizationID','TR.CommonName',…
-
.NET Refinitiv Data - AWS queue configurability
Hi, we are using this example https://github.com/LSEG-API-Samples/Example.DataLibrary.DotNet/blob/main/src/3.%20Delivery/3.3-Queue/3.3.02-Queue-NewsStories/3.3.02-Queue-NewsStories.cs to create queues for messages. I was wondering how much control we have over the queue and its behavior, e.g. is there a way of…
-
Same RIC Different values for 2 Different Syntax
hi team, can you advise if it's expected that a user would get different BID and ASK values for the same RIC, which is RELI314000G.NS between the two syntaxes? import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['RELI314000G.NS'], fields = [ 'BID', 'ASK' ] ) display(df) and streams =…
-
Workspace Python API takes a long time to complete
When using Workspace Python API under Windows 10, some simple queries take a long time to complete. For example, the Python commands: import refinitiv.data as rd rd.open_session() df=rd.get_data('4296477482',…
-
Eikon get_timeseries migration to rd.get_history: Fields to specify?
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,…
-
How can I select feed within Eikon's python Code Book
I have the option to view quotes on different feeds - Q for live or D for delayed. I only have delayed access to some quotes, how can I access these RICs within Code Book. This seems to default to Q (IDN_SELECTFEED) import refinitiv.data as rd from refinitiv.data.discovery import Chain rd.open_session() fchi =…
-
SCREEN syntax changes when moving from Eikon Python API to Workspace Python API
I have a SCREEN implementation in Eikon API using Python that has been working fine for many months: instrument = "SCREEN(U(IN(Equity(active,public,primary,countryprimaryquote))),IN(TR.ExchangeMarketIdCode,XNYS),BETWEEN(TR.Price52WeekHighDate,20240628,20240628))" df, err =…
-
Workspace Screener Output in Python produces errors when no results are found
When using the Workspace API in Python (under Windows 10), the program produces errors when the Screener results in no data returned. For example, the command screener_output=Screener('U(IN(Equity(active,public,primary))), IN(TR.NAICSNationalIndustryCode,"325520"), \ IN(TR.GICSSectorCode,"30"),…