2020-10-24 09:58:45 +00:00
|
|
|
package skeleton
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-06-22 15:18:11 +00:00
|
|
|
"fmt"
|
2020-10-24 09:58:45 +00:00
|
|
|
|
2022-02-09 10:23:35 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-10-24 09:58:45 +00:00
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
2022-02-09 10:23:35 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2022-02-15 05:55:19 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
2020-10-24 09:58:45 +00:00
|
|
|
)
|
|
|
|
|
2022-06-22 15:24:11 +00:00
|
|
|
// ID is the unique strategy ID, it needs to be in all lower case
|
|
|
|
// For example, grid strategy uses "grid"
|
2021-02-03 01:08:05 +00:00
|
|
|
const ID = "skeleton"
|
2022-02-15 05:55:19 +00:00
|
|
|
|
2022-06-22 15:32:31 +00:00
|
|
|
// log is a logrus.Entry that will be reused.
|
|
|
|
// This line attaches the strategy field to the logger with our ID, so that the logs from this strategy will be tagged with our ID
|
2022-02-09 10:23:35 +00:00
|
|
|
var log = logrus.WithField("strategy", ID)
|
2021-02-03 01:08:05 +00:00
|
|
|
|
2022-06-22 15:24:11 +00:00
|
|
|
var ten = fixedpoint.NewFromInt(10)
|
2022-06-22 15:18:11 +00:00
|
|
|
|
2022-06-22 15:24:11 +00:00
|
|
|
// init is a special function of golang, it will be called when the program is started
|
|
|
|
// importing this package will trigger the init function call.
|
2020-10-24 09:58:45 +00:00
|
|
|
func init() {
|
2022-06-22 15:24:11 +00:00
|
|
|
// Register our struct type to BBGO
|
|
|
|
// Note that you don't need to field the fields.
|
|
|
|
// BBGO uses reflect to parse your type information.
|
2021-02-03 01:08:05 +00:00
|
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
2020-10-24 09:58:45 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 15:18:11 +00:00
|
|
|
// State is a struct contains the information that we want to keep in the persistence layer,
|
|
|
|
// for example, redis or json file.
|
|
|
|
type State struct {
|
|
|
|
Counter int `json:"counter,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strategy is a struct that contains the settings of your strategy.
|
|
|
|
// These settings will be loaded from the BBGO YAML config file "bbgo.yaml" automatically.
|
2020-10-24 09:58:45 +00:00
|
|
|
type Strategy struct {
|
|
|
|
Symbol string `json:"symbol"`
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// State is a state of your strategy
|
|
|
|
// When BBGO shuts down, everything in the memory will be dropped
|
|
|
|
// If you need to store something and restore this information back,
|
|
|
|
// Simply define the "persistence" tag
|
|
|
|
State *State `persistence:"state"`
|
2020-10-24 09:58:45 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 15:18:11 +00:00
|
|
|
// ID should return the identity of this strategy
|
2021-02-03 01:08:05 +00:00
|
|
|
func (s *Strategy) ID() string {
|
|
|
|
return ID
|
|
|
|
}
|
|
|
|
|
2022-06-22 15:18:11 +00:00
|
|
|
// InstanceID returns the identity of the current instance of this strategy.
|
|
|
|
// You may have multiple instance of a strategy, with different symbols and settings.
|
|
|
|
// This value will be used for persistence layer to separate the storage.
|
|
|
|
//
|
|
|
|
// Run:
|
|
|
|
// redis-cli KEYS "*"
|
|
|
|
//
|
|
|
|
// And you will see how this instance ID is used in redis.
|
|
|
|
func (s *Strategy) InstanceID() string {
|
|
|
|
return ID + ":" + s.Symbol
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subscribe method subscribes specific market data from the given session.
|
|
|
|
// Before BBGO is connected to the exchange, we need to collect what we want to subscribe.
|
|
|
|
// Here the strategy needs kline data, so it adds the kline subscription.
|
2020-10-29 09:06:34 +00:00
|
|
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
2022-06-22 15:18:11 +00:00
|
|
|
// We want 1m kline data of the symbol
|
|
|
|
// It will be BTCUSDT 1m if our s.Symbol is BTCUSDT
|
2020-10-24 09:58:45 +00:00
|
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: "1m"})
|
2020-10-29 09:06:34 +00:00
|
|
|
}
|
2020-10-24 09:58:45 +00:00
|
|
|
|
2022-02-09 10:23:35 +00:00
|
|
|
// This strategy simply spent all available quote currency to buy the symbol whenever kline gets closed
|
2020-10-29 09:06:34 +00:00
|
|
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
2022-06-22 15:18:11 +00:00
|
|
|
// Initialize the default value for state
|
|
|
|
if s.State == nil {
|
|
|
|
s.State = &State{Counter: 1}
|
|
|
|
}
|
|
|
|
|
2022-07-26 10:35:50 +00:00
|
|
|
indicators := session.StandardIndicatorSet(s.Symbol)
|
|
|
|
atr := indicators.ATR(types.IntervalWindow{
|
|
|
|
Interval: types.Interval1m,
|
|
|
|
Window: 14,
|
|
|
|
})
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// To get the market information from the current session
|
|
|
|
// The market object provides the precision, MoQ (minimal of quantity) information
|
2022-02-15 05:55:19 +00:00
|
|
|
market, ok := session.Market(s.Symbol)
|
2022-02-09 10:23:35 +00:00
|
|
|
if !ok {
|
2022-06-22 15:18:11 +00:00
|
|
|
return fmt.Errorf("market %s not found", s.Symbol)
|
2022-02-09 10:23:35 +00:00
|
|
|
}
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// here we define a kline callback
|
|
|
|
// when a kline is closed, we will do something
|
2022-02-09 10:23:35 +00:00
|
|
|
callback := func(kline types.KLine) {
|
2022-06-22 15:18:11 +00:00
|
|
|
// get the latest ATR value from the indicator object that we just defined.
|
2023-05-31 11:35:44 +00:00
|
|
|
atrValue := atr.Last(0)
|
2022-06-22 15:18:11 +00:00
|
|
|
log.Infof("atr %f", atrValue)
|
|
|
|
|
|
|
|
// Update our counter and sync the changes to the persistence layer on time
|
|
|
|
// If you don't do this, BBGO will sync it automatically when BBGO shuts down.
|
|
|
|
s.State.Counter++
|
2022-10-03 10:45:24 +00:00
|
|
|
bbgo.Sync(ctx, s)
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// To check if we have the quote balance
|
|
|
|
// When symbol = "BTCUSDT", the quote currency is USDT
|
|
|
|
// We can get this information from the market object
|
2022-04-23 07:43:11 +00:00
|
|
|
quoteBalance, ok := session.GetAccount().Balance(market.QuoteCurrency)
|
2022-02-09 10:23:35 +00:00
|
|
|
if !ok {
|
2022-06-22 15:18:11 +00:00
|
|
|
// if not ok, it means we don't have this currency in the account
|
2022-02-09 10:23:35 +00:00
|
|
|
return
|
|
|
|
}
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// For each balance, we have Available and Locked balance.
|
|
|
|
// balance.Available is the balance you can use to place an order.
|
|
|
|
// Note that the available balance is a fixed-point object, so you can not compare it with integer directly.
|
|
|
|
// Instead, you should call valueA.Compare(valueB)
|
2022-02-09 10:23:35 +00:00
|
|
|
quantityAmount := quoteBalance.Available
|
2022-06-22 15:24:11 +00:00
|
|
|
if quantityAmount.Sign() <= 0 || quantityAmount.Compare(ten) < 0 {
|
2022-02-09 10:23:35 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-22 15:18:11 +00:00
|
|
|
// Call LastPrice(symbol) If you need to get the latest price
|
|
|
|
// Note this last price is updated by the closed kline
|
2022-02-09 10:23:35 +00:00
|
|
|
currentPrice, ok := session.LastPrice(s.Symbol)
|
2020-10-24 09:58:45 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2022-02-09 10:23:35 +00:00
|
|
|
|
2022-06-22 15:29:29 +00:00
|
|
|
// totalQuantity = quantityAmount / currentPrice
|
2022-02-09 10:23:35 +00:00
|
|
|
totalQuantity := quantityAmount.Div(currentPrice)
|
2020-10-24 09:58:45 +00:00
|
|
|
|
2022-06-22 15:18:11 +00:00
|
|
|
// Place a market order to the exchange
|
|
|
|
createdOrders, err := orderExecutor.SubmitOrders(ctx, types.SubmitOrder{
|
2020-10-24 09:58:45 +00:00
|
|
|
Symbol: kline.Symbol,
|
|
|
|
Side: types.SideTypeBuy,
|
|
|
|
Type: types.OrderTypeMarket,
|
2022-02-09 10:23:35 +00:00
|
|
|
Price: currentPrice,
|
|
|
|
Quantity: totalQuantity,
|
2020-10-24 09:58:45 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("submit order error")
|
|
|
|
}
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
log.Infof("createdOrders: %+v", createdOrders)
|
2022-06-22 15:28:49 +00:00
|
|
|
|
|
|
|
// send notification to slack or telegram if you have configured it
|
|
|
|
bbgo.Notify("order created")
|
2022-02-09 10:23:35 +00:00
|
|
|
}
|
2022-06-22 15:18:11 +00:00
|
|
|
|
|
|
|
// register our kline event handler
|
|
|
|
session.MarketDataStream.OnKLineClosed(callback)
|
|
|
|
|
|
|
|
// if you need to do something when the user data stream is ready
|
|
|
|
// note that you only receive order update, trade update, balance update when the user data stream is connect.
|
2022-02-09 10:23:35 +00:00
|
|
|
session.UserDataStream.OnStart(func() {
|
|
|
|
log.Infof("connected")
|
2020-10-24 09:58:45 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|