The most recent content from our members.
I have the Python program below to download some earnings call transcripts through EDP-API. I have an enabled EDP-API and the program authenticates successfully, but it cannot find any earnings call transcripts. I am not sure if the transcripts are not accessible through the API, or if there is something wrong with the…
这里可以直接通过导入excel来获取数据,但是如何通过api来实现
I am raising this on behalf of client. Why does this script/parameter format does not work? import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['AAPL.O'], fields = ['TR.F.TotRevenue'], parameters={'ReportingState': 'Orig'}, ) Kindly note that I have given this below script (codebook) to the client…
is there a Swagger documentation for the Eikon API? I checked for related questions but it appears we don't have one for Eikon. Kindly advise. Thanks.
My code is as follows : import eikon as ek headlines = ek.get_news_headlines(query='IBM.N', count=1, date_from=None, date_to=None, raw_output=True, debug=False) print(headlines) Running result is as follows : {'headlines': [{'displayDirection': 'LeftToRight', 'documentType': 'Story', 'firstCreated':…
I have a list of firm LEIs and need to obtain PermIDs and Deal Advisor Codes for those LEIs to download basic information about the Equity Deals in which these firms were involved as Bookrunners, Co-Managers, or Financial Advisors. Can I do that in the CodeBook environment?
Is the functionality C# in Python available in Workspace? If not, is this functionality within the roadmap of enhancement in Workspace?
Here is the code I did to pull but there is only one date: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['ABI.BR'], fields = [ 'TR.NumEstRevisingUp', 'TR.NumEstRevisingDown', 'TR.PriceClose.date' ], parameters={ # 'Curn': 'CAD', # 'Frq': "1D" 'SDate': '-5', # "2023-11-01", 'EDate': '0', #…
<module> df_chain1 = ek.get_data(chain_id, fields=field2, parameters={"SDate":date_end2, "EDate":date_start2, "Frq":"D"}) "C:\Program Files\Anaconda3\lib\site-packages\eikon\data_grid.py", line 141, in get_data result = eikon.json_requests.send_json_request(DataGrid_UDF_endpoint, payload, debug=debug) File "C:\Program…
Hello. I assume there is a bug in the method rd.dates_and_calendars.date_schedule . When the end date is a public holidays, it returns the day after, if start_date == end_date. Please, check the code below and advice. Thanks Expected behaviour: the list should be empty If I change the start_date to set it to a working day,…
It looks like you're new here. Sign in or register to get started.