mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
implement withdraw batch query
This commit is contained in:
parent
e11e0c97b8
commit
b36be80fd7
36
pkg/exchange/batch/withdraw.go
Normal file
36
pkg/exchange/batch/withdraw.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
package batch
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"golang.org/x/time/rate"
|
||||
|
||||
"github.com/c9s/bbgo/pkg/types"
|
||||
)
|
||||
|
||||
type WithdrawBatchQuery struct {
|
||||
types.ExchangeTransferService
|
||||
}
|
||||
|
||||
func (e *WithdrawBatchQuery) Query(ctx context.Context, asset string, startTime, endTime time.Time) (c chan types.Withdraw, errC chan error) {
|
||||
query := &AsyncTimeRangedBatchQuery{
|
||||
Type: types.Withdraw{},
|
||||
Limiter: rate.NewLimiter(rate.Every(5*time.Second), 2),
|
||||
JumpIfEmpty: time.Hour * 24 * 30,
|
||||
Q: func(startTime, endTime time.Time) (interface{}, error) {
|
||||
return e.ExchangeTransferService.QueryWithdrawHistory(ctx, asset, startTime, endTime)
|
||||
},
|
||||
T: func(obj interface{}) time.Time {
|
||||
return time.Time(obj.(types.Withdraw).ApplyTime)
|
||||
},
|
||||
ID: func(obj interface{}) string {
|
||||
withdraw := obj.(types.Withdraw)
|
||||
return withdraw.TransactionID
|
||||
},
|
||||
}
|
||||
|
||||
c = make(chan types.Withdraw, 100)
|
||||
errC = query.Query(ctx, c, startTime, endTime)
|
||||
return c, errC
|
||||
}
|
Loading…
Reference in New Issue
Block a user