Is there a way to pull the changes to a bond's amount outstanding? The Amount Outstanding tab under "BV" shows this detail (snip attached) but I'm unable to find a way to download this through LSEG api
@viquar.shaikh
Thank you for reaching out to us.
I found this TR.CA.AmtOutstanding field in the Data Item Browser.
The LSEG Data Library for Python code could be like this:
ld.get_data( universe = ['91282CRF0='], fields = ['TR.CA.AmtOutstanding.Date','TR.CA.AmtOutstanding'], parameters = {'Sdate':'2026-01-01','EDate':'1D'})
ld.get_data(
universe = ['91282CRF0='], fields = ['TR.CA.AmtOutstanding.Date','TR.CA.AmtOutstanding'], parameters = {'Sdate':'2026-01-01','EDate':'1D'})
However, 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 LSEG Support. 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. You need to ask for the Excel formula, such as =RDP.Data, that can be used to retrieve the required data. Then, we can help you converting that formula to Python code. You can also refer to the How to Convert the =@RDP.Data Excel Function into Code Using the LSEG Data Library for Python article.
Many thanks. And noted on using LSEG support.