Hi - I am trying to write my first algorithm and am getting the following error when I run:
from quantopian.algorithm import attach_pipeline, pipeline_output
ImportErrorTraceback (most recent call last)
in ()
----> 1 from quantopian.algorithm import attach_pipeline, pipeline_output
/build/src/qexec_repo/qexec/algo/safety.py in call(self, name, globals, locals, fromlist, level)
262 # this is a whitelisted import
263 return self._import_safety.make_safe(
--> 264 self._import(name, globals, locals, fromlist, level),
265 )
266
ImportError: No module named algorithm
Any thoughts on what I am doing wrong? Thanks in advance!