I am using Eikon with python on a Windows machine. (First day using codebook)
I would like to receive for example CF_ASK and ASKSIZE for Google on the Exchange Tradegate. With "ABEA.TG" as the identifier it is working properly. But I would like to use the get_date function with an ISIN as identifier.
import eikon as ek
ek.set_app_key('my_key_here')
df, err = ek.get_data(['GOOG.O', 'ABEA.TG', 'US02079K3059', 'US02079K3059.TB'], ['CF_ASK', 'ASKSIZE'])
df
The ISINS are just showing <NA>.
How can I use an ISIN as identifiere here?