-
refinitiv.data.eikon warning
Hi, I am in the process of migrating to Workspace, and currently using the python library eikon (import eikon). I read here: that it's possible to keep using the same syntax and fields of eikon even in Workspace through the other library refinitiv.data (import refinitiv.data.eikon). Indeed, this currently works. However,…
-
Data API C# - Streams stop working
Hello, I am having issues where the streams are freezing (no more data comes in) and then my program has excessive memory usage. When I take a heap shot, all of the memory are used by json objects which look to be refinitiv data objects. It's definitely not my application part holding onto memory. I paused a debug session…
-
lseg.data for specific futures contracts
I am converting some older python coding from your eikon API to lseg.data. When I run this script for a continuous future series (such as 'Cc1' for corn) it works as expected and I can access years of historical data. However, when I run the same script for a specific futures contract, I can only get historical data going…
-
Where can I get the new API library in LSEG Worksspace
Hi, we are using in our internal .NET application the EikonDesktopDataAPI.dll from Refinitiv Eikon v4.0.58. Because of disappearing of Eikon on the end of June 2025 we want to use LSEG Workspace v1.24.159. Where we can get the library with API functions which replace EikonDesktopDataAPI.dll by Eikon?
-
Why am I getting different outputs when using CUSIP vs RIC?
In the code below, the volume data which we get is different, when I use the CUSIP vs when I use the ticker. Can you help me in getting the correct information? I want to use CUSIP, but want to get the information which is returned when I use the Ticker as the universe. import refinitiv.data as rd rd.open_session() df =…
-
I am getting Session not opened error while using refinitiv.data
I am trying to pull some reference data using refinitiv.data via python code but getting Errors: ValueError: Session is not opened. Can't send any request. Can you please help. Code: import refinitiv.data as rd from refinitiv.data.content import fundamental_and_reference platform_session = rd.session.platform.Definition(…
-
Deployed Host and DACS ID
I want to use the Python: How to configure the JSON file to ld.open_session('platform.rdp'). I attempted to create a platform session (platform.ldp), but I couldn't get it to work because I dont know my Deployed host and DACS ID - where can I get this? "sessions": { "default": "platform.ldp", "platform": { "ldp": {…
-
How do i get Quarter or Financial year as the Column header for the data?
ld.get_data(universe= [ "TRV", "ORI", "WRB", "BRO", ], fields= ['TR.F.NETPREMEARNED'], parameters= {"Scale":6,'Curn':"USD", 'FRQ':'FQ', 'Period':'FQ0', "SDate":0,"EDate":-5}) , This is the output i'm getting, I want column net premium as header and under sub header quarter or year, is it possible
-
lseg.data.content type conversions
When using lseg.data.content how can I control the type conversions occuring for response fields ? For example : import lseg.data as ld universe = ["/SOGN.PA"] fields = ["BID", "ASK", "CURRENCY", "RDN_EXCHID", "QUOTE_DATE", "QUOTIM", "QUOTIM_MS", "QUOTIM_NS"] stream = ld.content.pricing.Definition(universe = universe,…
-
NaT Issues and Duplicated Dates
I hope you are doing well. I am reaching out regarding some data inconsistencies I haveencountered while retrieving fundamental and market data for specific RICs using theRefinitiv API. I would appreciate your assistance in understanding these issues and findingpossible solutions.Issue 1: NaT Values for…