Please let me know the name of template and field on how to get close price of TSE-listed stocks for morning session?
@kayo.yoshida
Thank you for reaching out to us.
I checked and found you can retrieve it from the SESS1_CLS field.
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 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.
@Jirapongse
Thank you for your response. I will ask my question on MyAccount.
The helpdesk contacted me and confirmed that the SESS1_CLS field can be used to retrieve the close price for the morning session.
You can use the LSEG Data Library for Python to retrieve this data. For example:
df = ld.get_data( universe=['6758.T'], fields = ['SESS1_CLS']) df
The examples are available on GitHub.