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…
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',…
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(…
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)…
... I have set the app key couple of times but this error doesn't seem to go away Hi, My eikon, when using following python code: import logging.config import eikon as ek ek.set_log_level(logging.DEBUG) ek.set_app_key('3a0543d5fdca4325ab12c1ecd5c8ae2a0d439e12')…
Hi Team, trying to get benchmark name and ric for several ETFs (using their respective rics). The following code works perfectly for listed/ active ETFs: fields = ["TR.FundBenchmarkName", "TR.FundBenchmarkType", "TR.FundBenchmarkInstrumentRIC"] ric = "SPY" benchs = rd.get_data(ric, fields=fields) However, for all delisted/…
I would like to return a dataframe with all the vessel arrivals historically that have entered a given port. The PORTS app does this but is manual and only allows for 15,000 data points to be extracted.
Please find below an example of pulling BID ASK Data: fields = ["TR.CUSIP", "TR.CLOSEPRICE", "TR.BIDPRICE", "BID", "TR.ASKPRICE", "ASK", "NAVALUE"] fund_data = rd.get_history(universe="VOE", fields=fields, interval="1D", start='2006-10-01', end='2006-11-01') I am seeing huge jumps in the BID-ASK spread (I have observed…
My client has matlab codes that are run on a regular basis as part of our model toolkit, this connects directly to Eikon to download data. Will we still be able to do this in Workspace following the upgrade ? We currently have a generic log-in which is built into the Matlab code. We also have R codes which connect directly…
We're using python in Eikon's codebook app. We'd like to execute our code at specific time (e.g. daily, monthly...etc) on its own. Please advise.
It looks like you're new here. Sign in or register to get started.