-
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(…
-
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…
-
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…
-
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'])
-
What is the API description of these reuters:// code
Client raised a question. I have a question, I built a C# tool that was able to Open the refinitiv eikon quote window, if i supplied it a RIC. See code below. I now was switched to Workspace. What would be the equivalent in here to "reuters://REALTIME/verb=Chart/ric=AAPL.OQ" ? What would be the equivalent to open a chart…
-
Pulling Cotton Continuous data
Hi I have this code, it doesn't pull the EXPIR_DATE and CRT_MNTH prior to 2021, please fix it import lseg.data as ld import pandas as pd ld.open_session() continuous_rics = [ "CTc1", "CTc2", "CTc3", "CTc4", "CTc5", "CTc6", "CTc7", "CTc8", "CTc9", "CTc10" ] df_continuous = ld.get_history(continuous_rics, 'EXPIR_DATE',…
-
What API endpoints aside from datagrid can replicate this SCREENER?
=@TR("SCREEN(U(IN(DEALS)/UNV:DEALSLOAN/),IN(TR.LNParticipant(LNPartRole=LNB:LNBIP:LNBUP:LNBMP:LNR:LNRIP:LNRUP:LNRMP:LNAB:LNABIP:LNABUP:LNABMP:LNG:LNGIP:LNGUP:LNGMP:LNLBO:LNLBOIP:LNLBOUP:LNLBOMP:LNPG:LNPGIP:LNPGUP:LNPGMP),4296949406), BETWEEN(TR.LNMaturityDate,20250319,20750319)/dt:Date/,…
-
Need help to transform a code from CODEBK into a code using API without Eikon.
I am having problem with the parameter "CH", which is not supporter in the fundamental_and_reference.Definition. And there is nothing about it in the docummentation here from refinitiv.data.content import fundamental_and_reference df_earnings_surprise= pd.DataFrame() definition= fundamental_and_reference.Definition(…
-
How to access the GET API?
Hello Team, I am trying to get an output for /data/quantitative-analytics-dates-and-calendars/v1/holidays API and i have updated the parameters in POSTMAN. When i try to run the GET command, I get an authorization error. Kindly assist on this as i need to demo it to the client.
-
Delayed prices using LSEG Workspace API
Hello, I'm trying to collect bids for LCOc1 as soon as the bid change in realtime. My main issue is that I have a 10 min delay. _________________________________ import time import pandas as pd import eikon as ek import os # Set Eikon API Key for access to financial data ek.set_app_key('API_KEY_HERE') # Define the…
-
Price Target High, Price Target Low, Price Target Median, Price Target Mean data in the API
Hello everyone, I can't find the Price Target High, Price Target Low, Price Target Median, Price Target Mean data in the API on a universe. The file below is the universe and the parameters I want but only the columns for this data are empty. Thanks,
-
EURIBOR EndOfDay Extraction
Hello, I am trying to retrieve the EURIBOR rates from this Ric with an EndOfDayPricingExtractionRequest. And the API is returning a null value. However, on the Datascope Select GUI there are values for these fields, only from two days before. So my question is, is there any way to retrieve the first row through the API? Or…
-
Retrieving ISIN and LEI API
Please share the API to retrieve ISIN and LEI data elements using python or a SDK.
-
Search for RICs with EMA library
Hello, I have an application that creates RICs, using specific credentials, on an internal ATS. The name of the RICs created follows a specific patten (all names begin with the same string). I need to retrieve all the RICs created by the application, and it looks like there are two possible options: search all the RICs…