mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
cmd/pnl: fix trade table query
This commit is contained in:
parent
9574a04cce
commit
fa7177426f
128
pkg/cmd/pnl.go
128
pkg/cmd/pnl.go
|
@ -18,11 +18,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
PnLCmd.Flags().String("session", "", "target exchange")
|
PnLCmd.Flags().StringArray("session", []string{}, "target exchange sessions")
|
||||||
PnLCmd.Flags().String("symbol", "", "trading symbol")
|
PnLCmd.Flags().String("symbol", "", "trading symbol")
|
||||||
PnLCmd.Flags().Bool("include-transfer", false, "convert transfer records into trades")
|
PnLCmd.Flags().Bool("include-transfer", false, "convert transfer records into trades")
|
||||||
PnLCmd.Flags().String("since", "", "query trades from a timepoint")
|
PnLCmd.Flags().String("since", "", "query trades from a time point")
|
||||||
PnLCmd.Flags().Int("limit", 0, "number of trades")
|
PnLCmd.Flags().Uint64("limit", 0, "number of trades")
|
||||||
RootCmd.AddCommand(PnLCmd)
|
RootCmd.AddCommand(PnLCmd)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,11 +34,15 @@ var PnLCmd = &cobra.Command{
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
||||||
sessionName, err := cmd.Flags().GetString("session")
|
sessionNames, err := cmd.Flags().GetStringArray("session")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(sessionNames) == 0 {
|
||||||
|
return errors.New("--session [SESSION] is required")
|
||||||
|
}
|
||||||
|
|
||||||
symbol, err := cmd.Flags().GetString("symbol")
|
symbol, err := cmd.Flags().GetString("symbol")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -48,41 +52,6 @@ var PnLCmd = &cobra.Command{
|
||||||
return errors.New("--symbol [SYMBOL] is required")
|
return errors.New("--symbol [SYMBOL] is required")
|
||||||
}
|
}
|
||||||
|
|
||||||
limit, err := cmd.Flags().GetInt("limit")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
environ := bbgo.NewEnvironment()
|
|
||||||
|
|
||||||
if err := environ.ConfigureDatabase(ctx); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
session, ok := environ.Session(sessionName)
|
|
||||||
if !ok {
|
|
||||||
return fmt.Errorf("session %s not found", sessionName)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := environ.SyncSession(ctx, session, symbol); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = environ.Init(ctx); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
exchange := session.Exchange
|
|
||||||
|
|
||||||
market, ok := session.Market(symbol)
|
|
||||||
if !ok {
|
|
||||||
return fmt.Errorf("market config %s not found", symbol)
|
|
||||||
}
|
|
||||||
|
|
||||||
// this is the default since
|
// this is the default since
|
||||||
since := time.Now().AddDate(-1, 0, 0)
|
since := time.Now().AddDate(-1, 0, 0)
|
||||||
|
|
||||||
|
@ -106,36 +75,71 @@ var PnLCmd = &cobra.Command{
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if includeTransfer {
|
limit, err := cmd.Flags().GetUint64("limit")
|
||||||
transferService, ok := exchange.(types.ExchangeTransferService)
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
environ := bbgo.NewEnvironment()
|
||||||
|
|
||||||
|
if err := environ.ConfigureDatabase(ctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, sessionName := range sessionNames {
|
||||||
|
session, ok := environ.Session(sessionName)
|
||||||
if !ok {
|
if !ok {
|
||||||
return fmt.Errorf("session exchange %s does not implement transfer service", sessionName)
|
return fmt.Errorf("session %s not found", sessionName)
|
||||||
}
|
}
|
||||||
|
|
||||||
deposits, err := transferService.QueryDepositHistory(ctx, market.BaseCurrency, since, until)
|
if err := environ.SyncSession(ctx, session, symbol); err != nil {
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
_ = deposits
|
|
||||||
|
|
||||||
withdrawals, err := transferService.QueryWithdrawHistory(ctx, market.BaseCurrency, since, until)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
sort.Slice(withdrawals, func(i, j int) bool {
|
if includeTransfer {
|
||||||
a := withdrawals[i].ApplyTime.Time()
|
exchange := session.Exchange
|
||||||
b := withdrawals[j].ApplyTime.Time()
|
market, _ := session.Market(symbol)
|
||||||
return a.Before(b)
|
transferService, ok := exchange.(types.ExchangeTransferService)
|
||||||
})
|
if !ok {
|
||||||
|
return fmt.Errorf("session exchange %s does not implement transfer service", sessionName)
|
||||||
|
}
|
||||||
|
|
||||||
// we need the backtest klines for the daily prices
|
deposits, err := transferService.QueryDepositHistory(ctx, market.BaseCurrency, since, until)
|
||||||
backtestService := &service.BacktestService{DB: environ.DatabaseService.DB}
|
if err != nil {
|
||||||
if err := backtestService.Sync(ctx, exchange, symbol, types.Interval1d, since, until); err != nil {
|
return err
|
||||||
return err
|
}
|
||||||
|
_ = deposits
|
||||||
|
|
||||||
|
withdrawals, err := transferService.QueryWithdrawHistory(ctx, market.BaseCurrency, since, until)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
sort.Slice(withdrawals, func(i, j int) bool {
|
||||||
|
a := withdrawals[i].ApplyTime.Time()
|
||||||
|
b := withdrawals[j].ApplyTime.Time()
|
||||||
|
return a.Before(b)
|
||||||
|
})
|
||||||
|
|
||||||
|
// we need the backtest klines for the daily prices
|
||||||
|
backtestService := &service.BacktestService{DB: environ.DatabaseService.DB}
|
||||||
|
if err := backtestService.Sync(ctx, exchange, symbol, types.Interval1d, since, until); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = environ.Init(ctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
session, _ := environ.Session(sessionNames[0])
|
||||||
|
exchange := session.Exchange
|
||||||
|
|
||||||
var trades []types.Trade
|
var trades []types.Trade
|
||||||
tradingFeeCurrency := exchange.PlatformFeeCurrency()
|
tradingFeeCurrency := exchange.PlatformFeeCurrency()
|
||||||
if strings.HasPrefix(symbol, tradingFeeCurrency) {
|
if strings.HasPrefix(symbol, tradingFeeCurrency) {
|
||||||
|
@ -143,8 +147,10 @@ var PnLCmd = &cobra.Command{
|
||||||
trades, err = environ.TradeService.QueryForTradingFeeCurrency(exchange.Name(), symbol, tradingFeeCurrency)
|
trades, err = environ.TradeService.QueryForTradingFeeCurrency(exchange.Name(), symbol, tradingFeeCurrency)
|
||||||
} else {
|
} else {
|
||||||
trades, err = environ.TradeService.Query(service.QueryTradesOptions{
|
trades, err = environ.TradeService.Query(service.QueryTradesOptions{
|
||||||
Symbol: symbol,
|
Symbol: symbol,
|
||||||
Limit: limit,
|
Limit: limit,
|
||||||
|
Sessions: sessionNames,
|
||||||
|
Since: &since,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,12 +20,14 @@ var ErrTradeNotFound = errors.New("trade not found")
|
||||||
|
|
||||||
type QueryTradesOptions struct {
|
type QueryTradesOptions struct {
|
||||||
Exchange types.ExchangeName
|
Exchange types.ExchangeName
|
||||||
|
Sessions []string
|
||||||
Symbol string
|
Symbol string
|
||||||
LastGID int64
|
LastGID int64
|
||||||
|
Since *time.Time
|
||||||
|
|
||||||
// ASC or DESC
|
// ASC or DESC
|
||||||
Ordering string
|
Ordering string
|
||||||
Limit int
|
Limit uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
type TradingVolume struct {
|
type TradingVolume struct {
|
||||||
|
@ -295,13 +297,43 @@ func (s *TradeService) QueryForTradingFeeCurrency(ex types.ExchangeName, symbol
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *TradeService) Query(options QueryTradesOptions) ([]types.Trade, error) {
|
func (s *TradeService) Query(options QueryTradesOptions) ([]types.Trade, error) {
|
||||||
sql := queryTradesSQL(options)
|
sel := sq.Select("*").
|
||||||
args := map[string]interface{}{
|
From("trades")
|
||||||
"exchange": options.Exchange,
|
|
||||||
"symbol": options.Symbol,
|
if options.Since != nil {
|
||||||
|
sel = sel.Where(sq.GtOrEq{"traded_at": options.Since})
|
||||||
}
|
}
|
||||||
|
|
||||||
rows, err := s.DB.NamedQuery(sql, args)
|
sel = sel.Where(sq.Eq{"symbol": options.Symbol})
|
||||||
|
|
||||||
|
if options.Exchange != "" {
|
||||||
|
sel = sel.Where(sq.Eq{"exchange": options.Exchange})
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(options.Sessions) > 0 {
|
||||||
|
// FIXME: right now we only have the exchange field in the db, we might need to add the session field too.
|
||||||
|
sel = sel.Where(sq.Eq{"exchange": options.Sessions})
|
||||||
|
}
|
||||||
|
|
||||||
|
if options.Ordering != "" {
|
||||||
|
sel = sel.OrderBy("traded_at " + options.Ordering)
|
||||||
|
} else {
|
||||||
|
sel = sel.OrderBy("traded_at ASC")
|
||||||
|
}
|
||||||
|
|
||||||
|
if options.Limit > 0 {
|
||||||
|
sel = sel.Limit(options.Limit)
|
||||||
|
}
|
||||||
|
|
||||||
|
sql, args, err := sel.ToSql()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Debug(sql)
|
||||||
|
log.Debug(args)
|
||||||
|
|
||||||
|
rows, err := s.DB.Queryx(sql, args...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -408,7 +440,7 @@ func queryTradesSQL(options QueryTradesOptions) string {
|
||||||
sql += ` ORDER BY gid ` + ordering
|
sql += ` ORDER BY gid ` + ordering
|
||||||
|
|
||||||
if options.Limit > 0 {
|
if options.Limit > 0 {
|
||||||
sql += ` LIMIT ` + strconv.Itoa(options.Limit)
|
sql += ` LIMIT ` + strconv.FormatUint(options.Limit, 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
return sql
|
return sql
|
||||||
|
|
|
@ -92,7 +92,7 @@ func (s *Strategy) InstanceID() string {
|
||||||
return fmt.Sprintf("%s:%s", ID, s.Symbol)
|
return fmt.Sprintf("%s:%s", ID, s.Symbol)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Strategy) Run(ctx context.Context, session *bbgo.ExchangeSession) error {
|
func (s *Strategy) Run(ctx context.Context, _ bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
||||||
if s.BudgetQuota.IsZero() {
|
if s.BudgetQuota.IsZero() {
|
||||||
s.BudgetQuota = s.Budget
|
s.BudgetQuota = s.Budget
|
||||||
}
|
}
|
||||||
|
|
|
@ -402,7 +402,7 @@ func (s *Strategy) adjustOrderQuantity(submitOrder types.SubmitOrder) types.Subm
|
||||||
return submitOrder
|
return submitOrder
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Strategy) Run(ctx context.Context, session *bbgo.ExchangeSession) error {
|
func (s *Strategy) Run(ctx context.Context, _ bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
||||||
instanceID := fmt.Sprintf("%s-%s", ID, s.Symbol)
|
instanceID := fmt.Sprintf("%s-%s", ID, s.Symbol)
|
||||||
|
|
||||||
s.status = types.StrategyStatusRunning
|
s.status = types.StrategyStatusRunning
|
||||||
|
|
Loading…
Reference in New Issue
Block a user