question

Upvotes
Accepted
7 2 1 5

Yesterday Ask, Bid tick history for selected RIC

Hello.

I'm trying to get tick history, for example yesterday ticks.

In Excel I can just set start date, end date, ric and interval and get Ask, Bid data. In my case interval would be "tick".

Can you please prompt some Python function or request which I'll send from Python. Cause I want process data in Python not in Excel.

I already tried python eikon data api and sending requests (refinitiv data platforn) and did not receive the information I needed.

Thank you.

pythonrefinitiv-data-platform
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.

1 Answer

· Write an Answer
Upvote
Accepted
399 4 5 9

Hi @aleksandr.chernov1 ,


Did you try rdp.get_historical_price_events? I would suggest going with that. The code below returns the tick data for AAPL.O.

df  = rdp.get_historical_price_events(
    universe = 'AAPL.O',
    fields = ['BID', 'ASK'],
    start = '2021-12-12',
    end = '2021-12-16')
df

1639734210392.png



1639734210392.png (28.5 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.