-
Provide Shipping Flows Python Script
Looking for someone to help put together a script to pull shipping data for clean products (gasoline, gasoline component, naphtha, Gasoline / Gasoline Component) as imports/exports out of all US PADDS.
-
Date Field contains indexed numbers
Hi, I am using the following script to download tresury yields. TESOROS = ['US2YT=RR','US3YT=RR','US5YT=RR','US7YT=RR','US10YT=RR','US30YT=RR'] start_date = "2000-12-12" end_date = "2024-12-31" ts_tesoros,e1 = ek.get_data(TESOROS, ["TR.MIDYIELD.date","TR.MIDYIELD"], {'SDate':start_date,'EDate':end_date,'Frq':'D'}) UST10Y =…
-
How to run a SCREENER formula in Excel to CODEBOOK?
What is wrong with this screening code? df, err = ek.get_data('SCREEN(U(IN(Equity(active,public))/UNV:Public/), IN(TR.InstrumentTypeCode,"ADR","BDR"), IN(TR.ExchangeMarketIdCode,"BVMF","XBSP")',['…
-
TEXTUAL ANALYSIS PYTHON
Hello everyone! I would like to understand how to obtain the headlines of all companies, for example, U.S. companies, on Python by inserting keywords, from 2020 to today. The code I used only works with 100 rows. Thank you!
-
Data item for industry incld delisted stocks
I am looking to retrieve the industry of stocks, but the data item browser does not show me which ones have also information about delisted stocks. Neither TR.ICBIndustry nor TR.ICBSector work for past delisted stocks.
-
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…
-
Is there any way to create dynamic Fund screening (from FSCREEN app) by using Eikon/WS API ? Image a
Is there any way to create dynamic Fund screening (from FSCREEN app) by using Eikon/WS API ? Image attached(Indian Mutual funds screening)
-
Pulling data for Calendar Spreads
http://ld.discovery.search( view = ld.discovery.Views.SEARCH_ALL, filter = "RCSAssetCategoryLeaf eq 'Commodity Future' and TickerSymbol eq 'CT' and ExpiryDate ne null and PrimaryChainRIC eq '0#CT-:'", select = "RIC,DocumentTitle,ExpiryDate", top = 1000 ) So I want to adjust this so I can pull all calendar spread data from…
-
Pulling in meta data for Futures Contracts
How can I pull roll over dates ie last call date, options expiry for Cotton futures into my historical price series. How can I retrieve those dates for each futures contract, historically and the active futures
-
Questions on ld.get_history for hourly data in Codebook
Hello Friends, I 'm migrating Eikon to Workspace and I have some questions on ld.get_history in Codebook. import lseg.data as ld import pandas as pd ld.open_session() t1 = ld.get_history(universe="EUR=",start="20250311 00:00:00", end="20250311 05:00:00", interval="1h",fields="BID") But the result is NOT in line with what I…