-
What data item this would refer to so I could grab this data for my Python code using the CODEBOOK
Hi team, raising the case on behalf of client. ** REMOVED ** Query : I was wondering if you could help me find a data item to use with CODEBK? From our Dashboard we have a chart which shows for a portfolio the "% Change - Top/Bottom 10 Securities" which shows the current daily % change or as of last close I believe. I was…
-
RWF data via HMDS WebSocket API
Hi Team, Currently in the WebSocket API documentation, the protocol mentioned is only tr_json2. Is there any possibility to use RWF via HMDS WebSockets? This will ensure a better transport rate and maybe also a lower load on the backend ADSs. Thank you, Rares
-
Fewer Observations when downloading data again
Hello everyone, I am a PhD student and I've been using Refinitiv to download firm-level data for my research. I'm currently facing a problem. I downloaded my main dataset around September 2024. In March 2025, I needed to add another variable, so I re-run the same script to download the data through the Python API. The…
-
Phyton formula to get data for future contracts both active and expired. ie ESU25, ESU24^2
I am attempting to do that I hope you can provide guidance on. This will all be done using Python, which it is good to go. As an example, we can focus on the S&P E-mini (ES). 1) Is there a way to get all contracts for a future instrument? For example, expired, active, and future contracts. 2) Once we get the contracts, is…
-
Scheduled price extraction for currencies
Trying to extract scheduled price data for CNH and CNY identifiers , i was able to successfully extract EOD pricing for these identifiers but facing error when trying to extract the prices at specific time of day, please find below the API query details along with URL and error message Code from ayx import Alteryx import…
-
Getting ISIN Numbers
Hello everyone, Currently I have PERM ID's as firm identifiers in my dataset. I want to gather their corresponding ISIN numbers. Is it possible to do that here ? If so how can I do that ?
-
Codebook Python missing results
In Codebook Python the command df=rd.get_data(['AAPL.OQ','LVMH.PA','APX.AX'], ['TR.ISINCode','TR.CompanyMarketCap.currency','TR.EV.currency'], parameters={'curn':'NATIVE', 'NULL':'Blank'}) returns <NA> for field TR.EV.currency. This was working all the time without problem until today when it failed. The problem was…
-
rd.get_data returning None
Hello I have properly opened a session with rd.open_session (desktop session) but my code is not returning anything. import refinitiv.data as rd rd.open_session(app_key = MY_APP_KEY) data = rd.get_data(universe = ['0#SPXW*.U'], fields = ['PUTCALLIND']) On the other hand, the eikon api returns me data…
-
I started having this issue recently
I started having this issue recently, and I do not know why. price_df = ld.get_data( universe=ric_list, fields=['TR.PriceClose.Date', 'TR.PriceClose'], parameters={ 'SDate': '2010-01-01', 'EDate': '2025-01-01', } ) LDError: 'dict' object has no attribute 'url'. I am also having trouble to start a new session (it normally…
-
Invalid subscriptions on BPIPE.
I am using ETA, service BPIPE. I wanted to clear out some things @Jirapongse : When we try to subscribe to a security with an invalid name, do we directly get a RSSL_MC_STATUS messae (rsslStatus Message) with message.statusMsg.state.dataState as maybe RSSL_DATA_SUSPECT and streamState as RSSL_STREAM_CLOSED or do we first…
-
Why Are Rate Changes Sent as Refresh Messages on EMA for Low-Frequency RICs?
We are analyzing FX rate data by comparing what we receive from the EMA and SSL channels. During this process, we noticed a difference for some low-frequency RICs, which are updated only a few times a day. For example, for the RIC 'TRYTDR=CBTA': On the SSL channel, when the rate changes, we receive it as an Update…
-
Max retries exceeded with url: /auth/oauth2/v2/token
Please can you help us understand why we're getting the following error? Do we need to be white-listed or upgrade one of the following modules? Getting authentication exception failure: 2025-07-10 15:35:32.242884 Sending authentication request with client credentials to https://api.refinitiv.com/auth/oauth2/v2/token ...…
-
RTO Java example
Hello, Our client is currently migrating to v2 authentication and is in process of testing the following RTO Java sample code: websocket-api/Applications/Examples/RTO/java/MarketPriceRTOClientCredAuth.java at master · Refinitiv/websocket-api · GitHub They are concerned that the MarketPriceRTOClientCredAuth.java posted on…
-
CodeBook Crontab or something similar for scheduling Python scripts
Hi everyone, could you please let me know if there is a way in CodeBook or anywhere else in Workspace to configure a task that would run a Python script at a specific time every day? Currently, I download the data manually by running the code, but I would like this process to be automated and executed daily at the same…
-
Time is not updated in API
Client is using the script intraday_data = ld.get_data(universe=etf_tickers, fields=["TRADE_DATE", "SALTIM","TRDPRC_1", "HST_CLOSE"]) intraday_data.rename(columns={"SALTIM":"TRADE_TIME", "Instrument": "ETF Ticker", "TRDPRC_1": "Intraday", "HST_CLOSE": "Prior_day"}, inplace=True) However, it the time was stuck and did not…