Using the example set_universe code from https://www.quantopian.com/help#ide-universe hangs the backtester that runs after pressing Ctrl-b to "Build": I see "Backtesting: 0%" and "Waiting for logs" but nothing's happening. If I add logging before and after set universe, I never see the log output that's supposed to be generated after the set_universe call (in the below example, I see "initialize" in the log output but not "done initialize"). Am I missing something obvious?
def initialize(context):
log.info("initialize")
set_universe(universe.DollarVolumeUniverse(floor_percentile=99.6, ceiling_percentile=100.0))
log.info("done initialize")
def handle_data(context, data):
for sid in data:
log.info(str(sid))
If I try to run a full backtest, it hangs at "Initializing..." status. If I click on "Log output", I see the same "initialize" but not "done initialize".