If we declare a list object ( in CME or IRD) and assign it to a variable/constant in a strategy, can we find out where this original List object has been used?
in IRD, i can see a List object has been used but when its been assigned to a variable i cannot.
is it possible to see the usage
IRD doesn’t execute strategies so it cannot track dynamic dependencies. IRD can see that list manipulating function uses variable as name of list but it cannot know the value of this variable at this moment (as you need to run strategy to get this value) and as result IRD not able to connect list manipulation function with name of list object.