-
Downloading historical ETF holdings
I want to download the historical stock holdings of an ETF (VONE.O). I tried the following: holdings = rd.get_data(universe = ['VONE.O'], fields = ['TR.FundHoldingRIC', 'TR.FundHoldingName', 'TR.FundHoldingsDate', 'TR.HoldingsDate', 'TR.FundNumberOfShares', 'TR.FundPercentageOfFundAssets'], parameters =…
-
How to Access Historical CUSIPs via Eikon API?
I’m currently working with a dataset that includes TR.CUSIP, TR.RIC, and TR.OrganizationId fields from Refinitiv. However, I understand that TR.CUSIP only reflects the current version of the identifier. To accurately align and merge my data with Compustat records — which have historical CUSIPs (and are therefore more…
-
Eikon API weird TS behavior
My client is currently trying out the codebook + API (which are extremely nice by the way) and she is running through a weird observation: The week+2 and week+3 show very weird “HIGH” prices that I do not find were traded on the market at the timestamp thy should be. For rolling c2 and c3 RIC codes, is there something…
-
Please check we are getting error using the below code.
Please check we are getting error using the below code. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['.JTOPI'], fields = ['TR.IndexJLConstituentRIC.change'] ) display(df)
-
Raising obo a client: How to set up Refinitiv API for python?
Query: I'd like to set up the Refinitiv API for python. Can you please guide me? I have provided the following to the client: Here are the steps to set up the API connection via Python to pull data in LSEG Workspace: Step 1. Import the necessary libraries: import refinitiv.data as rdimport lseg.data as ld Step 2. Set up…
-
How to download the api for ESG related news for S&P500 companies at one time as period of ten years
-
Python Screener() function error
Dear all, I get an error when I try to run a screen in Python on CodeBook. I start with the example ,ipynb file provided (titled "Access__Screeners_And_Peers.ipynb") To get the screen I want, I follow the explanations on the Developers portal: I use the screener function on the Workspace desktop app (no error), then I…
-
How to get direct access to LSEG Data Platform?
I'm fetching now the LSEG News and articles through an api, using the API KEY and connecting through LSEG Workspace However I 'm looking into using getting direct access to the Data Platform. How can I do so ?
-
When connecting to LSEG Data platform I need an username and a password and an API KEY
Are these username, password my refinitiv workspace account ?
-
Client is facing the issue in running the Report client has access for the RIC .FTAS
from datetime import datetime as dt import pandas as pd import eikon as ek app_key='c5468339768f4efd92d04b15e44ae3b62dab8f22' ek.set_app_key(app_key) index_code='.FTAS' initial_date = pd.Timestamp(2025,7,18) fields = ['TR.IndexJLConstituentChangeDate', 'TR.IndexJLConstituentRIC.change', 'TR.IndexJLConstituentRIC']…
-
Create watchlist / portfolio from rdp
Hi all, Could you pls advice if there is a method in lseg-data python library to create a watchlist or portfolio? Or update a watchlist not manually. Thx, Alex
-
I want to retrieve crypto trading volume data similar to the 'TR.Volume' field. Is 'ACVOL_UNS' the c
-
How can I get the price and date data for PAc1?
When I search for PAc1’s price data in the workspace, I can retrieve the data shown in the chart below. However, when pulling data via the API, only partial data is returned.
-
How can I get the price and date data for .BUKSC?
I can get data by using " ld.get_data(['.BUKSC'], fields=['TR.OpenPrice','TR.HighPrice','TR.LowPrice','TR.ClosePrice(Adjusted=1)'],parameters={ 'SDate': '2025-07-21', 'EDate': '2025-07-24', 'Frq':'D' }).rename(columns={'Close Price': 'Adjusted Close'}) " but when i tried TR.OpenPrice.date, the API returned an error:…
-
How to get exchange/venue holidays?
Hello, I would like to get the list of holidays given a specific exchange, wondering where and how I can find this information. Alternatively, it would also be fine if I can retrieve whether it is a trading day given a specific stock and a specific date. I ask this because during my discovery, I can only find calendars…