Hello,

I'm wondering if it's possible to create a new watchlist every day to be scanned every second while the market is open?  Is it possible to use premarket volume to filter for stocks?  Is it possible to code the following strategy?

From a morning scan about 10 seconds after market open, I want the algorithm to create a watchlist of the 50 US stocks that have the biggest gap up from their previous day's close price to today's opening price.  I only want a stock added to the watchlist if its opening price is $0.50 or higher.  I only want a stock added to the watchlist if its market cap at the start of the day was below $500 million.  

I don't want anything in the debug/logs.  I only want the debug/logs to show me why SBET was or wasn't included on the watchlist on 5/27/25.  I also only want the debug/logs to show me why KNW was or wasn't included on the watchlist on 6/6/25. 

After the watchlist is created, I want my algorithm to scan that watchlist every second until market close.  I want the algorithm to buy any stock on my watchlist when that stock hits 30% above its open price.  I want my algorithm to sell a position when it hits a 35% profit or a 35% loss.  As soon as my algorithm sells a stock, I want that stock taken off the watchlist so that the algorithm does not trade that stock again during that day.  If any positions are still open a few seconds before market close, I want them all closed.  I want the watchlist cleared after market close. 

Thanks!