Hi,
I would like to get a list of all the RICs in the 0#GRAINS/CASH chain.
I tried:
df, err = ek.get_data('0#GRAINS/CASH', 'TR.CommonName')
or
df, err = ek.get_data('0#.GRAINS/CASH', 'TR.CommonName')
but I got the error: 'Unable to resolve all requested identifiers.'
I noticed this is a chain containing chains so I also tried
df, err = ek.get_data('0#CMAIZE-FR', 'TR.CommonName')
which should yield rics but the same problem occurred.
Exchanges seem to work fine as:
df, err = ek.get_data('0#.ftse', 'TR.CommonName')
works fine.
How can I get a list of all RICs in the GRAINS/CASH chain?