-
Is there a field in Eikon to return the sector or industry of a stock, according to the exchange, fo
is there a field in eikon to return the sector or industry of a stock, according to exchange (so not gics or any other source which is not directly from the exchange): can use sample ric 2882.TW would like to have a solution to fetch the sector in Python for 2/3 rics in TW: 2882.TW, 2718.TWO and 2330.TW
-
Request to review the simple query that client wrote & optimize it
Request to review the simple query that client wrote & optimize it ds = dsweb.DataClient(username = auth_info['secrets'][1]['key'], password = auth_info['secrets'][1]['value']) # Golbal parameters start_date = '2008-01-01' # Listing of instruments per dataset instruments = { 'energy' : 'ETQC.01,LNGASIA,NATGAS1,LLCC.01',…
-
Download worked for most but not all stocks
HI @Jirapongse As previously discussed with you on another thread I have split up my requests into smaller ones. However, I have now experienced that most prices are being properly downloaded but some are just not and from the logs I do not see the reason for it. Can you please advise? How can I prevent this from happening…
-
ld.news.get_headlines
I was using python library to fetch news by ld.news.get_headlines(query='"Elon Musk" AND Language:LEN AND Source:"X"', count=10). However it returned LDError: Error code 400 | Query cannot return any result. Since I was trying to retrieve social media posts (explicitly X posts), is there a function to do it?
-
Real time news on whats app or Telegram
I am building the bridge to livestream the news from the Refinitiv and want the real time news though notifications on WhatsApp, can you help me with that?
-
Hi, I'm struggling to access TR.NetDebtToEBITDA and TR.NetDebtEV using eikon python API.
Sample workspace excel formula. Client as access for the RIC AAPL.O =@RDP .Data("AAPL.O","TR.NetDebtToEBITDA;TR.NetDebtEV","CH=Fd RH=IN")
-
Is the recommended way to use it via the Python SDK with an App Key
I have one quick question about CodeBook: Is the recommended way to use it via the Python SDK with an App Key? I’ve been running into some blocks that I can’t seem to get around, and I’d like to confirm the best setup for this tool.
-
News and news metadata
Dear Support, I’d like to ask your help with Refinitiv Codebook. There is a smaple Python code in the Workspace application that can exctract news but the code stoped working since a few days. This sample code was provided by Refinitiv and I didn’t make any modification in it but I’d like to use it. I attached screenshot…
-
Content Types for NEWS API
Hi, i'm trying to pull news headlines via the workspace API. rd.news.get_headlines("LSEG, MSFT.O AND Language:LEN", count=50) this code works for pulling headlines, but how do i add another filter for "content type" like in the APP NEWS 2.0? i.e. web news, research, transcripts, filings etc. I'd like to filter my query. I…
-
I understand that this entity is not available in your database. Is there a field in the “get_data
I understand that this entity is not available in your database. Is there a field in the “get_data” Python command to say whether data for an entity (like 5001448514) is available or not, so that I avoid getting an error if I try to download them?
-
why its not working ?
import os, time, pandas as pd import refinitiv.data as rd from refinitiv.data.content import filings as rfil CSV_FILE_PATH = "/Users/prince/Downloads/nwsheet.csv" COMPANY_NAME_COLUMN = "Company Name" COMPANY_ID_COLUMN = "Identifier" # RICs like AAPL.OQ, RELI.NS, etc. DOWNLOAD_DIR = "/Users/prince/Downloads/x" START_YEAR,…
-
Saved in the codebook/kernel even after restarting the whole LSEG Workspace
Is there a way to use the variables that were saved in the codebook/kernel even after restarting the whole LSEG Workspace. So I can use them the next day/week without retrieving the data again?
-
I wanted to understand how can I run the Refinitiv API on AWS Sagemaker using a Python code?
Also, do I need to login to Workspace in order to make this code run? So I will have to log into workspace as well as open session on the sagemaker app for this to run? Is there no way to directly run this on sagemaker without logging into my workspace on my desktop?
-
CASE 15195576/ WORKSPACE KIOSK Application id LD-PYTHON-LIB is invalid
HI, I get the following error when I try to pull data from lseg using pyhton "LDError: Error code 403 | {"ErrorCode":1401,"ErrorMessage":"Application id LD-PYTHON-LIB is invalid"}. Contact LSEG to check your permissions." My code is as follows "news = ld.news.get_headlines(query='P:[Bundesrepublik DeutschlandFinanzagentur…
-
How to get options price/time and sale data from workspace API.
Question, how do we get options-related data from refintiv desktop? Is that something you guys offer? Currently we get back stock price, order book, and trade data. What's the way to get back options order book and trade data? We're currently using this library for quote and trade data. # Determine event types based on…