Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
How do I make my pipe show the results as an output?

I'm trying to filter stocks that have an average dollar volume traded of over 1,000,000

Is there something I am missing and how can I get it to show the results?

Then I want to filter stocks with a price over 10$ but thats the next step which I have yet to start..

(Inserted Self Pity)

First time trying to code anything to so bare with me.

It probably looks awfully bad and a sad excuse even considering the fact I copy and pasted most of it.

2 responses

You need to import a few more libraries. Also, you don't need an initialize method in the research environment. That's generally only used in the IDE or algorithm environment. You also should use the 'Fundamentals' methods for data and not the 'morningstar' data directly. It's faster. See https://www.quantopian.com/posts/faster-fundamental-data .

To show the results (or the value of any object) in a notebook you just need to type its name and execute. You can also type 'print' then the object name too.

See the attached notebook.

Hope this helps. Good luck.

This is amazing thank you so much!