Hi Team,
I just wanted to check if there is any data consumed when using the function ld.get_history on RICs that are invalid or that I do not have access with as it will return N/As for such RICs. I know that there is a daily call limit of 5GB and I am a bit worried that pulling data for invalid RICs will cause unnecessary data allocation to the available limit.
df = ld.get_history(
universe=['EUR=', 'INVALID.RIC' , 'JPY='],
interval='hourly',
start='2026-01-21T09:00:00',
end='2026-01-21T17:00:00'
)
If it is, is there a method to identify invalid RICs and RICs I have no data permission with (on the get_history function) to be able to limit my query to the function? Thanks