-
looking for documentation on how to generate RIC's for a variety of securities, including but not li
looking for documentation on how to generate RIC's for a variety of securities, including but not limited to: ETF options, futures, and futures options. Our objective is to be able to programmatically generate RIC symbols for an entire derivatives surface at a time given input data such as strike price, call put flag,…
-
Question about parsing exchtime value
Hi, I use below logic to parse exchange time SALTIM_MS / QUOTIM_MS: var time_ms = java.lang.Long.parseLong(str) val nsec: Long = (time_ms % 1000)*1000000 val seconds: Long = time_ms / 1000 % 60 val minutes: Long = time_ms / 60000 % 60 val hours: Long = time_ms / 3600000 % 24 time = LocalTime.of(hours.intValue(),…
-
Client have the problem with LSEG-data API, The Eikon API has worked very well with no problems
Please find the below Client query, kindly look into it the query please: Query: I have used the Eikon API for quite a few years now. I rewrote the code to use the LSEG-data API. - The Eikon API has worked very well with no problems - The LSEG-data API has problems. The following code works when configured for the Eikon…
-
I am pointing out a problem with the LSEG-data API.
Hi Team, Kindly assist! Case-14694619 | WORKSPACE API I have used the Eikon API for quite a few years now. I rewrote the code to use the LSEG-data API. - The Eikon API has worked very well with no problems - The LSEG-data API has problems. So, I am not asking for coding help, I am pointing out a problem with the LSEG-data…
-
Pulling FX NonDeliverable Forward Curve
Hi, I am currently using the Workspace Excel function to pull in data for a list of BRL FX Forwards with the formula =@RHistory(H7,".Close","TIMEZONE:LON INTERVAL:1D NBROWS:1 END:"&24-Apr-25 21:00) I want to do the same through Eikon Data API and have all the forwards pulled for a specific date and time (in London) into a…
-
Bulk download of PermID data
Hi, I am interested in downloading a large set of permid information. Given the limitation the Entity Search API has on 5,000 entities per day I was looking for alternatives. I found out the linked service in the following url, how can I access the bulk download service? Kind Regards.
-
Extract only breaking news via get_news_headline
I am looking for a way to use the get_news_headlines function within a python script via the Eikon/LSEG-Data API, in a way that the query will only return results which are classified as breaking news, such as the example in the attached screenshot. Currently my function call looks like this:…
-
Download News Article Headlines over a longer period
Hi all, I couldn't find a post with a similar question. I am trying to download news article headlines from Refinitv Workspace from the module called 'NEWS2.0', where I filter for 'Government / Politics [POL]' and English. Moreover, for content type I only select 'News Feeds'. I know I can copy the headlines that are shown…
-
lseg get_data() randomly missing data
Another problem: sometimes, for some requests the server returns empty values. If I rerun the query for the symbol with missing data, I get a correct response. This is an example of a relatively big query, so I will post only the logs: Request with 100 RICs: json = {'Entity': {'E': 'DataGrid_StandardAsync', 'W':…
-
how to identify which perm ID to use. 2 perms IDs for a given name.
Bamford Wealth Management, PermID URI:, PermID URI:
-
How could I collect the historical series of the closing price of shares adjusted for stock splits,
-
Error="insufficient_scope"
I'm aiming to the following and getting insufficient_scope error, please see images for reference.
-
Error 403 when downloading files from API
We have an error when trying to download files from the filings api: https://api.refinitiv.com/data/filings/v1/retrieval/search/docId/{doc_id} The goal is to be able to download the original file. Using the above api, we obtain a valid url (see code below).However the url does not work from Databricks, resulting in a 403…
-
Why I try to get 1 minute data by using get_history, but returned data is missing ?
Hi, I am trying to get 1 minute ice brent oil price from workspace python api. I am using get_history function like this: (I live in EAST-8) df = ld.get_history(universe='LCOcv1',start="2025-04-23",end="2025-04-24",interval="1min",count=2000000) What I get is: Latest data is 2024-04-23 21:59:00, seems to be UTC time, so it…
-
RtGet() using lseg.data library
Hi, how would I do a function like =RtGet("SYD1", [@RIC], "COUPN_RATE") in python using the lseg.data library? Thanks