mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
306 lines
7.9 KiB
Go
306 lines
7.9 KiB
Go
package bbgo
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
flag "github.com/spf13/pflag"
|
|
)
|
|
|
|
var SupportedExchanges = []types.ExchangeName{"binance", "max"}
|
|
|
|
// PersistentFlags defines the flags for environments
|
|
func PersistentFlags(flags *flag.FlagSet) {
|
|
flags.String("binance-api-key", "", "binance api key")
|
|
flags.String("binance-api-secret", "", "binance api secret")
|
|
flags.String("max-api-key", "", "max api key")
|
|
flags.String("max-api-secret", "", "max api secret")
|
|
}
|
|
|
|
// SingleExchangeStrategy represents the single Exchange strategy
|
|
type SingleExchangeStrategy interface {
|
|
Run(ctx context.Context, orderExecutor types.OrderExecutor, session *ExchangeSession) error
|
|
}
|
|
|
|
type CrossExchangeStrategy interface {
|
|
Run(ctx context.Context, orderExecutionRouter types.OrderExecutionRouter, sessions map[string]*ExchangeSession) error
|
|
}
|
|
|
|
type Notifiability struct {
|
|
notifiers []Notifier
|
|
}
|
|
|
|
func (m *Notifiability) AddNotifier(notifier Notifier) {
|
|
m.notifiers = append(m.notifiers, notifier)
|
|
}
|
|
|
|
func (m *Notifiability) Notify(msg string, args ...interface{}) {
|
|
for _, n := range m.notifiers {
|
|
n.Notify("", msg, args...)
|
|
}
|
|
}
|
|
|
|
type Trader struct {
|
|
Notifiability
|
|
environment *Environment
|
|
|
|
crossExchangeStrategies []CrossExchangeStrategy
|
|
exchangeStrategies map[string][]SingleExchangeStrategy
|
|
|
|
// reportTimer *time.Timer
|
|
// ProfitAndLossCalculator *accounting.ProfitAndLossCalculator
|
|
}
|
|
|
|
func NewTrader(environ *Environment) *Trader {
|
|
return &Trader{
|
|
environment: environ,
|
|
exchangeStrategies: make(map[string][]SingleExchangeStrategy),
|
|
}
|
|
}
|
|
|
|
// AttachStrategyOn attaches the single exchange strategy on an exchange session.
|
|
// Single exchange strategy is the default behavior.
|
|
func (trader *Trader) AttachStrategyOn(session string, strategies ...SingleExchangeStrategy) *Trader {
|
|
if _, ok := trader.environment.sessions[session]; !ok {
|
|
log.Panicf("session %s is not defined", session)
|
|
}
|
|
|
|
for _, s := range strategies {
|
|
trader.exchangeStrategies[session] = append(trader.exchangeStrategies[session], s)
|
|
}
|
|
|
|
return trader
|
|
}
|
|
|
|
// AttachCrossExchangeStrategy attaches the cross exchange strategy
|
|
func (trader *Trader) AttachCrossExchangeStrategy(strategy CrossExchangeStrategy) *Trader {
|
|
trader.crossExchangeStrategies = append(trader.crossExchangeStrategies, strategy)
|
|
|
|
return trader
|
|
}
|
|
|
|
func (trader *Trader) Run(ctx context.Context) error {
|
|
if err := trader.environment.Init(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
// load and run session strategies
|
|
for sessionName, strategies := range trader.exchangeStrategies {
|
|
// we can move this to the exchange session,
|
|
// that way we can mount the notification on the exchange with DSL
|
|
orderExecutor := &ExchangeOrderExecutor{
|
|
Notifiability: trader.Notifiability,
|
|
Exchange: nil,
|
|
}
|
|
|
|
for _, strategy := range strategies {
|
|
err := strategy.Run(ctx, orderExecutor, trader.environment.sessions[sessionName])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
router := &ExchangeOrderExecutionRouter{
|
|
// copy the parent notifiers
|
|
Notifiability: trader.Notifiability,
|
|
sessions: trader.environment.sessions,
|
|
}
|
|
|
|
for _, strategy := range trader.crossExchangeStrategies {
|
|
if err := strategy.Run(ctx, router, trader.environment.sessions); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return trader.environment.Connect(ctx)
|
|
}
|
|
|
|
/*
|
|
func (trader *OrderExecutor) RunStrategyWithHotReload(ctx context.Context, strategy SingleExchangeStrategy, configFile string) (chan struct{}, error) {
|
|
var done = make(chan struct{})
|
|
var configWatcherDone = make(chan struct{})
|
|
|
|
log.Infof("watching config file: %v", configFile)
|
|
|
|
watcher, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer watcher.Close()
|
|
|
|
if err := watcher.Add(configFile); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
go func() {
|
|
strategyContext, strategyCancel := context.WithCancel(ctx)
|
|
defer strategyCancel()
|
|
defer close(done)
|
|
|
|
traderDone, err := trader.RunStrategy(strategyContext, strategy)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
var configReloadTimer *time.Timer = nil
|
|
defer close(configWatcherDone)
|
|
|
|
for {
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
return
|
|
|
|
case <-traderDone:
|
|
log.Infof("reloading config file %s", configFile)
|
|
if err := config.LoadConfigFile(configFile, strategy); err != nil {
|
|
log.WithError(err).Error("error load config file")
|
|
}
|
|
|
|
trader.Notify("config reloaded, restarting trader")
|
|
|
|
traderDone, err = trader.RunStrategy(strategyContext, strategy)
|
|
if err != nil {
|
|
log.WithError(err).Error("[trader] error:", err)
|
|
return
|
|
}
|
|
|
|
case event := <-watcher.Events:
|
|
log.Infof("[fsnotify] event: %+v", event)
|
|
|
|
if event.Op&fsnotify.Write == fsnotify.Write {
|
|
log.Info("[fsnotify] modified file:", event.Name)
|
|
}
|
|
|
|
if configReloadTimer != nil {
|
|
configReloadTimer.Stop()
|
|
}
|
|
|
|
configReloadTimer = time.AfterFunc(3*time.Second, func() {
|
|
strategyCancel()
|
|
})
|
|
|
|
case err := <-watcher.Errors:
|
|
log.WithError(err).Error("[fsnotify] error:", err)
|
|
return
|
|
|
|
}
|
|
}
|
|
}()
|
|
|
|
return done, nil
|
|
}
|
|
*/
|
|
|
|
/*
|
|
func (trader *OrderExecutor) RunStrategy(ctx context.Context, strategy SingleExchangeStrategy) (chan struct{}, error) {
|
|
trader.reportTimer = time.AfterFunc(1*time.Second, func() {
|
|
trader.reportPnL()
|
|
})
|
|
|
|
stream.OnTrade(func(trade *types.Trade) {
|
|
trader.NotifyTrade(trade)
|
|
trader.ProfitAndLossCalculator.AddTrade(*trade)
|
|
_, err := trader.Context.StockManager.AddTrades([]types.Trade{*trade})
|
|
if err != nil {
|
|
log.WithError(err).Error("stock manager load trades error")
|
|
}
|
|
|
|
if trader.reportTimer != nil {
|
|
trader.reportTimer.Stop()
|
|
}
|
|
|
|
trader.reportTimer = time.AfterFunc(1*time.Minute, func() {
|
|
trader.reportPnL()
|
|
})
|
|
})
|
|
}
|
|
*/
|
|
|
|
/*
|
|
func (trader *Trader) reportPnL() {
|
|
report := trader.ProfitAndLossCalculator.Calculate()
|
|
report.Print()
|
|
trader.NotifyPnL(report)
|
|
}
|
|
*/
|
|
|
|
/*
|
|
func (trader *Trader) NotifyPnL(report *accounting.ProfitAndLossReport) {
|
|
for _, n := range trader.notifiers {
|
|
n.NotifyPnL(report)
|
|
}
|
|
}
|
|
*/
|
|
|
|
/*
|
|
func (trader *Trader) NotifyTrade(trade *types.Trade) {
|
|
for _, n := range trader.notifiers {
|
|
n.NotifyTrade(trade)
|
|
}
|
|
}
|
|
*/
|
|
|
|
func (trader *Trader) SubmitOrder(ctx context.Context, order types.SubmitOrder) {
|
|
trader.Notify(":memo: Submitting %s %s %s order with quantity: %s", order.Symbol, order.Type, order.Side, order.QuantityString, order)
|
|
|
|
orderProcessor := &OrderProcessor{
|
|
MinQuoteBalance: 0,
|
|
MaxAssetBalance: 0,
|
|
MinAssetBalance: 0,
|
|
MinProfitSpread: 0,
|
|
MaxOrderAmount: 0,
|
|
// FIXME:
|
|
// Exchange: trader.Exchange,
|
|
Trader: trader,
|
|
}
|
|
|
|
err := orderProcessor.Submit(ctx, order)
|
|
|
|
if err != nil {
|
|
log.WithError(err).Errorf("order create error: side %s quantity: %s", order.Side, order.QuantityString)
|
|
return
|
|
}
|
|
}
|
|
|
|
type ExchangeOrderExecutionRouter struct {
|
|
Notifiability
|
|
|
|
sessions map[string]*ExchangeSession
|
|
}
|
|
|
|
func (e *ExchangeOrderExecutionRouter) SubmitOrderTo(ctx context.Context, session string, order types.SubmitOrder) error {
|
|
es, ok := e.sessions[session]
|
|
if !ok {
|
|
return errors.Errorf("exchange session %s not found", session)
|
|
}
|
|
|
|
e.Notify(":memo: Submitting order to %s %s %s %s with quantity: %s", session, order.Symbol, order.Type, order.Side, order.QuantityString, order)
|
|
|
|
order.PriceString = order.Market.FormatVolume(order.Price)
|
|
order.QuantityString = order.Market.FormatVolume(order.Quantity)
|
|
return es.Exchange.SubmitOrder(ctx, order)
|
|
}
|
|
|
|
// ExchangeOrderExecutor is an order executor wrapper for single exchange instance.
|
|
type ExchangeOrderExecutor struct {
|
|
Notifiability
|
|
|
|
Exchange types.Exchange
|
|
}
|
|
|
|
func (e *ExchangeOrderExecutor) SubmitOrder(ctx context.Context, order types.SubmitOrder) error {
|
|
e.Notify(":memo: Submitting %s %s %s order with quantity: %s", order.Symbol, order.Type, order.Side, order.QuantityString, order)
|
|
|
|
order.PriceString = order.Market.FormatVolume(order.Price)
|
|
order.QuantityString = order.Market.FormatVolume(order.Quantity)
|
|
return e.Exchange.SubmitOrder(ctx, order)
|
|
}
|