We use something like this to get ticks for certain period of time.
dataFrame = ld.get_history(
universe=par["instruments"],
fields=fields,
start=par["startDate"],
end=par["endDate"],
interval='tick',
header_type=ld.HeaderType.NAME)
We call this for every RIC. For example, universe='LTM.SN'.
We can use a list of RICs in 'universe' parameter. However, when I checked last time, if we put 2 RICs in the 'universe', the underlying logic of lseg python library sent 2 individual queries to the sever.
My question is about daily_request_max/daily_request_remaining limitation. Do those 2 individual requests by lseg python module are considered as 1 request or 2? From my side I send only 1 request…