Tick history limit

Hello,

I'm trying to get tick history for bid and ask quotes with python. I'm managing to get data needed but my maximum observations currently stops at 50000 entries, which in practice covers only couple of days. For my research, I need much larger data set that covers 3 years.

Is there a way to increase how much data can I collect?

Thanks.

Code I'm currently using:

ek.get_timeseries(["XXLA.OL"], fields = ["Bid","Ask"], start_date="2018-01-01T00:00:00", end_date="2021-01-01T00:00:00", interval = "taq")

Best Answer