Hello,
is it possible to source the history of auctions for a given bond? For example, this bond (IN061328G=) has a few as I can see on the LSEG WORKSPACE terminal. WOuld it be able to source this information through the API?
@viquar.shaikh
The library can be used to retrieve the same data.
ld.get_data("IN061328G=", [ "TR.FiAmtOutstandingChangeReason", "TR.CA.AmtOutstanding.Date", "TR.CA.AmtOutstanding"], { 'SDate':'2000-01-01', 'EDate':'2025-04-22' } )
This forum is dedicated to software developers using LSEG APIs. The moderators on this forum do not have deep expertise in every bit of content available through LSEG products, which is required to answer content questions such as this one.
The best resource for content questions is the Helpdesk support team, which can be reached by submitting queries through MyAccount. The support team will either have the required content expertise ready available or can reach out to relevant content experts to get the answer for you.
Thank you for reaching out to us.
Typically, you can use the get_history method in the LSEG Data Library for Python to retrieve historical data. For example:
df1 = ld.get_history(universe=["IN061328G="]) df1
The output is:
The examples are also available on GitHub.
If this doesn't answer your question, please explain more about your query and share a screenshot of the LSEG WORKSPACE terminal.
Thank you for looking into this, @Jirapongse
I meant being able to source bond auction history, as several sovereign bonds tap into an existing security to borrow more.
This is an example from the lower section of the "description" page for IN061328G=
You say, modestly I think, that you do not possess the expertise to answer questions like these. And yet you were able to come up with the perfect response.
This is terrific. Thank you.