-
Hi, when using the simple API function df = rd.get_history('SOY-NOLA-REF'), the only available fi...
Hi, when using the simple API function df = rd.get_history('SOY-NOLA-REF'), the only available field I receive is TRDPRC_1. Does this mean that I only can get this field among all other available fields? Thanks a lot
-
ParserError: Unknown string format: tick
Hi, do you have any idea,why got the above named error from following function: def get_ts(): import eikon as ek import pandas as pd ek_app_key='XY' ek.set_app_key(ek_app_key) ticker=['ALVG.DE','BMWG.DE'] start_date='2023-04-24T09:01:00' end_date='2023-04-24-24T09:15:00' interval='tick'…
-
Error handling retrieving SERIES (Python)
I probably miss something very simple, but ... I am retrieving historic financial data by calling .get_data("list_of_rics" , "list_of_Data_Item_Codes") woks fine UNLESS there is an error in one (or more) of the Data_Item_Codes (a definition in this case) In that case, no data is returned ... not just for the item with the…
-
get_symbology not working
Hi all, I'm trying to find companies RIC code using Eikon get_symbology from ticker to RIC. (For example with NVDA and MSFT). The command returns <NaN>, however the documentation clearly supports get_symbology from ticker to ric. As an alternative, I'm now using rdp to get ric. Can someone please help check if…
-
can't pull greek data
i am getting NA values for all greeks for there rics(and many others): AAK192104900.U,AAK192104900.UAAW192104900.U,AAK052104900.U,AAW052104900.U df, exx = ek.get_data(ric_lst, ['STRIKE_PRC', 'TR.RHO', 'TR.DELTA', 'TR.GAMMA', 'TR.THETA'] also tried: df, exx = ek.get_data(ric_lst, ['STRIKE_PRC', 'RHO', 'DELTA', 'GAMMA',…
-
How can I retrieve data from a local Reuters server?
In the excel function RTGet() I can specify the 'Source' in the argument list. I want to do the same in python.
-
Lost Conn message?
Today we saw a peculiar message in a FID on a set of RICs. The message was "<Servvice name> Lost Conn". Wondering what could have contributed this to the RIC? Is this is a typical message that RtGet returns when the connection to the ATS service temporarily drops?
-
Python API - is there an equivalent to Excel API RtGet() ?
Trying to get streaming broker quotes into Python instead of doing it via Excel - is there some subscribe mechanism like RtGet that would stream data / send events when new data comes? Thanks a lot,
-
Newby needs c# class lib & console working example to retrieve internal source contributions
I'm trying to retrieve data from internal contributions in a c# project (class library, later to be referenced in a broader solution, presently in a simple solution where it's called by a test console app, for example's simplicity's sake i'm just trying to make it work in the console project alone) Namely, i can retrieve…
-
Is 'SECOND ACTIVY 1' mapped to SEC_ACT_1?
I see =RtGet('IDN_SELECTFEED',Ref('this','LiveSourceRic'),'SECOND ACTIVY 1') in some of our documents. I know RtGet is an Eikon function but we do not use Eikon in our programming group. I do not see the field 'SECOND ACTIVY 1' for EURAB6E10Y=ICAP in our Java Ric Code viewer. Does 'SECOND ACTIVY 1' somehow get mapped to…
-
Is there an equivalent HTTP request to RtGet() in Eikon API?
Hi there! I'm developing an application in R, so most of my data (including other APIs form Reuters) is collected via HTTP request, but I couldn't find anywhere whether I can call an equivalent to RtGet() or not. The objective is to get the ticker changes and delistings that I get with, for exemple,…
-
RtGet question
For USDFF3L2Y=PYNY, what are the corresponding name in python API (i.e. tr.get_data) for "SECOND ACTIVY 1" For US6YT=TWEB, it has "RT YIELD 1" and "SEC YLD 1" What are the corresponding field name in python API? Besides, is there a way that I can get them as some historical day close i.e. 9/21/2018?
-
How to get RtGet('IDN', 'USDFF3L3Y=PYNY', 'PRIM ACT 1') through python API or other API?
How to get RtGet('IDN', 'USDFF3L3Y=PYNY', 'PRIM ACT 1') through python API or other API?
-
Unable to cast COM object of type 'System.__ComObject' to interface type
When I implement the RtGet function by CSharp (by using Interop.EikonDesktopDataAPI and Interop.RTX), I meet an exception "Unable to cast COM object of type 'System.__ComObject' to interface type 'ThomsonReuters.Interop.RTX.IAdxRtList'". What's happened? public List<RicItem> Get(List<RicItem> ricData) { this.ricData =…
-
Why doesn't Application.Run("RtGet","IDN",RIC,FID) work in Eikon for Excel VBA?
Why doesn't Application.Run("RtGet","IDN",RIC,FID) work in Eikon for Excel VBA?