안녕하세요. 오늘은 어제에 이어 binance api를 활용하여 매도 주문을 넣어보겠습니다. buy(symbol, quoteOrderQty) { client.newOrder(symbol, 'BUY', 'MARKET', { quoteOrderQty: quoteOrderQty }).then((response) => { console.info(response.data) }).catch(error => console.error(error)) } 어제 매수 부분을 위와 같이 바꿨었습니다. 매도도 비슷하게 해 보겠습니다. sell(symbol, quantity, price) { client.newOrder(symbol, 'SELL', 'LIMIT', { quantity: quantity, price: price, ..