Hello is it possible to code the following strategy?  I want my algorithm backtest to pull a few columns from this spreadsheet: ​​https://docs.google.com/spreadsheets/d/e/2PACX-1vQuZAKy82QmT1dvy-nA2apz1vabq47Pv09sfNim2eYhbDfmmaBXA2sEH2rRAcnpCKgfMmbxath_V0XF/pub?gid=1367730565&single=true&output=csv
 

I want my algorithm backtest to set up some buy orders one second after the market opens each day.  The spreadsheet will show which stocks are wanted for which day in the Date and Ticker columns.  The buy orders want to be set one cent above the number shown in the Premarket High column for each stock on each date.  The buy order wants to be for $10,000 worth of each stock.  In other words, I want the backtest to set up a buy order right after the market opens to buy each stock on each date as soon as it breaks above its premarket high by one cent.  
 

Each day during the regular market hours, I then want the algorithm backtest to check every ten seconds to see if any of my buy orders have triggered.  If one of my buy orders has been triggered, I want an order-cancels-order set up to exit the position.  The order-cancels-order should be set up to exit that stock position once it hits a 15% profit or once it hits a 15% loss, whichever comes first.

 

20 seconds before the market closes, I want the algorithm to liquidate any remaining positions and clear all orders and watchlists to get ready for the next day with its new stocks.  I want to be able to control the start and end date of the backtests too.  

Could you code this strategy in python for me?  Thanks!