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 40 “gappers.”  Those 40 “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 the coarse selection every morning, I want the algorithm to only look at stocks with a market cap below $5 billion.  And for the coarse selection every morning, I want the algorithm to only look at stocks with a share price between $1 and $50 at market open.

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% with market caps below $5 billion and opening share prices between $1 and $50.  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!