How do I setup my own Refinitiv API key? do you have a QuickStart guide link for this api ?no no once in python import refinitiv.data as rdrd.open_session(session_type=rd.Session.Platform, app_key=keys.eikon_key)
Query: How do I use refinitiv on my own version of Python? Is there any libraries I need
I am raising query on behalf of client that data is getting misaligned and they are using rdp platform session client issue: When I query the ID 4295900704 with the fields ["TR.F.StatementDate", "TR.F.PeriodEndDate", "TR.F.CashCashEquivTot", "TR.F.CashCashEquivTot.date"] and for the last 10 years (using SDATE and EDATE) it…
I am interested in U.S. news data at a large scale. I've already got an API key, but my first attempt in python is not working and gives me the following error code: ScopeError: Insufficient scope for key=/data/news/v1/headlines, method=GET. Missing scopes: {'trapi.data.news.read'}
I'm trying to download data from some TR. Tickers using the python API, however it's not working, can you give a general idea on how to fetch data from TR. types
I'm looking to get the data from the related rics column as seen in the news monitor through python. I can download news articles similar to the news monitor however this is missing the related rics column. I am using this code, response = news.headlines.Definition("7974.T", count=150).get_data() how would I add the column…
The return for "TR.F.OriginalAnnouncementDate" shows in UTC timezone. eg. 2025-05-08T04:55:00Z Is it possible to return in Japan logal time (GMT+8) ? <script> import lseg.data as ld ld.open_session() df = ld.get_data(universe = ['7203.T'], fields = ['TR.F.OriginalAnnouncementDate(Period=FY0,Frq=FY,SDate=1D)']) display(df)…
I tried import lseg.data as ld import pandas as pd import copy import plotly.express as px ld.open_session() ric = '.AXJO' start = '2014-01-01' end = '2025-08-26' df = ld.get_data(universe=[ric],fields =['TR.IndexJLConstituentRIC','TR.IndexJLConstituentChangeDate','TR.IndexJLConstituentituentChange'],…
Hello team, for example RIC ABX.TO is listed in Toronto Exchange the RIC which the Exchange is United States is RIC B. I have managed to create this code: import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.EQUITY_QUOTES, top = 10, filter = "(AssetState ne 'DC' and…
It looks like you're new here. Sign in or register to get started.