-
Option Futures RICs with Specific Strike Price
Hello All and @Jirapongse - Need an assistance can you help us to provide sample on how to retrieve historical data with specific Strike Price like 100, 101, 120 of '0#TY+ Tried the formula below but we are getting an error and also how to retrieve historicald data for expired option like TYZ24^2 import refinitiv.data as…
-
How to use LSEG Data Library for Python in a docker container?
How to run use the lseg data library inside of the Docker container and connect to the LSEG Workspace session that is running outside of that container? I try to use those function in lseg data library in the docker container, while it keep saying session not open while in my code already included the `…
-
DSS 401 Forbidden Error
Raising this on behalf of my colleague who is experiencing issues when running a DSS script: > dss_auth(user_id = 'XXXXX', password = 'XXXXXX', force = TRUE) Error in `httr2::req_perform()`: ! HTTP 401 Unauthorized. I have 'x'd' out the account details. Please can somebody provide some inclination as what this error is…
-
Data seems to be incorrect using Python API for RIC aUSUNR/A
Hi team, I am raising this on behalf of an external client: Based on what I have checked, I compared the data to our excel workspace as well on our Charts app and we can't seem to get the said incorrect values. Please see screenshots below: Excel: Chart: Please see attached file for the client's script. Estimates data team…
-
Certificate Validation Issue Connecting to api.refinitiv.com
We are trying to connect to the api.refinitiv.com host using curl or powershell and the connection is only successful if we make an insecure connection, ex. curl -k <params>. Curl returns the following error and we similar issue for powershell. curl: (35) schannel: next InitializeSecurityContext failed:…
-
CURVB via python
Hi, is it possible to download (or replicate) the information from the CURVB app into Python? Specifically, I am looking to generate the information screenshoted from the CURVB app directly in Python.
-
Error 429 and AttributeError when downloading the data through APP key in python
Hi Dev team good morning. May I ask for your assistance. Error 429 and AttributeError import asyncio import tkinter import pandas as pd import lseg.data as ld from lseg.data.content import fundamental_and_reference bonds = pd.read_csv('isin_list.csv')['ISIN'].to_list() tkinter.Tk().withdraw() print('Enter your Refinitiv…
-
How to throttle response using RFA
If I have 10 RIC in the itemList and perform a sendItemRequest() for each of them, is there a way that I can throttle the responses with the RFA event queue dispatch() API? Say I just want to receive the feeds for those 10 RICs once every 15 seconds. I looked at throttleEnabled, throttleBatchCount, throttleType but they…
-
403 error when hitting s3 presigned url
Hi, I am retrieving the token and getting the presigned url just fine, but when I run this code out of my own AWS environment I get a 403 when trying to hit the presigned URL. An example of a failure was at 2025-10-27T16:52:34.869Z UTC When I run it on my desktop, everything works.…
-
Workspace data API Errors: Error Code -1|'headers'
Hello Data API team, I'm raising this issue on behalf of my client Workspace users. The issues are discribed below: When I using Workspace data API, I frequently get the Errors refinitiv.data._errors.RDError: Error code -1| 'headers'. Please kindly find the screenshot attached with the error message. I can confirm all the…
-
Increased memory usage during message rate bursts
Hello, We are experiencing increased memory usage in our application built on Release Real-Time-SDK-2.2.3.L1 · Refinitiv/Real-Time-SDK. The memory usage grows during periods of message rate bursts and does not decrease thereafter. Over period of days this leads to memory usage reaching critical levels, requiring the…
-
Sample code not returning data
I am testing this sample code in order to get data, but the dataframe returned is empty My college is getting data with this same code, so Im assuming its something related to configuration
-
Login Denied:Failed to validate sso token
Hi, Recently in my OMMConsumer application (EMA C++ (ema3.7.3.L1)) in pre-production received following 'Status Message' from RTO }FtGroupId [100] SessionId [1] IsActiveSession [TRUE]{Output: Timestamp: 20251028-07:31:31.957967 StatusMsg streamId="1" domain="Login Domain" state="Closed / Suspect / Internal error from…
-
Need assistance on the client's query below:
Analyzing the loaded data for the last 10 to 15 financial years, I found multiple cases of misaligned or otherwise incorrect data. Parameters for SDATE and EDATE are the following: today = datetime.now() EDATE = today.strftime("%Y-%m-%d") # Today's date in YYYY-MM-DD format SDATE = (today.replace(year=today.year - 10,…
-
Issue when opening new session using python lseg.data library
Receiving below error when opening session using python lseg.data library Code: import lseg.data as ld ld.open_session(config_name='./config.json') Error: Traceback (most recent call last): File "<stdin>", line 1, in <module> File…