-
Historical data from ipo date
Hello, I would like to know how can I retrieve historical data from a stock from the ipo date without me knowing what is the ipo date? In this request: https://api.refinitiv.com/data/historical-pricing/v1/views/interday-summaries/RICI get only 30 days of history and If I use the parameters from start and end I need to know…
-
cannot import name 'get_service_and_details_omm' from 'lseg.data.delivery._stream'
Hi, When I try to run the code bellow, I have the error ImportError: cannot import name 'get_service_and_details_omm' from 'lseg.data.delivery._stream' import lseg.data as ldimport pandas as pd ld.open_session() # Store data in DataFrames df1 = ld.get_data( universe=['LCOCALMc1'], fields=['CONTR_MNTH', 'EXPIR_DATE',…
-
Issue Retrieving ODAX via Symbology API – FDAX Works, ODAX Times Out
Hello! I'm working with the LSEG Symbology API and running into an issue when trying to resolve the ODAX instrument using the ExchangeTicker identifier type. The same approach works fine for FDAX, but with ODAX, the request times out. Here's a simplified version of the request body I'm using: var requestBody = new { from =…
-
Error for pricing data
Hello, I was trying to extract the price for NVDA by the code below but got a 403 Error. Can you help me on that? import refinitiv.data as rd from refinitiv.data.content import pricing quote = rd.content.pricing.Definition( "NVDA.O", fields=["BID", "ASK", "TRDPRC_1"] ).get_data() RDError: Error code 403 | access denied.…
-
company vs. security question
Hello. I am collecting data using this very simply piece of code: response = ld.get_history( start = min_date, universe= security, end = max_date, fields= price_fields, adjustments = adjustment_factor, ) I am using RICs as identifiers. How do I make sure that I am only collecting price data for the primary security? Is…
-
Retrieving 10-Year Monthly Returns for Multiple Mutual Funds via LSEG Workspace API in Python
Hi, I'm using LSEG Workspace for Students and trying to retrieve monthly returns for a list of mutual funds over the past 10 years using the API in Python. However, I haven't been able to find a function or endpoint that provides this type of time-series return data. I've checked the documentation, but couldn't identify a…
-
Trying to get historical information about a company using the following code
I'm trying to get historical information about a company using the following code: <code> import refinitiv.data as rd response = rd.get_history( universe = ["AAPL.O"], fields = ['TR.AvgDailyValTraded5D', 'TR.AvgDailyValTraded20D', 'TR.AvgDailyValTraded30D', 'TR.AvgDailyValTraded52W', 'TR.CompanyMarketCapitalization',…
-
"The access to field(s) denied."
.As per client, he can see the data in Workspace desktop but when trying to pull it in API, he is getting the error (screenshot)| Client has relayed access for RIC AAPL.O Client is using the below script: events = rd.get_history( universe=['AAPL.O'], start=dt.date(2024, 1, 1).strftime('%Y-%m-%d'), end=dt.date(2025, 12,…
-
Depth Data
Hello, I am currently implementing a migration from old Refinitiv Data API to the new .NET Refinitiv Data Library. I am trying to get the following depth data through the PricingStream but I cannot get any returned value. BEST_BID1 (from 1-8) BEST_BSIZ1 (from 1-8) BEST_ASK1 (from 1-8) BEST_ASK1_SZ (from 1-8) I do not see…
-
Trouble retrieving historical data with rd.get_history() – mostly nulls returned
Hi everyone 👋 I'm trying to retrieve historical data for a company using the Refinitiv Data Library, but I'm running into an issue where most of the fields return nulls. Here's the code I'm using: import refinitiv.data as rd response = rd.get_history( universe=["AAPL.O"], fields=[ "TR.AvgDailyValTraded5D",…