print sid(24)
... Works in Algo but fails in Notebook with: NameError: name 'sid' is not defined
So maybe for the notebook I need to import sid, but in Algo it has been done automatically?
https://www.quantopian.com/help#api-sid doesn't give any clue.
print sid.__module__ # gives: algoproxy
Searching https://www.quantopian.com/help for algoproxy yields nothing and trying stuff like from quantopian.algoproxy import sid fails.
Cannot import inspect as Q doesn't offer that module (https://docs.python.org/2/library/inspect.html).
Rats.