I am using the LSEG Data Library for Python to extract price data via Workspace. I divided the ric list into a few groups, and each group contains 25 rics. Then I tried to retrieve the data in a loop. It worked for a few minutes and finally threw out 429 error. I noticed there is rate limit for RDP API, but not sure if it…
Hi , I am using the codebook for the first time and I am trying to plot benchmark yield curve for a specific date, can you please help me how to extract data for the chain RICS like 0#FRBMK=
When I do a POST request hit to 'https://api.refinitiv.com/discovery/search/v1/' with the below payload, I receive a list of venues … { Filter: "BusinessEntity eq 'Quote' and BaseAsset eq '154423041' and not (ExchangeCode in ('NSQ' 'ASQ' 'NYQ' 'XDS' 'DEU' 'TOJ' 'ITE' 'RRC' 'PCQ' 'NAQ' 'NMQ' 'XBO' 'XCA' 'CAQ' 'AUX'…
client verbatim "I'm using the discovery.search function from the refinitiv.data.content package in Python to find bond data and carry out some calculations. I'm trying to find the code for yield or yield to maturity but can't seem to find the correct name for it." I provided a TR data item (TR.FiMaturityStandardYield) but…
My current code workspace_df = ld.get_history( universe=str(org_id), fields=['TR.Revenue', 'TR.F.Source', 'TR.F.PeriodEndDate'], start="2000-01-01", end="2050-01-01" ) However, this only returns annual period data. How can I modify the parameters to include quarterly period as well?"
So I'm trying to get descriptive historical data of CEOs of listed companies hopefully. I'm imagining a panel between 2007-2024 (or last year available) of those companies, in which I have a column of year, another one for the fullname of the CEO in charge during that year, and several other columns with: 1. Age 2.…
We use this query to get RICs: res=search.Definition( view = search.Views.EQUITY_QUOTES, filter = "AssetState ne 'DC' and RIC eq '*.MX' and ExchangeCode eq 'MEX'", select = 'RIC', order_by = 'RIC asc', top = 10000 ).get_data() It works fine, but the result contains more than 1000 RICs that look like GFN_tcR001.MX,…
I am trying to pull some reference data using refinitiv.data via python code but getting Errors: ValueError: Session is not opened. Can't send any request. Can you please help. Code: import refinitiv.data as rd from refinitiv.data.content import fundamental_and_reference platform_session = rd.session.platform.Definition(…
It seems like I found another bug in get_history(). This is the query for ticks for some time range. The problem is - the more RICs I provide as 'universe' parameter, the more missing ticks are in the response. 2 RICs in the query. All ticks are present. The first tick for ALSEA has Volume = 2675. 4 RICs in the query.…
import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = [ 'IBIT.O', 'SPY', 'BND.O', 'FTLS.K', 'GLD', 'ETHA.O', 'PTLC.K', 'PFF.O', 'VNQ', 'SVOL.K' ], fields = [ 'TR.NETASSETVAL.date(SDate=2024-01-01,EDate=2025-04-11)', 'TR.NETASSETVAL(Frq=D,SDate=2024-01-01,EDate=2025-04-11)',…
It looks like you're new here. Sign in or register to get started.