-
How to get the option chain for an asset from codebook app?
Hi Dev.Teaam , May I request for your assistance on this Client's query please? Thank you. eikon_data_extractor.py (v4)import datetime as dt import pandas as pd import eikon as ek ---------------------------------------------------------------------1. Conexión (usa tu App Key)ek.set_app_key("") ek.set_timeout(120) Si tu…
-
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…
-
Request for API Access – Last Change Rate Data for Process Automation
Dear LSEG Developer Team, We are currently working on automating a process that requires access to the Last Change Rate data from LSEG. As advised by Toshniwal, Harish, we would like to explore the feasibility of integrating with your API to retrieve this data programmatically. Specifically, we are looking for: API…
-
EikonError: Error code 400 | Backend error. 400 Bad Request.
The python Data API is repeated erroring out of eikon.get_data requests and giving EikonError: Error code 400 | Backend error. 400 Bad Request. Multiple attempts will yield a result but the issue continues to persist making it impossible to do anything but manualy keep resending. Please escalate this to the API team as it…
-
For Ticker MICR.NS we are are not able to get the financial statement date while accessing the works
For Ticker MICR.NS we are are not able to get the financial statement date while accessing the workspace using python from the below code. Can you able to assist us on this. ######eikon_download.py############## import eikon as ek import pandas as pd import yaml import time import re from itertools import repeat from…
-
Excel Add-in
Hello, I am using Mac and want to have the Excel add-in displayed as shown below: (2.png) 2.png However, I only have the following: 1.png How to get access to the first one(2. png)? On windows I know that in the start menu, I can try searching for 'Eikon' then looking for 'Refinitiv Eikon - Microsoft Excel'. However, I…
-
Workspace Python API: Error: no proxy address identified
We are currently migrating our users from Eikon to Workspace, and they are trying to run their Python scripts using the same scripts and api key that they used with the Eikon API (that as I understand should work fine for Workspace?). However they are getting the following error, which they don't get when the Eikon API is…
-
Total Return for an Index
Hi, I would think this would be an easy question, but I can't seem to get a total return for S&P 500 (or other example indices, for that matter), but the formula works fine for stocks. Can someone please advise? My call is below: ek.get_data(['.SP500'],['TR.TotalReturn'],{'SDate':'2017-01-01', 'EDate':'2018-01-01'})
-
get_symbology() from SEDOL to RIC returns "no best match available"
I am trying to convert SEDOL to RIC through get_symbology, but it returns "no best match available". Meanwhile, Same SEDOL is able to convert SEDOL to ISIN. However, I tested it with other SEDOL, it is able to convert SEDOL to RIC. Those unavailable assets are mainly ETFs, and I wonder is this the reason that cause the…
-
Can you please help in creating VBA code for the below:
What I need is VBA code to: Check whether Workspace COM add in is loaded, and load it if not Check Workspace status (online, offline, refreshing, paused) and trigger log in and refreshes Retrieve FX spot live, today’s high, today’s low as well as fixrates (WMRH etc) and the corresponding timestamps
-
meaning of the field VOL_X_PRC1
What is the meaning of the field VOL_X_PRC1. Does this imply VWAP? I see in the Eikon as well as the Workspace product, the field VWAP is not supported when requesting data. Can VOL_X_PRC1 be used for VWAP. Are there any other recommendations for the same.
-
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':…
-
Platform Session
I currently use Reuters Eikon and the desktop session to import price data via Python. As I switch to LESG Workspace, can I use the Platform session instead? Is this included a standard in my license?
-
how to migrate from EikonDataAPI_46 to LSEG Workspace ?
We have built Historical and Realtime code to extract prices from Refinitiv Eikon using EikonDataAPI_46. https://github.com/LSEG-API-Samples/Article.EikonDataAPI.DotNet.Library/tree/main/EikonDataAPI/EikonDataAPI_46 Can someone advise what is the best way to migrate this to LSEG Workspace?
-
We are getting a problem when we request data with the TR.FundYeartoYesterday Field in LSEG_DATA
Its is returning a datevalue. Here is the code to replicate error: """ import pandas as pd import numpy as np import lseg.data as ek ek.open_session() Fields= ['TR.FundYeartoYesterday'] Fundamentals= ek.get_data('LP68102841', Fields) ek.close_session() """ This is being replicated across all other instruments. Other fields…