mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
)
|
|
|
|
func init() {
|
|
balancesCmd.Flags().String("session", "", "the exchange session name for querying balances")
|
|
RootCmd.AddCommand(balancesCmd)
|
|
}
|
|
|
|
// 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()
|
|
|
|
configFile, err := cmd.Flags().GetString("config")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(configFile) == 0 {
|
|
return errors.New("--config option is required")
|
|
}
|
|
|
|
// if config file exists, use the config loaded from the config file.
|
|
// otherwise, use a empty config object
|
|
var userConfig *bbgo.Config
|
|
if _, err := os.Stat(configFile); err == nil {
|
|
// load successfully
|
|
userConfig, err = bbgo.Load(configFile, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else if os.IsNotExist(err) {
|
|
// config file doesn't exist
|
|
userConfig = &bbgo.Config{}
|
|
} else {
|
|
// other error
|
|
return err
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
b, err := session.Exchange.QueryAccountBalances(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("balances: %+v", b)
|
|
return nil
|
|
},
|
|
}
|