Hello all,
I am new to Quantopian as well as trading. I am trying to code up and improvise my first algorithm here and have a question. Here is what I want to do. At the beginning of every trading day, I want to scan through a large number of stocks and check to see if they meet a certain criteria which are not part of fundamental data (say, opening price > $50). I want to consider the list of the stocks that pass this initial test as my universe (let's assume this list is < 200, since that's the size requirement for the universe). After that, my main algorithm will work on those stocks. Note that at the beginning of every trading day, I want the universe from the previous day to be cleared and new set of stocks (meeting the same criteria) to be added.
From what I have seen so far in the tutorials and examples on this site, the above scenario is possibly not very straightforward to implement. Is this even possible to do? If yes, how?
Thanks.