Hi,
How do I get the constituents for equity index at historic moment in time. For example, you can request the constituents of MNEM RLISVIT with:
ds.get_data("LRLISVIT|L", fields=["MNEM"], kind=0)
Instrument Datatype Value
0 929467 MNEM I:RN
But how can you do the same request but then at a historic time points to investigate for leavers and joiners. Below is not working:
ds.get_data("LRLISVIT0520|L", fields=["RIC"], kind=0)
Instrument Datatype Value
0 LRLISVIT0520 RIC NA
Thnx in advance.