Mr. Smit

Results 17 comments of Mr. Smit

same problem, after I looked at the source code, found a solution: ``` chart: { animations: {enabled: false}, zoom: { type: 'xy', enabled: true, autoScaleYaxis: false } }, ```

As I understand from documentation, you just have to provide Query parametr, not Body/Post parameter. So simple: closePosition(symbol) => Promise closePosition("AAPL?qty=0.0001")

by the way, you can modify this npm library without changing it, for example, I needed api to disable "spotBNBBurn" , which this library dont have, but api have it,...

Thanks for your work, was thinking to implement this, but you already did it. thanks.

rewrite binance npm function by yourself, use power of javascript, access "binance" object and create a new function , you will have access to all functions and varibles in that...

also you can just use raw api with npm library "got" and create your own functions, easy, not a big deal.

you just use it wrong, its working in 0.13.0 ``` function order_update(data) { console.log(data) } binance.websockets.userData(order_update, true); ```

Binance API do not provide such functionality so this library also.

all is working, my example: to place buy limit ``` ret = await binance.futuresBuy(future_profit_obj.pair, future_profit_obj.bought_coins, current_price, { newClientOrderId: my_order_id_market, timeInForce: "GTC" }); ``` to place stop loss market ``` let...