-
How do i use the api to extract market overnight best and worst performers ?
I am coding in python with your desktop eikon api to try and extract the latest leaders and laggers across different asset classes inc fx, stocks, bonds, etf and crypto assets but failed I also trying to extract based on news but theres only broad economy news which i cannot zoom into asset specific .. how do i screen for…
-
I keep receiving this error when I run some code that usually run
Hi Teams, I am receiving this when I run a code that used to run on my computer. any clue? ---------------------------------------------------------------------------AttributeError Traceback (most recent call last)Cell In[2], line 3 1 import refinitiv.data as rd 2 rd.open_session()----> 3 rd.discovery.search( 4 view =…
-
Quick Question: get_timeseries for SZZF
Quick question: when I run the following python API call for ticker SZZF: Sub_ticker = ['SZZFM5^2', 'SZZFN5^2', 'SZZFQ5^2', 'SZZFU5', 'SZZFV5', 'SZZFX5', 'SZZFZ5', 'SZZFF6', 'SZZFG6', 'SZZFH6', 'SZZFJ6', 'SZZFK6', 'SZZFM6', 'SZZFN6', 'SZZFQ6', 'SZZFU6', 'SZZFV6', 'SZZFX6', 'SZZFZ6', 'SZZFF7', 'SZZFG7', 'SZZFH7', 'SZZFJ7',…
-
RIC no longer works
I created a program that uses constituent data from the FTSE All World index, that no longer works. Is constituent data no longer available? indicies = rd_get_data( universe = ['0#.FTAWORLDSR'], fields = ['TR.IndexConstituentRIC'], parameters = { 'SDate':date_formatted } )
-
Can I get historical Time & Sales data with the LSEG API?
I have access to the Workspace application, where I can see Time & Sales data for a given RIC, and I would like to get the same using the LSEG API that comes with my Workspace login, and Python. Thanks
-
link Workspace and chat gpt
is there a away i can automate a link between Refinitiv and chat GPT? i'm looking to use chatgpt to analyse call transcripts.
-
How to extract the RIC of a company using API?
How to extract the RIC of a company using API? Please provide sample code.
-
Excluding Holidays on API.
When pulling returns data for specific date range, how can we drop holidays to avoid unnecessary non-trading days?
-
Whats the issue with 0#.SSHI RIC
There seems to be an issue with 0#.SSHI in codebook ... it is not pulling the values correctly ... take for Example <0#.SPX> which has 500 stock RIC under .SPX. I get like One row But I replace the RIC from 0#.SPX >> to 0#.SSHI . The value looks corrupt . I have re-worked on the code, still it is pulling incorrect…
-
Questions regarding the data retrieval from the LSEG Data Platform via the Python-API
https://us.v-cdn.net/6038239/uploads/TMKOZQXSH7J7/servlet.txt a)How can I retrieve historical consensus forecasts of the same forecast horizon, e.g. all FY1 forecasts for Apple Inc. from 2010 till 2025? b)How can I extent this data-retrieval request to multiple companies and forecast horizons at once? c)How can I retrieve…
-
Hello team how to bypass the TOP=10,000 limit in Workspace API CODEBK?
import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.GOV_CORP_INSTRUMENTS, top = 10000, filter = "((DbType eq 'GOVT' or DbType eq 'CORP' or DbType eq 'AGNC' or DbType eq 'OMUN' or DbType eq 'OTHR') and IsActive eq true and (RCSCountryGenealogy in ('G:DE')))", select =…