Hi there, 

While initializing an empty listin Python with:

 # Initialize dictionaries to hold stock data
        self.universe = []
        self.selected_stocks = []
        self.stock_data = {}

I got following error: 

During the algorithm initialization, the following exception has occurred: error return without exception set  at Initialize    self.universe = []    ^^^^^^^^^^^^^ in main.py: line 16 error return without exception set

I do not see any error in the code. 

If somebody knows. Thanks

SL