-
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)…
-
Eikon API python keeps repeating the following message: "Init a Desktop session with new app_key"...
... 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')…
-
Data retrival for delisted ETFs
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/…
-
Can you return full arrival dataset for a specific port, similar to how the PORTS app works.
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.
-
BID ASK Jumps
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…
-
matlab codes post upgrade to Workspace
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…