2021-02-06 03:34:53 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2021-02-27 10:40:53 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/exchange/ftx"
|
2022-02-07 03:40:30 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2022-02-15 05:55:19 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
2022-03-03 08:34:32 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/spf13/cobra"
|
2021-02-06 03:34:53 +00:00
|
|
|
)
|
|
|
|
|
2022-03-03 08:34:32 +00:00
|
|
|
func cobraInitRequired(required []string) func(cmd *cobra.Command, args []string) error {
|
|
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
|
|
for _, key := range required {
|
|
|
|
if err := cmd.MarkFlagRequired(key); err != nil {
|
|
|
|
log.WithError(err).Errorf("cannot mark --%s option required", key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-07 03:40:30 +00:00
|
|
|
func inQuoteAsset(balances types.BalanceMap, market types.Market, price fixedpoint.Value) fixedpoint.Value {
|
2022-01-31 16:54:55 +00:00
|
|
|
quote := balances[market.QuoteCurrency]
|
|
|
|
base := balances[market.BaseCurrency]
|
2022-02-07 03:40:30 +00:00
|
|
|
return base.Total().Mul(price).Add(quote.Total())
|
2022-01-31 16:54:55 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 03:40:30 +00:00
|
|
|
func inBaseAsset(balances types.BalanceMap, market types.Market, price fixedpoint.Value) fixedpoint.Value {
|
2021-02-06 03:34:53 +00:00
|
|
|
quote := balances[market.QuoteCurrency]
|
|
|
|
base := balances[market.BaseCurrency]
|
2022-02-07 03:40:30 +00:00
|
|
|
return quote.Total().Div(price).Add(base.Total())
|
2021-02-06 03:34:53 +00:00
|
|
|
}
|
|
|
|
|
2021-02-27 10:40:53 +00:00
|
|
|
func newExchange(session string) (types.Exchange, error) {
|
|
|
|
switch session {
|
|
|
|
case "ftx":
|
|
|
|
return ftx.NewExchange(
|
|
|
|
viper.GetString("ftx-api-key"),
|
|
|
|
viper.GetString("ftx-api-secret"),
|
2021-05-17 04:42:04 +00:00
|
|
|
viper.GetString("ftx-subaccount"),
|
2021-02-27 10:40:53 +00:00
|
|
|
), nil
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unsupported session %s", session)
|
|
|
|
}
|