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

A Go SDK for Binance API

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

is there a way to get spesific time price?

I am attempting to use the websocket wrapper to retrieve kline data from multiple symbols. I try to set the WebsocketKeepalive to true and keep the WebsocketTimeout to the default...

I saw this error occasionally. It could happen on all rest APIs. e.g.: Post "https://api.binance.com/api/v3/order?timestamp=1615723310409&signature=6101ed79a0658415b789d4cbf8ff4a4e8289682f2464fd111663bdc387b0fef5": unexpected EOF

According to binance's doc: > The websocket server will send a ping frame every 5 minutes. If the websocket server does not receive a pong frame back from the connection...

I'd like to use binance's [SPOT testnet](https://testnet.binance.vision/) (I'm tired of "wasting money" for my tests), but I don't see a way to configure the websocket endpoint right now. Could it...

When setting `binance.UseTestnet = true` the public streams do not receive any events. ```go package main import ( "log" "os" "os/signal" binance "github.com/adshao/go-binance/v2" ) func main() { binance.UseTestnet = true...

In v1, specifying `IsIsolated` on `ListMarginOpenOrdersService` is ineffective because `ListMarginOpenOrdersService.Do()` never populates the `isIsolated` field of the API request. ## Reproduction steps Run the following code: ```go apiKey, secretKey :=...

https://binance-docs.github.io/apidocs/futures/en/#change-log # WEBSCOKET * [x] New field e for event type in payload of streams @bookTicker and !bookTicker (#179, #180) * [ ] New field P for estimated settle price...

`futures.PositionRisk` defines `MarginType` and `PositionSide` which, instead of `string`s, could be defined as `MarginType` and `PositionSideType` respectively.

Hi, Is there a list or supported features for futures trading ? Thanks