'Intraday tick data using tia bloomberg API

I have been using tia to retrieve a dataframe of bloomberg data in 1 minute intervals. Is there a way to retrieve all price ticks similarly, in a dataframe?

for 1 minute intervals I used:

import tia.bbg.datamgr as dm
from tia.bbg import LocalTerminal

df = LocalTerminal.get_intraday_bar(bloomberg_sid, event, start, end, 
                                            interval=1).as_frame()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source