Hi!
I'm currently using EIKON data API in order to acquire information about Nvidia corporate actions.
I use following expression to fetch the data:
data, err = ek.get_data(f'''SCREEN(U(IN(DEALS)),IN(TR.MnAParticipant(DealPartRole=T,A),{permids}),BETWEEN(TR.MnAOrigAnnDate,{dates}))''', fields)
where permids is Nvidia permid and dates are '20200301,20200420'.
This query supposed to return all m&a with Nvidia but I couldn't find recent deal with mellanox:
https://nvidianews.nvidia.com/news/nvidia-receives-approval-to-proceed-with-mellanox-acquisition-from-chinas-antitrust-authority
Is this flaw of my code or data?
P.s.:
Also I couldn't figure out how to fetch information about spin-offs. I would be very glad if you could help me with this too.