mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
func init() {
|
|
depositsCmd.Flags().String("session", "", "the exchange session name for querying balances")
|
|
depositsCmd.Flags().String("asset", "", "the trading pair, like btcusdt")
|
|
RootCmd.AddCommand(depositsCmd)
|
|
}
|
|
|
|
// go run ./cmd/bbgo deposits --session=ftx --asset="BTC"
|
|
// This is a testing util and will query deposits in last 7 days.
|
|
var depositsCmd = &cobra.Command{
|
|
Use: "deposits",
|
|
Short: "A testing utility that will query deposition history in last 7 days",
|
|
SilenceUsage: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
ctx := context.Background()
|
|
|
|
environ := bbgo.NewEnvironment()
|
|
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
|
|
return err
|
|
}
|
|
|
|
sessionName, err := cmd.Flags().GetString("session")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
session, ok := environ.Session(sessionName)
|
|
if !ok {
|
|
return fmt.Errorf("session %s not found", sessionName)
|
|
}
|
|
|
|
asset, err := cmd.Flags().GetString("asset")
|
|
if err != nil {
|
|
return fmt.Errorf("can't get the asset from flags: %w", err)
|
|
}
|
|
if asset == "" {
|
|
return fmt.Errorf("asset is not found")
|
|
}
|
|
|
|
until := time.Now()
|
|
since := until.Add(-7 * 24 * time.Hour)
|
|
exchange, ok := session.Exchange.(types.ExchangeTransferService)
|
|
if !ok {
|
|
return fmt.Errorf("exchange session %s does not implement transfer service", sessionName)
|
|
}
|
|
histories, err := exchange.QueryDepositHistory(ctx, asset, since, until)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("%d histories", len(histories))
|
|
for _, h := range histories {
|
|
log.Infof("deposit history: %+v", h)
|
|
}
|
|
return nil
|
|
},
|
|
}
|