Check for transactions within a day.

I would like to know if its possible to check how many transactions has a company done during a day in during open market hours.

Is this possible within Eikon?

Best Answer

  • chavalit-jintamalit
    Answer ✓

    Hi @aquilesjlp300

    I think you can retrieve 'tas' data from get_timeseries and count the number of transaction.


    For example, ANZ.AX started trading since 20:00 (GMT time)

    df = ek.get_timeseries('ANZ.AX', fields=['COUNT','TRDPRC_1'], interval='tas', start_date='2020-03-12T17:00:00')
    df

    image