-
Accessing EOD within DP PRICING API
Hello Team, Client is looking for quicker access to Interday Summaries (EOD) in RDP, as currently the NDA endpoint they use provides them with 45 minute delay (exchange publishes at 15:00 and they receive it at 15:45, as that’s the EOD snap time for NDA). I was advised to use Snapshot API instead but it does not lay in…
-
How to get options price/time and sale data from workspace API.
Question, how do we get options-related data from refintiv desktop? Is that something you guys offer? Currently we get back stock price, order book, and trade data. What's the way to get back options order book and trade data? We're currently using this library for quote and trade data. # Determine event types based on…
-
I want historical option data for NSE/BSE related Index options
Hi I have been able to navigate a bit using a lot of your articles but reconstructing the expired rics is tricky without examples Below was my attempt which was sucessful for recent expiry dates but not historical. index_ric = '.NSEI' options_contracts = rd.discovery.search(view = rd.discovery.Views.EQUITY_QUOTES,top =…
-
Reconstructing total return from scratch
I'm looking at a number of delisted stocks that do not have proper total return series. For example, if you look at BCAP.L^F20, the price return (using TR.PriceClose) and the total return (using TR.TotalReturn) are identical. That can't be right because BCAP.L^F20 has dividends (using TR.DivAdjustedGross). Since the data…
-
401 - Client Error: Unauthorized for url
Client is trying to use TickHistory Intraday Summaries Template as mentioned in the tutorial and able to fetch all fields but getting 401 - Client Error: Unauthorized for url. when fetching Intraday summaries…
-
Make an Python script for the Formula
=@RDP .HistoricalPricing("FGBLc1","TRDPRC_1","START:16-Jun-2025 END:04-Sep-2025 INTERVAL:PT1M SOURCE:RFV",,"RH:Timestamp")
-
missing ask bid data on refinitiv datascope
I downloaded ask and bid data for few firms in 2024, I tried in start of 2024 and it was showing missing ask and bid data before 2019. I tried after few months and I was able to get it. I don't know exactly how. Now I am trying to get the data for same firms and same time period as I lost that data but interestingly again…
-
Accessing Close data for LTF24^2 via python
How to access data for commodity RIC LTF24^2; LTG24^2, etc. via python? Code below doesn't work. Thank you
-
get_history() data range
Hi, I'm trying to pull the historic USDSROIS1M data but even after I specify the start date and interval, it only gives the latest 20 data points. Is there a way to pull historic data up to 1y range?
-
How to get BID/ASK daily data for sovereign yields using get_history?
Hello, I am trying to retrieve daily data for DE3YT=RR (and other RICs with different maturities stored in the list ric_codes) using get_history from refinitiv Python package. I am using this code: import refinitiv.data as rd for ric_code in ric_codes: response = rd.get_history(universe=ric_code, fields=['BID_YIELD',…
-
How can I download price history data in 5 minutes intervals for several stocks for more than 1 year
I’m currently looking for a list of US companies along with their stock prices at 5-minute intervals from 2012 to 2025 — for example, at 09:30, 09:35, 09:40, …, 15:55, and 16:00. May I know how can I download them? FYI, I am mainly using LSEG workspace and excel add-ons. Thank you!
-
Client having issues with API from Eikon.
Case# 15138552 Raising the query on behalf of a client. Seeking assistance with the client query regarding the use of API from desktop Eikon. They are mentioning that the code is not working for several days now as well as getting errors on some asset classes they use. Error is below and script used(most RICs on script is…
-
I can’t seem to get the TRDPRC_1 value for BRTCALAMc0
I am trying to pull forward curve data off of the RDP API and I can’t seem to get the TRDPRC_1 value for BRTCALAMc0. It keeps giving me <NA> - see below: On the Workspace App, I am able to see this value on the Data Item Browser. So I am not sure why that is not possible through the API. Thanks, Denis
-
How do I access alternative close prices via python API
Help! Is it possible to access alternative close prices from the python API? For example BRTDTDMc1 has 2 close prices. ASIA_CLOSE, EU_CLOSE, US_CLOSE, I want to access the ASIA close price as I am trying to find a common timestamp for the below list of prices. Reuters Code' : ['DUBSGSWMc2', 'MRBN1MMASc1', 'OQc1',…
-
I keep getting blocked using the API it get a 429 error
Hello team, raising this case on behalf of client XXXXX rates = [ Rate(5, Duration.SECOND), # 5 calls per second Rate(10000, Duration.DAY), # 10,000 calls per day ] limiter = Limiter(rates, clock=TimeClock()) ------------------------------------------------------------------Global expiry lookup – populated during discovery…