Hello,

Is it possible to code the following strategy? 

I want an algorithm that creates a watchlist every morning at market open with the top 20 “gappers.”  Those 20 gappers are the stocks that have the highest percentage gap up or jump up from their lower closing price yesterday to their higher opening price today.  For example, on 6/5 the stock SBET closed at a price of $0.51 per share, VERO closed at $2.39, and WBUY closed at $4.60.  On the next trading day of 6/6, SBET opened at $1.03, VERO opened at $3.89, and WBUY opened at $7.27.  Those are gaps of 102%, 63%, and 58%.  The watchlist created on the morning of 6/6 at market open should include these very large “gappers.” 

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!