Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

Python API to get tastaq data

Hi,

In Refinitiv Eikon there is a page called TAS. I want to download historical tastaq data in python. I see there is an option in Excel, however, it only allows you to download data for one stock at the time.


I want historical data (for as long back Eikon API allows me to). However, I only want the first seconds after the excange opens, and the few seconds before the exchange closes.

Is there some way that I can do this in python with Eikon API?

Fields:

  • TasTaq:TRDPRC_1
  • TasTaq:TRDVOL_1
  • TasTaq:BID
  • TasTaq:BIDSIZE
  • TasTaq:ASK
  • TasTaq:ASKSIZE
eikon-data-api#technologyrdp-apipython api
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.

Hi @s1815675 ,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the most appropriate reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

Hi @s1815675 ,

You can use RD Library to fetch historical data of these fields. Here's the Quick start guide of RD Library for Python

For example, the code below can be used

import refinitiv.data as rd
rd.open_session()

rd.get_history(universe="LSEG.L", fields=['TRDPRC_1','TRDVOL_1','BID','BIDSIZE','ASK','ASKSIZE']
               , interval="1D"
               , start = '2022-10-01', end = '2023-01-28')

1684211086953.png

You can put the parameters to get the data on intervel, duration you would like to by adjusting the parameters: start, end, and interval as below

Supported intervals are:['tick', 'tas', 'taq', 'minute', '1min', '5min', '10min', '30min', '60min', 'hourly', '1h', 'daily', '1d', '1D', '7D', '7d', 'weekly', '1W', 'monthly', '1M', 'quarterly', '3M', '6M', 'yearly', '12M', '1Y']

Hope this help and please let me know in case you have any further questions.


1684211086953.png (40.9 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.