-
Usage of Screener in Python
I need to know how to properly work with the API so I can use all data and be able to filter through it as in the Screener. Therefor I use python. I need help with binding the API and accessing the necessary Data. Example: average ROE of the consumer Discretionary Sector
-
I would like to use the refinitiv-data library in python to return the long text description of a fi
I would like to use the refinitiv-data library in python to return the long text description of a field. Is there a function that does that. for example, i would like to search for AUAO2X6_ZY and get 'zero yield.....'. I am not finding any documentation on this.
-
Get the history changes of RIC
Hello! I am using python library lseg-data. My question is how can I get the history changes of RICs and its previous names, so that my prices are correct? For example Facebook was FB.O but after rebranding it became META.O, I used symbology but did not get the expected result.
-
Inquiry about constant spread ASK-BID in EUREST1M=TRDL
Hello, I am Mariachiara Mariani and I have previously reached out to Refinitiv customer service for some questions and doubts regarding OIS tickers in Refinitiv. We are still investigating these data and we noticed that the series EUREST1M = TRDL exhibits constant spread between BID and ASK for each day over the past year…
-
Fund holdings data as at different dates
Hi, I am trying to obtain the holdings for a set of funds as at different points in time, on a quarterly basis over a 10-year period. I have tried using both the EIKON API, as well as CodeBook to do this. However, I notice that even though I change the date in the parameters field, the Number of Shares and Percentage of…
-
Hi can I ask how do i get the mid price and YTM for bonds via the python API for historical pricing
how do i get the mid price and YTM for bonds via the python API for historical pricing
-
Client wants to extract fillings details via Python / RIC BERM.KL
Query: Is it possible that use python to extract the pdf file if the company have the PN17/GN 3 filling? For the excel just for clarification, cannot show in excel that whether this company have filling for the PN17/GN3? I just wanna detect whether the company is it under PN17 / GN3, or is there any method to check the…
-
Corrupted data retrieved from TR.TotalReturn
Hi, I have retrieved total return data with this script, and there are some rics that has wrong daili returns. For example BLNK.O almost the whole 2020 is wrong, theres a lot of consecutive days that the return is more than 6k, and other several consecutive days as -98 or 500. Could you check this please? Thanks for your…
-
fields and tickers with Datastream/Python
Hi team Where can I find more information on which tickers and fields to use to pull data via the API? For example, I want to use the following mnemonics to get the total return time series for equity indices and fixed income indices, and then price return for gold. However, the equity and fixed income mnemonics do not…
-
pricing/snapshots Market Cap field
Hi, How can I get the Market Cap of a stock using the pricing/snapshots service? https://api.refinitiv.com/data/pricing/snapshots/v1/?universe=/{RIC}Error or is there any other service that I can get the updated market data that should be change during trading time according to the stock price. Thanks!
-
How to get all constituents of the ETF Index IEAC.L via Python API Script ?
I am currently using the following code to extract the RICs of the ETF index IEAC.L: indices = ["IEAC.L"] # ========================= # SECTION 3: GET CONSTITUENTS # =========================def get_constituents(index_rics): all_constituents = [] for index in index_rics: print(f'Extracting constituents for {index}') result…
-
Is there a way to get the spot date of a pair ?
Hi, Is there a way to get Spot date of a given RIC/Pair , if relevant of course ? through the messages received part of the fields received through ETA or separately in another way ?
-
Clarification on EURGBP RICS
Hi, Could you please clarify the calculation behind the data returned by the RIC EURGBP1MV=? On the RIC search portal, the contributor is listed as 'REFINITIV CALCULATED', which implies that the value is derived rather than directly observed. Could you please explain the exact calculation or methodology behind this value?…
-
Retrieve historical Ultimate Parent given a LEI
I am creating a historical database to track track the relationships between fund managers and the ultimate parent of a fund. To do this, I am using the LSEG Python API. I have been testing this procedure using the rd.get_data() function. This allows me to retrieve the name and PermID of the ultimate parent for a list of…
-
How to properly use Python to extract data from LSEG workspace
Government bonds, for example RIC = 'GB10YT=RR', which is the 10 Year Government Bonds of the UK. I am trying to grab its daily data. At first, I am using fields=['TR.OpenPrice.date','TR.OpenPrice','TR.HighPrice','TR.LowPrice','TR.ClosePrice'] in my code. But The close price showed nothing. Then, I changed the fields to…