Symbol Missing

I have a matrix of date wise Relative Strength Ranks and Percentiles. This is not an exploration output. This by default sorts the ranks and percentiles on the last bar / last date available. In this image while sorting on date 12-11-2025 the 9th row is for Symbol ISEC but this symbol is not there in my database.

How is this possible that the symbol which is not in the database is visible here?

All symbols that appear here are extracted from the Watchlist 0. The Windows of available symbols on the extreme left arranged alphabetically is also shown in the image.

TICKER_LIST = CategoryGetSymbols( categoryWatchlist, 0 ) ;
sym_num = StrCount(TICKER_LIST, ",")+1;
mat = Matrix(sym_num, 50);

for( i = 0; ( Symbol = StrExtract( TICKER_LIST, i ))   != ""; i++ )
{

		If( Status( "actionex" ) != actionExEditVerifyFormula ) {
		  SetForeign(Symbol);  
		}
    

@PASH with an Internet search I see that the stock is a delisted one:

ICICI Securities (ISEC) has been delisted as of March 24, 2025, following a merger with ICICI Bank.

so I suspect this is something that may related to the data source provider (plugin?) that you are using, and, as such,how delisted stocks are handled by it in database/watchlists.

Of course, this is just a bizarre hypothesis, because it sounds really strange!

2 Likes