Can anyone tell me why it returns an error? Are there indices that are compatible with 0# notation and those are not? Is there something wrong in my code? How can I see the list of all the constituents of an index?
import lseg.data as ld
ld.open_session()
This one works.
str_test = "0#.TSPM"
l_field_test = ['TR.RIC']
ld.get_data(str_test, fields=l_field_test)
This one returns an error.LDError: Unable to resolve some identifier(s). Requested universes: ['0#.SPADR']. Requested fields: ['TR.RIC']
str_test = "0#.SPADR"
l_field_test = ['TR.RIC']
ld.get_data(str_test, fields=l_field_test)