go-binance icon indicating copy to clipboard operation
go-binance copied to clipboard

Golang wrapper for Binance API

Results 9 go-binance issues
Sort by recently updated
recently updated
newest added

Update deprecated functions Add missing fields in some struct Add the new GetAveragePrice function and add a GetPosition function for a given symbol

This is used for setting timeouts and other network settings and can also be useful for sharing connections when using multiple Binance instances.

The files in `binance/tests` are declared as being in different packages. ``` $ grep -h package binance/tests/*.go package account_test package market_test package ping_test package withdrawal_system_status_test ``` This breaks Go tooling...

https://github.com/pdepip/go-binance/blob/10dfdfcd6b613b7372a5d44378ddc5a730d9384a/binance/client.go#L66

I'm trying to get balances of my account, using ```GetAccountInfo``` method but its returning nil, it just started behaving like that, was find before. Anyone can help with it? here...

info, err := client.GetAccountInfo() there is a 50% chance that this will cause an error 403 from Binance. I tried another library in another language, and there was no such...

LIMIT_MAKER orders are not supported by the `ValidateLimitOrder` function. They are described on the Binance API docs here: https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md#new-order--trade (I also don't quite understand the purpose of client side checks...