-
Get the history changes of RIC
Hello! I am using python library lseg-data. My question is how can I get the history changes of RICs and its previous names, so that my prices are correct? For example Facebook was FB.O but after rebranding it became META.O, I used symbology but did not get the expected result.
-
pricing/snapshots Market Cap field
Hi, How can I get the Market Cap of a stock using the pricing/snapshots service? https://api.refinitiv.com/data/pricing/snapshots/v1/?universe=/{RIC}Error or is there any other service that I can get the updated market data that should be change during trading time according to the stock price. Thanks!
-
How to get earlier time series data of Crypto
I am trying to get time series data of Crypto. And I tried serveral RIC like 'LTC=DARN', 'BTC=DARN', 'ETH=DARN'. Similary, the earliest hourly and minute data it gave me was like only one week ago. The screeenshot above is the minute data of BTC. Therefore, I wonder if there is a method to get long-term hourly or minute…
-
Error with fundamental_and_reference.Definition data api
With the code below: df_chunk = fundamental_and_reference.Definition( universe= tickers, fields = ['TR.CLOSEPRICE.date','TR.CLOSEPRICE','TR.Volume'], params = {"SDate": 0, "EDate": -756, "FRQ": "d"}) why is it raising error? Error processing chunk 1: Definition.__init__() got an unexpected keyword argument 'params'
-
CDS data via LSEG API, stuck after reading all Developer Community threads
Hi All I’m doing some academic research around ESG and Credit Spreads and am using LSEG data for it. The data I’m downloading from the LSEG Data platform via API. I’m able to download ESG and fundamental data, however, I’m struggling with the CDS Data. I understand that the LSEG Data API is the new version of the Refinitiv…
-
How to pull historic maturities for a RIC
Hi, I would like to use the python refinitiv data library to pull historic maturities for a relative ticker, such as: USDSROIS1Y= Please advise how to do this? As ticker is relative, the maturity changes every day, and the field "MATUR_DATE" does not return anything on an historic basis. Thanks,
-
Retreive TR.CompanyMarketCap in EUR regardless of the instrument's local currency
Using Python, I would like to retrieve the field ' ' in EUR, regardless the local currency of the instrument
-
Delayed prices using LSEG Workspace API
Hello, I'm trying to collect bids for LCOc1 as soon as the bid change in realtime. My main issue is that I have a 10 min delay. _________________________________ import time import pandas as pd import eikon as ek import os # Set Eikon API Key for access to financial data ek.set_app_key('API_KEY_HERE') # Define the…
-
I cannot pull out data for LCOc1
-
godwin
Hi, I am quite new on this platform and I need some assistance. I currently want to download futures data with the following variables date volume open interest last trading date time to maturity ticker symbol etc I kindly need assistance on how to go about it
-
How do i get Quarter or Financial year as the Column header for the data?
ld.get_data(universe= [ "TRV", "ORI", "WRB", "BRO", ], fields= ['TR.F.NETPREMEARNED'], parameters= {"Scale":6,'Curn':"USD", 'FRQ':'FQ', 'Period':'FQ0', "SDate":0,"EDate":-5}) , This is the output i'm getting, I want column net premium as header and under sub header quarter or year, is it possible
-
NaT Issues and Duplicated Dates
I hope you are doing well. I am reaching out regarding some data inconsistencies I haveencountered while retrieving fundamental and market data for specific RICs using theRefinitiv API. I would appreciate your assistance in understanding these issues and findingpossible solutions.Issue 1: NaT Values for…
-
Is there a way to call on Geographic revenue via a Segment Code or Name?
I am using Excel and while I can call on a company's Geographical data as a whole using…
-
Is it possible to retrieve the historical constituents of the ACWI index using Python?
Our main challenge has been downloading the constituents of the MSCI ACWI index, whether current or historical, as both are crucial for our objective. Unfortunately, we have been unsuccessful despite multiple attempts. Below are the details of our efforts: Code Attempt 1: import refinitiv.data as rd from…
-
data request
https://github.com/Refinitiv/websocket-api/blob/master/Applications/Examples/python/market_price.py We are currently making a real-time data request based on the sample example above. I want to make sure that I can request data again during the disconnected time when I reconnected in case socket communication is lost, and…