2023-12-22 08:40:30 +00:00
|
|
|
package autobuy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
2024-08-17 06:05:29 +00:00
|
|
|
"github.com/robfig/cron/v3"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2023-12-22 08:40:30 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
|
|
indicatorv2 "github.com/c9s/bbgo/pkg/indicator/v2"
|
|
|
|
"github.com/c9s/bbgo/pkg/strategy/common"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
const ID = "autobuy"
|
|
|
|
|
|
|
|
var log = logrus.WithField("strategy", ID)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type Strategy struct {
|
|
|
|
*common.Strategy
|
|
|
|
|
|
|
|
Environment *bbgo.Environment
|
|
|
|
Market types.Market
|
|
|
|
|
2024-06-18 09:30:34 +00:00
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
Schedule string `json:"schedule"`
|
|
|
|
MinBaseBalance fixedpoint.Value `json:"minBaseBalance"`
|
2024-08-21 05:38:54 +00:00
|
|
|
OrderType types.OrderType `json:"orderType"`
|
2024-06-18 09:30:34 +00:00
|
|
|
PriceType types.PriceType `json:"priceType"`
|
|
|
|
Bollinger *types.BollingerSetting `json:"bollinger"`
|
|
|
|
DryRun bool `json:"dryRun"`
|
|
|
|
|
|
|
|
// Deprecated, to be replaced by MinBaseBalance
|
|
|
|
Threshold fixedpoint.Value `json:"threshold"`
|
2023-12-22 08:40:30 +00:00
|
|
|
|
|
|
|
bbgo.QuantityOrAmount
|
|
|
|
|
|
|
|
boll *indicatorv2.BOLLStream
|
|
|
|
cron *cron.Cron
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Initialize() error {
|
|
|
|
if s.Strategy == nil {
|
|
|
|
s.Strategy = &common.Strategy{}
|
|
|
|
}
|
2024-06-18 09:30:34 +00:00
|
|
|
|
|
|
|
if s.Threshold.Sign() > 0 && s.MinBaseBalance.IsZero() {
|
|
|
|
s.MinBaseBalance = s.Threshold
|
|
|
|
}
|
2023-12-22 08:40:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) ID() string {
|
|
|
|
return ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) InstanceID() string {
|
|
|
|
return fmt.Sprintf("%s:%s", ID, s.Symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Validate() error {
|
2024-08-21 05:42:19 +00:00
|
|
|
if s.Symbol == "" {
|
|
|
|
return fmt.Errorf("symbol is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.Schedule == "" {
|
|
|
|
return fmt.Errorf("schedule is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.MinBaseBalance.Sign() <= 0 {
|
|
|
|
return fmt.Errorf("minBaseBalance must be greater than 0")
|
|
|
|
}
|
|
|
|
|
2023-12-22 08:40:30 +00:00
|
|
|
if err := s.QuantityOrAmount.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-08-21 05:28:22 +00:00
|
|
|
|
|
|
|
if s.Bollinger != nil {
|
|
|
|
if s.Bollinger.Interval == "" {
|
|
|
|
return fmt.Errorf("bollinger interval is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.Bollinger.BandWidth <= 0 {
|
|
|
|
return fmt.Errorf("bollinger band width must be greater than 0")
|
|
|
|
}
|
|
|
|
}
|
2023-12-22 08:40:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Defaults() error {
|
2024-08-21 05:38:54 +00:00
|
|
|
if s.OrderType == "" {
|
|
|
|
s.OrderType = types.OrderTypeLimit
|
|
|
|
}
|
|
|
|
|
2023-12-22 08:40:30 +00:00
|
|
|
if s.PriceType == "" {
|
2024-02-23 05:46:07 +00:00
|
|
|
s.PriceType = types.PriceTypeMaker
|
2023-12-22 08:40:30 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
2024-08-21 05:28:22 +00:00
|
|
|
if s.Bollinger != nil {
|
|
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: s.Bollinger.Interval})
|
|
|
|
}
|
2023-12-22 08:40:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Run(ctx context.Context, _ bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
|
|
|
s.Strategy.Initialize(ctx, s.Environment, session, s.Market, ID, s.InstanceID())
|
|
|
|
|
2024-08-21 05:28:22 +00:00
|
|
|
if s.Bollinger != nil {
|
|
|
|
s.boll = session.Indicators(s.Symbol).BOLL(s.Bollinger.IntervalWindow, s.Bollinger.BandWidth)
|
|
|
|
}
|
2023-12-22 08:40:30 +00:00
|
|
|
|
|
|
|
s.OrderExecutor.ActiveMakerOrders().OnFilled(func(order types.Order) {
|
|
|
|
s.autobuy(ctx)
|
|
|
|
})
|
|
|
|
|
|
|
|
// the shutdown handler, you can cancel all orders
|
|
|
|
bbgo.OnShutdown(ctx, func(ctx context.Context, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
s.cancelOrders(ctx)
|
|
|
|
})
|
|
|
|
|
|
|
|
s.cron = cron.New()
|
|
|
|
s.cron.AddFunc(s.Schedule, func() {
|
|
|
|
s.autobuy(ctx)
|
|
|
|
})
|
|
|
|
s.cron.Start()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) cancelOrders(ctx context.Context) {
|
|
|
|
if err := s.OrderExecutor.GracefulCancel(ctx); err != nil {
|
|
|
|
log.WithError(err).Errorf("failed to cancel orders")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) autobuy(ctx context.Context) {
|
|
|
|
s.cancelOrders(ctx)
|
|
|
|
|
2024-10-07 13:37:49 +00:00
|
|
|
baseBalance, ok := s.Session.GetAccount().Balance(s.Market.BaseCurrency)
|
2023-12-22 08:40:30 +00:00
|
|
|
if !ok {
|
|
|
|
log.Errorf("%s balance not found", s.Market.BaseCurrency)
|
|
|
|
return
|
|
|
|
}
|
2024-10-07 13:37:49 +00:00
|
|
|
log.Infof("balance: %s", baseBalance.String())
|
|
|
|
|
|
|
|
quoteBalance, ok := s.Session.GetAccount().Balance(s.Market.QuoteCurrency)
|
|
|
|
if !ok {
|
|
|
|
log.Errorf("%s balance not found", s.Market.QuoteCurrency)
|
|
|
|
return
|
|
|
|
}
|
2023-12-22 08:40:30 +00:00
|
|
|
|
|
|
|
ticker, err := s.Session.Exchange.QueryTicker(ctx, s.Symbol)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("failed to query ticker")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-23 05:46:07 +00:00
|
|
|
side := types.SideTypeBuy
|
2024-08-17 06:05:29 +00:00
|
|
|
price := s.PriceType.GetPrice(ticker, side)
|
2023-12-22 08:40:30 +00:00
|
|
|
|
2024-08-21 05:28:22 +00:00
|
|
|
if s.boll != nil && price.Float64() > s.boll.UpBand.Last(0) {
|
2023-12-22 08:40:30 +00:00
|
|
|
log.Infof("price %s is higher than upper band %f, skip", price.String(), s.boll.UpBand.Last(0))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-10-07 13:37:49 +00:00
|
|
|
if baseBalance.Available.Compare(s.MinBaseBalance) > 0 {
|
|
|
|
log.Infof("balance %s is higher than minBaseBalance %s", baseBalance.Available.String(), s.MinBaseBalance.String())
|
2023-12-22 08:40:30 +00:00
|
|
|
return
|
|
|
|
}
|
2024-10-07 13:37:49 +00:00
|
|
|
log.Infof("balance %s is lower than minBaseBalance %s", baseBalance.Available.String(), s.MinBaseBalance.String())
|
2023-12-22 08:40:30 +00:00
|
|
|
|
|
|
|
quantity := s.CalculateQuantity(price)
|
2024-10-07 13:37:49 +00:00
|
|
|
|
|
|
|
requiredQuote := quantity.Mul(price)
|
|
|
|
if quoteBalance.Available.Compare(requiredQuote) < 0 {
|
|
|
|
log.Warnf("quote balance %s is not enough: %s < %s", s.Market.QuoteCurrency, quoteBalance.Available.String(), requiredQuote.String())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-12-22 08:40:30 +00:00
|
|
|
submitOrder := types.SubmitOrder{
|
|
|
|
Symbol: s.Symbol,
|
2024-02-23 05:46:07 +00:00
|
|
|
Side: side,
|
2024-08-21 05:38:54 +00:00
|
|
|
Type: s.OrderType,
|
2023-12-22 08:40:30 +00:00
|
|
|
Quantity: quantity,
|
|
|
|
Price: price,
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.DryRun {
|
|
|
|
log.Infof("dry run, skip")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("submitting order: %s", submitOrder.String())
|
|
|
|
_, err = s.OrderExecutor.SubmitOrders(ctx, submitOrder)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("submit order error")
|
|
|
|
}
|
|
|
|
}
|