I am trying to use Python Eikon API to get the bond holding data. But I could only get the latest information about bond holding. Is there a way to get all historical holding data?
Hi @ericwon
I checked these 3 fields in "Data Item Browser" (type in DIB in Eikon search bar)
These fields does not support custom date so It is not possible to retrieve historical data on these 3 fields.
Please share your API calls.
df,err = ek.get_data(['44932HAH'],['TR.H.REPORTDATE', 'TR.H.HoldingCompanyName', 'TR.H.PARHELD'])print(df)
@chavalit-jintamalit Many thanks!