Hey, pretty new to quantopian. I'm trying to access fundamental data (PE ratio, gross profit, and so on) in the research environment but I am coming across this error. I am not so sure how to fix this, any help is appreciated. Thanks!
Hey, pretty new to quantopian. I'm trying to access fundamental data (PE ratio, gross profit, and so on) in the research environment but I am coming across this error. I am not so sure how to fix this, any help is appreciated. Thanks!
You need to add a pair of parenthesis.
Change
run_pipeline(make_pipeline, '2017-01-01', '2017-01-01')
to
run_pipeline(make_pipeline(), '2017-01-01', '2017-01-01')
Technically you want to pass a pipeline object to the run_pipeline method and NOT a function. Adding the parenthesis forces the make_pipeline function to execute.