mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
max: adjust trades limit to 1000
This commit is contained in:
parent
eaad414706
commit
59d68e7f0d
|
@ -554,7 +554,7 @@ func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *type
|
|||
if options.Limit > 0 {
|
||||
req.Limit(options.Limit)
|
||||
} else {
|
||||
req.Limit(500)
|
||||
req.Limit(1000)
|
||||
}
|
||||
|
||||
// MAX uses exclusive last trade ID
|
||||
|
|
Loading…
Reference in New Issue
Block a user