Hi.
I've invested some time reading the Quantopian documentation so we could port our algorithm to the Quantopian platform.
My big question is: can I have a CSV that has signal information for more than 500 stocks, and only trade on the relevant stocks once I do day-by-day filtering based on fundamentals?
For a contrived example, let's say I have a special signal file that contains the # of tweets about each stock on the NYSE, and it's going back 5 years.
Question #1) Is there a max_size limit to my csv?
Then, question #2: Apparently the universe_func can return a set of at max 500 securities. Can my fetcher be called every day, and then let the universe_func callback whittle down my list to the securities in my CSV (intersect) those that match certain fundamental criteria? I'm happy with only getting BAR data for 500 stocks a day, as long as that list of stocks can change.
Thanks. I'm excited about Quantopian. There's just a little bit of a learning curve.