I made a bot for binance using the binance python library According to my analytics, the result is data like ‘TRBUSDT’: ‘buy’, ‘PONDUSDT’: ‘sell’
for each coin I open a market order
Buy
market_order = self.client.order_market_buy(symbol=self.symbol, quoteOrderQty=10)
or sell
market_order = self.client.order_market_sell(symbol=self.symbol, quoteOrderQty=10)
I can’t figure out how to add stop loss and take profit to each order
Thanks