mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
binance: add workaround for the myTrades api
This commit is contained in:
parent
85097840f1
commit
ae678d1b3b
|
@ -1413,11 +1413,11 @@ func (e *Exchange) queryMarginTrades(ctx context.Context, symbol string, options
|
|||
req.Limit(1000)
|
||||
}
|
||||
|
||||
// BINANCE seems to have an API bug, we can't use both fromId and the start time/end time
|
||||
// BINANCE uses inclusive last trade ID
|
||||
if options.LastTradeID > 0 {
|
||||
req.FromID(int64(options.LastTradeID))
|
||||
}
|
||||
|
||||
} else {
|
||||
if options.StartTime != nil && options.EndTime != nil {
|
||||
if options.EndTime.Sub(*options.StartTime) < 24*time.Hour {
|
||||
req.StartTime(options.StartTime.UnixMilli())
|
||||
|
@ -1430,6 +1430,7 @@ func (e *Exchange) queryMarginTrades(ctx context.Context, symbol string, options
|
|||
} else if options.EndTime != nil {
|
||||
req.EndTime(options.EndTime.UnixMilli())
|
||||
}
|
||||
}
|
||||
|
||||
remoteTrades, err = req.Do(ctx)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue
Block a user