-
how to migrate from EikonDataAPI_46 to LSEG Workspace ?
We have built Historical and Realtime code to extract prices from Refinitiv Eikon using EikonDataAPI_46. https://github.com/LSEG-API-Samples/Article.EikonDataAPI.DotNet.Library/tree/main/EikonDataAPI/EikonDataAPI_46 Can someone advise what is the best way to migrate this to LSEG Workspace?
-
Discrepancies between TotalAssetsActual and TotAssets values for EA banks
Hello, We regularly query banks data from Refinitiv Workspace for TotalAssetsActual. We noticed several discrepancies between the values of this variable and those of TotAssets, though in principle they should align. Specifically: for some banks and periods, e.g. RIC DBKGn.DE - quarters between 2023 Q1 and 2024 Q3, there…
-
What is the rate limit of events api of historical pricing in LSEG Data Library?
I am using the LSEG Data Library for Python to extract price data via Workspace. I divided the ric list into a few groups, and each group contains 25 rics. Then I tried to retrieve the data in a loop. It worked for a few minutes and finally threw out 429 error. I noticed there is rate limit for RDP API, but not sure if it…
-
Filing API returns error message "User did not have entitlements to the field".
Hello, when I tried to get filing data with Python Filing API, I only get NAs and above error message. I was able to download full correct data using ADVFIL function on LSEG WORKSPACE desktop app. However, I need to acquire filing data for over 3,000 firms. I cannot download all of it manually. Here is my code:…
-
How can we use the API function IS-WORKING-DAY from localhost?
Hello, For our internal .NET application we want to use the POST API function is-working-day from localhost. Unfortunately, we cannot find it on the localhost http://localhost:9005/api-docs/#/apps to call it. We can connect to Workspace from our app and want to know how can we find this function in localhost
-
Cannot find the needed Workspace functions on the API Playground
Hello, We upgrade our internal .NET application which currently uses Refinitiv Eikon version 4.0 .NET API. Because of migration to LSEG Workspace from Eikon we try to modify our application and use the new functions from LSEG Workspace. Currently we have 2 functions from EikonDesktopDataAPI in use in our application:…
-
Workspace Trial: Unable to reproduce same output via API as in EIKON environment
Hi Community, Please find below a comparison between the old (EIKON) and the new (WORKSPACE) output. Please also find attached the old vs. new output. I need exactly the old output as in the attached file. This is the skript I am using to compare / retrieve the output: As you can see via the old environment (EIKON) I am…
-
How to calculate FX settlement date?
Hello friend, I'm using Workspace Settlement Calendar Calculator to calculate FX broken dates start date and end date, like the red box outlined in the screenshot below. I would like to know how to archieve this by Python. Thanks & Regards, Mark
-
How connect to LSEG Workspace using .NET API?
Hi, We support our internal .NET application written in VB.NET which currently uses Refinitiv Eikon version 4.0. Because of migration to LSEG Workspace from Eikon we try to modify our application which is using just a few functions from Eikon API: EikonDesktopDataAPI.Initialize() + EikonDesktopDataAPI.Status…
-
IRPR data in Python
Hi Team, I am assisting a client to use the list of chains below and its data. I sent him a sample code for 1 chain (USD) import refinitiv.data as rd session = rd.session.desktop.Definition(app_key=('DEFAULT_CODE_BOOK_APP_KEY')).get_session() session.open() rd.session.set_default(session) IRPR_chain =…
-
What is the longest history data for 1min frequency I can get using get_history()
Hello friends, I'm using the python code below to retrieve 1min historical data, and got error. data1 =ld.get_history( universe=["EUR=","JPY=","AUD=","CAD=","GBP=","CHF=","NZD="], fields=["BID", "ASK","MID_PRICE"], interval="1min", start="2020-01-01", end="2025-01-01" ) I guess it is because the time period is beyond the…
-
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…
-
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 =…
-
API stops pulling data for specific RIC
Hi, I have an Python API to pull CA data on a list of RICs every day. For this RIC, "BONDS", my API call works for a while and then stopped pulling data on Feb 14, 2025, and when I called helpdesk I was told this is not a specific identifier. I understand what they say, but "BONDS" as a specific identifier works…
-
How to retrieve USD/MXN Outright at broken dates (end of quarter for the next 6 quarters) in python?
How to retrieve USD/MXN Outright at broken dates (end of quarter for the next 6 quarters) in python? e.g. using lseg-data library or any other I was able to see this discussion: https://community.developers.refinitiv.com/discussion/66758?tab=accepted Also, the documentation found on:…