mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
40 lines
803 B
Go
40 lines
803 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
//godotenv -f .env.local go run ./cmd/bbgo balances --session=ftx
|
||
|
var balancesCmd = &cobra.Command{
|
||
|
Use: "balances",
|
||
|
SilenceUsage: true,
|
||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||
|
ctx := context.Background()
|
||
|
session, err := cmd.Flags().GetString("session")
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("can't get session from flags: %w", err)
|
||
|
}
|
||
|
ex, err := newExchange(session)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
b, err := ex.QueryAccountBalances(ctx)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
log.Infof("balances: %+v", b)
|
||
|
|
||
|
return nil
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
balancesCmd.Flags().String("session", "", "the exchange session name for sync")
|
||
|
|
||
|
RootCmd.AddCommand(balancesCmd)
|
||
|
}
|