New coin place order

If I get a token say FCPORTO by staking using finance launchpad

The new coin is launched and I want to be able to place a sell order fast within first few seconds

say I use sell order function
for i in range(100):
try:
sell( price=10)
except:
time.sleep(1)
pass

Will this code work the 100 sec would be 30 before launch and 60 sec after launch time.

Any better way to place the sell order at custom price for any staked tokens

You would have to check if the coin is listed on the exchange by using the exchangeInfo endpoint (Binance API Documentation) before placing an order for that coin.