-
Problem of downloading News data
Hello, I am an academic and working on a research project. I would like to download all news either in the Turkish language OR related to Turkey from the earliest possible date. Downloading this data has proven to be quite challenging. Could you assist me with this task? I can use python.
-
Questions about App Key Expiry and Management
Hello, I recently encountered an issue with my scheduled program when calling ek .get_data(). The error returned was:Error code 403 | Client Error After checking the discussion forum, I found that the problem was related to the app key, which had expired after three months. I generated a new app key using the App Key…
-
Getting eikon api data in R
Hello, I would like to translate the code below to R in order to get the data in R import eikon as ek EK_KEY = key ek.set_app_key(EK_KEY) ls = ['PETZ3.SA', 'QUAL3.SA'] start_dat = '2010-01-01' df_price, err_price = ek.get_data( instruments=ls, fields=['TR.CLOSEPRICE', 'TR.CLOSEPRICE.date' ], parameters= { 'SDate':…
-
I am trying to run code on codebook . I have correct App Key but getting this error- EikonError(1...
..., 'Status code 400: App key is incorrect'). I am trying to work on API , but not able to run app key code . I have tried to use authenticated app key but it says wrong api
-
Is there any code that enables us to map/fetch the news source name based on a list of source cod...
...es extracted with get_news_headlines()? Technology: Eikon API on Windows Visual Studio Code I was wondering if there is any code that enables us to map/fetch the news source name based on a list of source codes extracted with get_news_headlines()? Example: sourceCode = "NS:RTRS" => return "Reuters News"
-
Data retrival using RIC vs CUSIP
I am using a list of RICs to retrieve data: fields = ["TR.CUSIP","TR.OPENPRICE", "TR.CLOSEPRICE", "TR.BIDPRICE", "BID", "TR.ASKPRICE", "ASK", "NAVALUE", "TR.NETASSETVAL", "TR.Volume", "TR.NUMBEROFTRADES", "TR.CompanySharesOutstanding", "TR.SharesOutstanding", "TR.Name"] month = rd.get_history(universe="TZA", fields=fields,…
-
Get Intraday Prices for European Governement Bond
Hello, I want to get intraday prices minute by minute for European Bonds (traded prices and volume) for Portuguese government bonds at the intraday level (tick, minute, hour). Let use the RIC: PT10YT=RR I managed to get quotes for last price of the day but not all intraday prices in a frequency of minute by minute. Thank…
-
Can you please assist on modifying the formula to get historical?
import refinitiv.data as rd from refinitiv.data.discovery import Chain import datetime from IPython.display import display, clear_output rd.open_session() dic_parametros = { 'SDate': '0', 'EDate': '-25', # 'Frq': 'D', 'Curn': 'BRL', # "CH": "calcdate", # "RH": "IN", "scale": "6" } rd.get_data( universe = 'CEEBB2=ANBI',…
-
NAV in Share Class Base Currency for Given ISIN
Hi, I try to request in Python via Codebook NAV in shareclass base currency and shares outstanding for chosen ISIN. I tried with ISIN: IE00B3XXRP09 which base currency is USD. In very first try I used code: instrument = 'IE00B3XXRP09' fields = ['TR.CompanySharesOutstanding','TR.NETASSETVAL'] history = rd.get_history(…
-
How do i get the data for top news without specifying the RICs I want.
I'm hoping to obtain the top news data from Refinitiv through API/python. Im basing my code on the example provided in the Codebook under News. How do i get the data for top news without specifying the RICs want. this is my current code: rd.open_session() dNow = datetime.now().date() maxenddate = dNow - timedelta(days=7)…