Disclaimer: New user on quantopian, so apologies in advance if this is too obvious.
I am trying to get the SIDs for certain Indian securities in Research by referencing their symbols (which are the exchange codes).
An example of the code I am using:
symbols('500820').sid
Here, 500820 is the exchange ticker for a company called Asian Paints.
However, this snippet returns the following error: 'NoSuchSymbols: Failed to find securities matching ['500820']'
From the output of a previous code I had written, I know that the SID for this particular security is 1218474845753922. When I use this in the snippet instead - symbols(1218474845753922).sid, I get the desired output.
Am I missing something?
Note: I remember having done a similar exercise in the past using exchange tickers and got the desired results, so has something changed?