I'm interested in these tickers which I currently load via Excel
JPYTN=
JS(FXFWDJPYTN)
Is there a standard code you can provide which saves the results to a csv, or prints to screen or something like that?
Hi @Eugene Torres ,
Thank you for posting the question in this forum. However, this forum is dedicated to an API usage question hence, the moderators on this forum do not have deep expertise in every type of content/Excel module available through LSEG products. Such expertise is available through the Helpdesk, which can be reached via MyAccount. You can raise the ticket there and the support team is going to contact you directly to assist with this.
Hope this helps and please let me know in case you have any further questions.
@Eugene Torres
You can use the LSEG Data Library for Python to retrieve data. The examples are on GitHub. You can also refer to the Examples (__Examples__/01. Data Retrieval and Discovery/01.01. LSEG Data Library/) in Codebook.
For example:
ld.get_data( universe = ['JPYTN='], fields = ['BID','ASK'])
Or,
ld.get_history( universe = ['JPYTN='])
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 and =RDP.HistoricalPricing, that can be used to retrieve the required data. Then, we can help you converting that formula to Python code.