I currently have trin working with the following code on a few indices. However I

algo.AddEquity('QQQ', Resolution.Minute)
algo.AddEquity('SPY', Resolution.Minute)
algo.AddEquity('IWM', Resolution.Minute)
        
self.trin = algo.TRIN(['QQQ', 'SPY', 'IWM'], Resolution.Minute)

However I would like to calculate the TRIN for the entire NYSE. When poking around on the website, I was trying to find a list of all the symbols QC supports for the NYSE so I could feed them into the Trin array. However all the links on the site to csv files for the list of symbols appear to be broken or non-functional.

So I have two questions 1) Where can I find a list of all the symbols supported in QC? 2) Would calculating TRIN for the NYSE work by feeding in all the symbols from the NYSE to the Trin array parameter? 

Thank you very much!

Author