Time And Sales in Python: select fields to retrieve

Hi, I am trying to pull trades for MiFID RICs. I wrote:

df = ek.get_timeseries(["DE0001102408=TWEA"],
interval = 'tick',
start_date="2018-06-01",
end_date="2018-06-30")

THis retrieves trade datetime, value and volume.

Can someone tell how to retrieve publication time, trade id, trade flags, etc.?

Cheers,

Emmanuel

Best Answer

  • Zhenya Kovalyov
    Answer ✓

    this data is not present in the tick interval views, but rather time and sales (TAS) which is not currently supported.

Answers