How QuantConnect distinguish NYSE/NASDAQ in Market.USA                                     self.nyse_universe = [s for s in all_symbols if self.algorithm.Securities[s].Market == "usa"]

        self.nasdaq_universe = [s for s in all_symbols if self.algorithm.Securities[s].Market == "usa"]