An issue has been encountered while using the LSEG Python library to retrieve news data. Although the expected daily request limit is 10,000, the number of successful requests appears to be limited to approximately 2,000 to 3,000 per day. def refinitiv_get_news_body(row): if row['status'] == "COMPLETED": #print("body found…
import lseg.data as ld import pandas as pd ld.open_session() df_cds = ld.get_history( universe='.VIX', fields=['TR.ClosePrice'], interval='1D', start='2026-01-01', end='2050-12-31', count=5 ) pd.set_option('display.max_rows', None) display(df_cds) It gives NULL values when running in Python. How can I make this work in…
client is considering using our Exchange/Market Holiday via API, he would like to clarify. How does the API cater for scenarios where the exchange closes unexpectedly for example, typhoon and how are such unexpected closure handled.
The client wants to know if it is possible to retrieve the data being retrieved by this excel formula =@RDP.HistoricalPricing("PLN3YOIS=TTKL","BID;ASK","START:30-Apr-2026 END:30-Apr-2026 INTERVAL:P1D SOURCE:RFV",,"CH:Fd RH:Timestamp") This formula pulls the BID and ASK price of PLN3YOIS=TTKL for April 30, 2026 Moreover, if…
When using RDP, I can request for news metadata using the following URL: https://api.refinitiv.com/data/news/v1/metadata?group=Geography and successfully pull down data. However, on the desktop using Workspace, if I request for the same data, I need to request it through the News Cloud endpoint using this…
I want to extract the following Fields from a RIC via Python / API: DESIRED_FIELDS = { "TR.PriceClose": "Price", "TR.Price52WeekHigh": "52W_High", "TR.Price52WeekLow": "52W_Low", "TR.Volume": "Volume", "TR.PE": "PE_TTM", "TR.EVToEBITDA": "EV_EBITDA", } TECHNICAL_FIELDS = { "TR.PriceTo52WkHigh": "Pct_vs_52W_High",…
An error occurred while requesting URL('http://localhost:9008/api/rdp/data/historical-pricing/v1/views/intraday-summaries/MXN%3D?interval=PT1M&start=2026-04-27T07%3A00%3A00.000000000Z&end=2026-04-28T00%3A00%3A00.000000000Z&fields=MID_PRICE%2CDATE_TIME'). ReadTimeout('timed out') Error fetching MXN=: timed out
I wanted to check if there is a way I could get sell side reports periodically on a select group of companies, downloaded into my folder through an API
I am trying to fetch historical price data via the formula =@RDP.HistoricalPricing() during the execution of a VBA macro. While running the macro it seems like something is preventing the RDP.HistoricalPricing-formula from displaying the data. During the process the macro is supposed to loop through a handfull of RICs to…
It looks like you're new here. Sign in or register to get started.