-
I can’t seem to get the TRDPRC_1 value for BRTCALAMc0
I am trying to pull forward curve data off of the RDP API and I can’t seem to get the TRDPRC_1 value for BRTCALAMc0. It keeps giving me <NA> - see below: On the Workspace App, I am able to see this value on the Data Item Browser. So I am not sure why that is not possible through the API. Thanks, Denis
-
How do I access alternative close prices via python API
Help! Is it possible to access alternative close prices from the python API? For example BRTDTDMc1 has 2 close prices. ASIA_CLOSE, EU_CLOSE, US_CLOSE, I want to access the ASIA close price as I am trying to find a common timestamp for the below list of prices. Reuters Code' : ['DUBSGSWMc2', 'MRBN1MMASc1', 'OQc1',…
-
I keep getting blocked using the API it get a 429 error
Hello team, raising this case on behalf of client XXXXX rates = [ Rate(5, Duration.SECOND), # 5 calls per second Rate(10000, Duration.DAY), # 10,000 calls per day ] limiter = Limiter(rates, clock=TimeClock()) ------------------------------------------------------------------Global expiry lookup – populated during discovery…
-
Retrieve weekly eia inventory data to update my csv directly
This is my first part of script that should retrieve the latest data? cell 1 import lseg.data as ldld.open_session(app_key="app-key").open() cell 2 from lseg.data.content import historical_pricing as hp from datetime import date import os 1. Correct RIC for total commercial crude stockscrude_rics = ["C-STK-T-EIA"] 2. Date…
-
Codebook App 30 min time frame
i have a question regarding LSEG Workspace as specially the Code Book App. I want to get historic data of an instrument e.g. LSEG.L for the fields BID, ASK and VOLUME on an 30 min time frame. In Excel it is possible to get the data via the Workspace Add-In. But in the Workspace Codebook App I don’t get the VOLUME data. How…
-
I can't get OPEN_PRC/HIGH_1/LOW_1 by using get_history
Previously, I could use ld.get_history to fetch 'OPEN_PRC', 'HIGH_1', 'LOW_1', and 'BID', but now I can only get 'BID' data. Why is that?
-
Rate Limit Trigger in get_hist
caling get_hist for historical data. the flow is getting the consititute of Index like IDX and SPX, knowing the constitute then enquiry history data of 500 company for 20 days data , for example SP500. Then, for top 100 most traded company, find option chain for each of them, getting the option ticker RIC. get history data…
-
Bid/Ask data mismatch on overlapping intervals
I am using the lseg.data library, and when I am using .get_history to get bids and asks for gold, platinum, paladium and silver in 5 minute intervals, 1 minute intervals and 30 minute intervals which I have all done separately. However when I run this and check the output, where there are overlapping times for example the…
-
How can I access high-frequency, expired options data?
I have looked into building a historical dataset of high dimensional (1 minute or 5 minute) of options data for some oil contracts. I have been able to access these frequencies for options data with the get_history for non-expired contracts. My impression is that get_history is unsuitable for expired contracts. What ways…
-
Loop mutual funds holdings
Hi everyone, I am trying to download mutual fund holdings data using the following code in codebook: import refinitiv.data as rd from refinitiv.data.errors import RDError import pandas as pd import time LP=[ 'LP40215045', 'LP40212543', 'LP40235060', 'LP40209239', 'LP40209247', 'LP40215141', 'LP40212555', 'LP40209256',…
-
Available period for historical_pricing.summaries.Definition
I'am currently running a trial of Workspace. For historical_pricing.summaries.Definition, is it only possible to retrieve data from the most recent year?
-
Historical RICs on Mutual fund holdings
Hello everyone, I’m attempting to retrieve historical mutual fund holdings using the following code: However, the table appears as follows: As you can see, the code returns only the RICs from the most recent holdings, not those from earlier dates. I have two questions: How can I retrieve historical RICs for my mutual fund…
-
Limited historical data
Client query from *** REMOVED *** The below example is only giving me data from 22/07/2024, where XXXXXXXXXX is an appkey set up from APPKEY in eikon. import eikon as ekif __name__ == "__main__":ek.set_app_key(XXXXXXXXXXXXXXXXXXXXX)data = ek.get_timeseries('NOKOIS1YZ=R', start_date='2020-12-31', end_date='2025-04-01',…
-
How can I use API to authomatically download funds' holdings informations?
Hi everyone, I am a researcher at the Catholic University of Milan, currently working on a project that involves historical holdings data for U.S. actively managed mutual funds. Specifically, I require the full holdings information (not just the top 3 holdings) for all such mutual funds, on a quarterly basis over the past…
-
Query regarding "refinitiv.data" function get_history(). How to get month end dates data?
I am working with Python API and the library refinitiv.data in it. There is the function refinitiv.data.get_history get_history( universe: Union[str, Iterable[str]], fields: Union[str, Iterable[str], None] = None, interval: Optional[str] = None, start: "OptDateTime" = None, end: "OptDateTime" = None, adjustments:…