When I try to query the NAV prices with:
eikon.get_data(lipper_ids, fields='TR.NETASSETVAL.date;TR.NETASSETVAL;', parameters={'SDate': '1910-01-01', 'EDate': '2020-04-07'})
It takes a long time (about 12 seconds per asset, which is a very slow response), however, it is because of the start date (a lot of items are NaN (because the asset does not have so long history)).
With an empty SDate parameter, only 1 day is obtained.
I would like to ask for the best practice to query data for the whole history of a specific asset.
Thanks.