mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
binance: add incomeType parameter
This commit is contained in:
parent
f50999b780
commit
12ec3fd87f
|
@ -369,9 +369,10 @@ func (e *Exchange) queryFuturesDepth(ctx context.Context, symbol string) (snapsh
|
|||
// QueryFuturesIncomeHistory queries the income history on the binance futures account
|
||||
// This is more binance futures specific API, the convert function is not designed yet.
|
||||
// TODO: consider other futures platforms and design the common data structure for this
|
||||
func (e *Exchange) QueryFuturesIncomeHistory(ctx context.Context, symbol string, startTime, endTime time.Time) ([]binanceapi.FuturesIncome, error) {
|
||||
func (e *Exchange) QueryFuturesIncomeHistory(ctx context.Context, symbol string, incomeType binanceapi.FuturesIncomeType, startTime, endTime time.Time) ([]binanceapi.FuturesIncome, error) {
|
||||
req := e.futuresClient2.NewFuturesGetIncomeHistoryRequest()
|
||||
req.Symbol(symbol)
|
||||
req.IncomeType(incomeType)
|
||||
req.StartTime(startTime)
|
||||
req.EndTime(endTime)
|
||||
resp, err := req.Do(ctx)
|
||||
|
|
Loading…
Reference in New Issue
Block a user