Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Error in getting Fundamentals data

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!

2 responses

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.

....of course I'd overlook something as silly as that. Thanks lol.