question

Upvotes
Accepted
5 0 1 3

TASTAQ on RW API

Pull TASTAQ interval data for a specific date and time on RW API

Data items/fields:

"TRDPRC_1.Exchtime"

"TRDPRC_1.Bid"

"TRDPRC_1.Bidsize;"

"TRDPRC_1.Ask"

"TRDPRC_1.Asksize"

"TRDPRC_1.Count"

"TRDPRC_1.Exch_sequence"

"TRDPRC_1.Trade_id"

"TRDPRC_1.Trd_status"

Sample date:

START:06-Sep-2022:12:40

END:06-Sep-2022:12:41

Sample company Starbucks, RIC SBUX.O


rdp-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.

1 Answer

· Write an Answer
Upvote
Accepted
19k 85 39 63

Hi @catherine.osea

Try:

response = historical_pricing.events.Definition(
    universe = 'SBUX.O',
    fields = ['BID','BIDSIZE','ASK','ASKSIZE','EVENT_TYPE',
              'SEQNUM','TRADE_ID','TRD_STATUS',
              'TRDPRC_1','TRDVOL_1'],
    start = '2022-09-06T12:40:00.0000000Z',
    end = '2022-09-06T12:41:00.0000000Z').get_data()
response.data.df

ahs.png


ahs.png (27.4 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.

@nick.zincone Follow-up for this query


Is there an Eikon API equivalent of the script you have provided above? Thank you in advance.

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.