-
Are there any new methods on pulling expired options data?
Hello! I am currently utilizing an updated version of script functions posted below to obtain valid RIC codes for expired options data. Since this method is much more costly compared to pulling active options from existing chain codes, do any new techniques exist for finding expired options RIC codes? I will appreciate any…
-
Using Getdata function to Get CUSIP based on RIC
Hello! When I was using Getdata function in Refinitiv Workspace API, I used RIC to get CUSIP (and I set the parameter: 'SDate' and 'EDate', I tried to make they are the same day to get the certain day's data). However, most of the transfer is right, some of the CUSIP I got is totally wrong. And I mannually double-checked…
-
rdp Error400 Bad Request for Vol Surface data quantitative-analytics-curves-and-surfaces
Hi All, I am unable to retrieve data, I get error 400 "Bad Request". Here is my request: RESOURCE_ENDPOINT = "https://api.refinitiv.com/data/quantitative-analytics-curves-and-surfaces/v1/surfaces" requestData = { "outputs": ["Data"], "universe": [ { "surfaceTag": "Example Vol Surface", "underlyingType": "Eti",…
-
How to retrieve bond rating and sector credit curve data - using Python API
Hello, I have a datasheet with a list of bond ISINs for which I have a start date, end date, the sector classification, currency and rating information. For each bons in the dataset I would like to retrieve the currency-sector-rating specific credit yield curve starting at its specific start and end date. I am facing the…
-
Cotton Continuation contracts pulling CRT_MNTH and EXPIR_DATE
Hi, I have code below http://import lseg.data as ld import pandas as pd import time from datetime import datetime, timedelta from dateutil.relativedelta import relativedelta # ------------------------------------------------------------------------------ # 1. Open LSEG Data session #…
-
RIC check in my list for Workspace Codebook
Hello Friend, I'm using Workspace Codebook LSGE data API. I have a list of RICs but I always get some errors like "the universe is not found", which, after I throughly check, is due to one or more invalid RIC in my list eg. BRL3Y=. Would you kindly advise is there any quick way to get out to me which RIC is invalid in my…
-
TEXTUAL ANALYSIS PYTHON
Hello everyone! I would like to understand how to obtain the headlines of all companies, for example, U.S. companies, on Python by inserting keywords, from 2020 to today. The code I used only works with 100 rows. Thank you!
-
Pulling data for Calendar Spreads
http://ld.discovery.search( view = ld.discovery.Views.SEARCH_ALL, filter = "RCSAssetCategoryLeaf eq 'Commodity Future' and TickerSymbol eq 'CT' and ExpiryDate ne null and PrimaryChainRIC eq '0#CT-:'", select = "RIC,DocumentTitle,ExpiryDate", top = 1000 ) So I want to adjust this so I can pull all calendar spread data from…
-
what is the difference between refinitiv data API and lseg data API?
In Workspace codebook, we can found two APIs, one is using lseg data api, eg. import lseg.data as ld, another is using refinitiv api, eg. import refinitiv.data as rd. May I know what is the difference between the two APIs? Are all functions (expecially api syntax) the same for the two libraries? Thanks & Regards, Dan
-
Crossed order books between venues issue. Using RawMarketByPrice
I'm processing CSVS for order book data from the RawMarketByPrice view that look like this: #RIC,Domain,Date-Time,GMT Offset,Type,MsgClass/FID number,UpdateType/Action,FID Name,FID Value,FID Enum String,PE Code,Template Number,Key/Msg Sequence Number,Alias Underlying RIC,Number of FIDs QCOM.ARC,Market By…
-
Earnings Call Transcripts Download
Hi, I am having trouble in finding out how we can download earnings transcripts using refinitiv (the programming language doesn't matter). Can someone please help me with the sample code to extract earnings calls transcripts? Thank You in Advance.
-
IRPR data in Python
Hi Team, I am assisting a client to use the list of chains below and its data. I sent him a sample code for 1 chain (USD) import refinitiv.data as rd session = rd.session.desktop.Definition(app_key=('DEFAULT_CODE_BOOK_APP_KEY')).get_session() session.open() rd.session.set_default(session) IRPR_chain =…
-
Downloading Analyst Reports using Eikon Data API in Python
Hi everyone, I am trying to download analyst reports using the Eikon Data API in Python, but I am running into issues with both approaches I have tried. Hoping someone here can help! Issue 1: 500 Internal Server Error for Document Download The first method I tried was getting the document ID and then using the…
-
API stops pulling data for specific RIC
Hi, I have an Python API to pull CA data on a list of RICs every day. For this RIC, "BONDS", my API call works for a while and then stopped pulling data on Feb 14, 2025, and when I called helpdesk I was told this is not a specific identifier. I understand what they say, but "BONDS" as a specific identifier works…
-
Do we have an option to retrieve SDC New issues data in API?
Client provided code: import eikon as ek import pandas as pd import logging import time # Configure logging logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') # Set your Eikon API key API_KEY = '' ek.set_app_key(API_KEY) # Define fields to query fields = [ 'TR.NIBPSToBenchmark',…