binance-api-node icon indicating copy to clipboard operation
binance-api-node copied to clipboard

:chart: A complete and heavily tested wrapper with typings for the Binance API.

Results 91 binance-api-node issues
Sort by recently updated
recently updated
newest added

There is not support for quoteOrderQty in order LIMIT. i want to do something like this: await client.order({ symbol: 'BNBUSDT', side: 'BUY', type: 'LIMIT', quoteOrderQty: 20, price: 400 })

Cannot create STOP_MARKET order for spot trading Error TS2322 (TS) Type 'OrderType.STOP_MARKET' is not assignable to type 'OrderType.LIMIT | OrderType.MARKET | OrderType.STOP_LOSS_LIMIT | OrderType.TAKE_PROFIT_LIMIT' version: "binance-api-node": "^0.11.28" In general, OrderType...

in Readme is [allMiniTickers], but in code and test is named [allMiniTicker] without "s"

docs

`getOrder` is asking for an `orderId` of type `number` Some orders have big integer as id like `8389765512384743573` for `ETHUSDT`. How are we supposed to pass this kind of big...

Hey, The withdraw function asset parameter should be coin. I've tested it and it works fine. NOTE: I had to enable withdraw for the api key. More of a comment!

Hey, from documentation I grasped that I can use only quantity parameter to buy by market, but is there a way to buy by quoteOrderQty parameter? I have not managed...

docs

allBookTickers method requests `/api/v3/ticker/bookTicker` which returns array of ``` [key: string]: { symbol: string bidPrice: string bidQty: string askPrice: string askQty: string } ``` While in library right hand part...

types

https://binance-docs.github.io/apidocs/futures/en/#continuous-contract-kline-candlestick-data

enhancement

The "Symbol Price Ticker" of the Futures API accepts a `symbol` parameter: https://binance-docs.github.io/apidocs/futures/en/#symbol-price-ticker It should be added to the "futures prices" function: https://github.com/Ashlar/binance-api-node#futures-prices That way it will be possible to...

enhancement