-
Is there any docs indicating which fields are available in the data inter-day summaries api?
I am trying to download historical fx volatility surface, forward and depo curve. However when requesting for maturity date it seems that this field is not available for a long history and even depends on the used ric. api: /data/historical-pricing/v1/views/interday-summaries/{universe} Thanks for the help Killian
-
How to retrieve order imbalance data into close each day
Hi team posting on behalf of client: Query: I would like to scan for Order Imbalances into the close each day.. If there was a way to do this in Workspace, that would be great - but I have a feeling I will need to use the Workspace API and write a python script. I prefer to use Workspace on Web, so may have to use LSEG…
-
Why are we getting "Empty Dataframes" from downloading prices through LSEG Data Python Library?
We are trying to download some prices from lseg through lseg.data python library, but it gives me back empty dataframes? why is that? +++++++++++++++++++++++++++ Sampled Code: import lseg.data as ld import pandas as pd universe = ["GCc1", "GCc2", ] Opens the Workspace session (must be active on the PC)ld.open_session() We…
-
Install DACS 8.2
I am getting the following error for scp_main /* DACS 8.X SCP Log file, created at Mon Mar 23 20:49:37 2026 */ Mon Mar 23 20:49:37 2026: Using default dacs_system password to login to Database. Mon Mar 23 20:49:37 2026: Database server host is localhost; service name is dacs_main; collate is C; ctype is C; Encoding is…
-
How to authenticate in cloud?
Query raised by CSM below i have a user, who is trying to use Python/Codebook via the cloud. He is asking how he can authenticate it. i know how to do it in Workspace, not the cloud though.
-
How can I find out the historical data range for an instrument?
I want to retrieve the data range available for an instrument via the API. Sometimes the returned data is empty, and I cannot tell whether there is no historical data or the API is missing data (this has actually happened — when I shortened the time range, the data came back normally).
-
Why does only 'close' have a value while the others are empty?
There are many similar cases. When the SDate and EDate are before 2020, it often occurs that only Close has a price while the others do not.
-
Can I use filecode to retrieve eod pricing through DSS REST API?
i tested filecode extraction in DSS Elektron EoD, and received "202 accepted message". I input filecode 2 in API instrument identifier as below. {"Identifier": "2", "IdentifierType": "FileCode" }, Shall I just wait to retrieve pricing data or am I missing something? Regards, Hiroko
-
Taiwan Stocks subject to uptick rule
hi , We are trying to source information about Taiwan stocks which are subject to up tick rule when selling short. IS that information available via LSEG data feed ? we are getting similar information for Japan Stocks via FID(6577) SH_SAL_RES.
-
Historical data total liabilities S&P 500
Hi, I try to get "total liabillities" data through the report screen as you can see on the picture. I need to get total liabilities from FY0 - FY-24 (so last 25 years). However I get NA for all cells. I click on time series and then put the last 25 years there. What do I do wrong?
-
Downloading data
I have obtained the time-series I need in CODEBK, but I now need to downlaod them offline. Even though I specify the path and the code does not return erros, the pkl file is not available in the destination folder. Are there blocks to download or is there a different way to obtain them locally for some ad hoc analysis on…
-
Clarification on "F2: Not In Cache" Status for Option Quote Request
I'm currently testing a quote request for the option RFA1D172600625.M, and I received the following status message: state="Closed / Suspect / NotFound / '***F2: Not In Cache'" name="RFA1D172600625.M" Could you please help clarify what "Not In Cache" means in this context?
-
Datascope Select- Python payload
Hi Can you please help with a Python Payload to fetch EOD pricing data for few instruments or instrument list I tried to look at the existing sample script <dss-python-shareholder-rights-sample> .. but it looks quite complex. Appreciate your help.
-
Query issue with Commodities data
Hi, I'm trying to fetch historical and live data for a few commodities, but the data field returns NA. The help desk recommended reaching out to you because it seems an issue on your side. Can you please check? import refinitiv.data as rd rd.open_session() cm_hist = rd.get_data( universe = [ 'LCOc1', 'CLc1', 'TRNLTTFMc1',…
-
Cannot login to PermID website
When I attempt to log in to the PermID website I get directed to the login form at https://amers2.identity.ciam.refinitiv.net/auth/UI/Login and can enter my credentials but then get directed to a blank page at "https://permid.org/api/mdaas/ws/auth/saml/SSO" and I am not logged in. A colleague has the same problem so I…
-
How to get the RICs for all stocks listed on the Shanghai Stock Exchange
Hello! I'm trying to get the RICs for all stocks listed on the Shanghai Stock Exchange, but it seems to keep returning an empty table. Does it support SQL queries? Or where can I verify this myself ? like which place in the workspace to check if it's written correctly? tks. df = rd.discovery.search(…
-
Regarding getting international indices Data
I have created an account on LSEG, but I have not yet received the machine account details via email as mentioned .Additionally, I have downloaded the EMA Java as per the documentation. However, to receive the feed, it requires the following details: Ema host Ema username Ema service Where from i get these details ?
-
LSEG Data Library for Python
My client has a below question, can you please advise? they are customer managed account and the user has acess to our desktop platform. I’m trying to access lseg data through the Platform (so that I don’t need to be logged into workspace) and having some issues. I was reading this page Quick Start | Devportal and says I…
-
Certificate error while querying FinancialFiling
Started facing cert issue recently while fetching Filing data both using API via python as well as on API Playground {"errors":[{"message":"Exception while fetching data (/FinancialFiling) : unable to find valid certification path to requested…
-
Fund holdings
I would like to get fund holdings (LP40215045) by ISIN code using the API df = ld.get_data( universe = ['LP40215045'], fields = [ 'TR.FundName', 'TR.FundHoldingName(StartNum=1,EndNum=200)', 'TR.FundHoldingRIC(StartNum=1,EndNum=200)','TR.FdInvestorPctPortfolio(SDate=2021-12-31,EDate=2024-12-31,StartNum=1,EndNum=200,Frq=Q)'…