question

Upvotes
Accepted
1 0 0 0

How Can I Access Intraday Data of Gold Future Before 2023?

I am looking to download high-frequency gold futures data from before 2023, with a frequency of 5 minutes. I know that the Eikon API only supports downloading high-frequency data from the past year, which does not meet my needs. I have learned that the Tick History REST API might support my requirements, but I am unsure if I have access to it. How can I find out if I have access? Additionally, are there any other ways to meet my data requirements besides the Tick History REST API?

#producttick-history-rest-apifuturesprice-history
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
85k 289 53 77

@zhaowanli

Thank you for reaching out to us.

First, you need to have Tick History credentials. You can use the credentials to login to the DSS website at https://select.datascope.refinitiv.com/DataScope/. If you can login, you can download the Postman collection that demonstrates how to use Tick History REST API. You can also refer to the tutorials.

However, please contact your LSEG account team or sales team directly to discuss your requirements.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
6.9k 21 3 6

Hi @zhaowanli, the new Eikon Data API (EDAPI) is called the RD Lib. for Python. Using it, I was able to get the below, is that not the kind of data you are after?

import refinitiv.data as rd
rd.open_session()
rd.get_history(
    universe="GCc1",
    fields='TRDPRC_1',
    start='2020-06-01',
    end='2020-12-01')

1722324885798.png


1722324885798.png (23.7 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.