-
TR.mnaratioofenterprisevalueateffdatetoebit
Client is asking below. Eikon Data API and WS API returns different data types. To be very specific, for the code mnaratioofenterprisevalueateffdatetoebit: Eikon API returns a float (correct) WD API returns a time stamp (incorrect)
-
lseg data platform session api
I am experiencing an issue with the LSEG Data Library where my code retrieves data successfully when using Refinitiv Workspace, but when I switch to a platform session (platform.ldp), I receive empty DataFrames for the same requests. Details: * Working Setup: Using Refinitiv Workspace, my get_data() requests return the…
-
inconsistency with get_history lseg api endpoint
I'm currently migrating a workflow from the legacy Eikon Python API to the new LSEG Data (RD) API, and I’ve encountered a couple of points that require clarification. In the Eikon API, I was using the get_timeseries() function with fields='CLOSE' to retrieve historical Euribor data for the following instruments:…
-
LSEG api get_history doesnt have CLOSE
I’m migrating from eikon to lseg. I’ve been advised to migrate eikons get_timeseries to lseg get_history. With eikon I can get the CLOSE values (see below in a.). Lseg doesn’t have CLOSE or anything similar. (see below in b.) This is using your own codebook. Please advise. a. Refinitiv.Eikon df_hist_ek = ek.get_timeseries(…
-
How to retrieve or see expiry dates for the LME 3M contract for trade dates in the past on API
Is there a way to see expiry dates for the LME 3M contract for trade dates in the past via API i.e I'd like to find out what the 3M expiry date was when trading on 21 March
-
API for Eikon vs Workspace Data
Client is currently testing the API for Eikon vs Workspace and the output are different for some fields related to Deals. Attached is a screenshot for your reference. Can you please check if this is normal and what is the reason behind this? Do we have the correct way of getting the data? (Attached screenshot from API) I…
-
how can I change from streaming to snapshot on RTO
can anyone provide me with a guide on how to change from Streaming to Snapshot for a RTO connection, API using is not clear might be websocket, so if there is a list of resources for different APIs will be great.
-
Community Developer site Issue
New User was able to create an ID on the Community, but unable proceed further, as user unable to the profile. Error message attached
-
Why is the fperiod not properly aligned with the values?
I'm having problem when downloading financial income data. For this example in the code below, the "Financial Period Absolute" (fperiod) is not properly aligned with the true financial data. We can see that on "TR.F.OperProflnOpCASR | XEBT", there are 2 values on FY2024Q4, but it should be one value for FY2024Q4 and…
-
Cannot download SDK. Documentation points to broken links.
Hi, trying to download SDK. I'm having a lot of problems with your website For example, the documentation here has links that throw Not Found 404 https://developers.lseg.com/en/article-catalog/article/publishing-symbol-list-using-ema-non-interactive-provider (404)…
-
Historical exchange data extraction
Hello, For a project I would like to extract monthly data. What I need is for each month historically to extract which stocks were in a specific exchange. For example: the names of all the stocks that where in the euronext Paris exchange in the month of march 2008. (all those that were active at that time, also those that…
-
How to configure endpoint in LSEG Python library?
Hi community! I am trying to find more information about how best to configure the lseg data library for Python. I am interested in connecting to an AWS endpoint that is closest to my servers. How can I configure this? I am familiar with service discovery, but I cannot seem to find a way to change the configuration of the…
-
How to get RIC for a specific market using SEDOL in API
Using the API, I would like to return the RIC for a specific market given a SEDOL. For instance, if I look up BP6MXD8, it returns SHEL.L, but I am looking for SHELl.BS. rdp.get_data(['BP6MXD8','0989529','0144403','0540528','B10RZP7'], ["TR.ExchangeMarketIdCode",'TR.RICCode'])
-
Publishing chain. Is 14 the limit per record?
We are looking to host several thousands of our in house records in TREP for better performance. I was looking at the chains setup for the master list and looks like we can only have links to 14 records( whether we use Template #85 with 17 chars OR template #32766 with 32 chars. ) The chains follow a linked list structure.…
-
Open Session for lseg.data AttributeError: module 'lseg.data._config_defaults' has no attribute 'con
Hello I'm trying to connect to the lseg.data library via an API in Jupyter notebook and when trying to open a session as per below, I get an error message. session = ld.session.platform.Definition( app_key = "My App Key", grant = ld.session.platform.GrantPassword( username = "My Useer Name", password = "My PWD"…
-
Shipping API Question
Is there an API script to see clean products (gasoline, naptha) as imports/exports out of US PADDS zones?
-
Multiple values returned from get_data
Hi, I've inherited some Python code that downloads debt seniority data. I'm running a test on a single security: df_pull_isin, error = ek.get_data(instruments = 'US404280EN53', fields = [ 'TR.NISeniorSubordinatedDebtIndicator.date','TR.NISeniorSubordinatedDebtIndicator.value']) returns output of the form 4414 US404280EN53…
-
RTO Connection seems intermittent
The connection for PPE RTO is very intermittent. Till Saturday (22nd March) morning it was connecting fine from XRE application but after that it started giving the below error: "11:04:35.243","24/03/2025",1,500666,"Thread(3888) Thread(3888) a0_inputclient::authTokenEventCallback - Failed to send the REST request. Text:…
-
Python 3 restarting (but never restarts)
Im having trouble to load any code now. the python on CODEBOOK is not initializing…
-
Historical price-to-book ratio
Hi, I'm using the following code to import historical data for a stock in Python: ld.get_data(universe = "ABBN.S", fields = ['TR.CLOSEPRICE.DATE', 'TR.CompanyMarketCapitalization'], parameters = {'SDate': Start_Date, 'EDate': End_Date, 'Frq': 'D'}) Now I would like to import the price-to-book ratio. What is the best way to…