2020-10-16 02:14:36 +00:00
|
|
|
package bbgo
|
|
|
|
|
2020-10-18 04:23:00 +00:00
|
|
|
import (
|
2021-01-26 09:21:18 +00:00
|
|
|
"context"
|
2023-04-13 09:20:59 +00:00
|
|
|
"errors"
|
2020-12-21 05:47:40 +00:00
|
|
|
"fmt"
|
2022-04-22 10:53:06 +00:00
|
|
|
"sync"
|
2021-01-26 09:21:18 +00:00
|
|
|
"time"
|
2020-12-21 05:47:40 +00:00
|
|
|
|
2022-05-04 07:38:28 +00:00
|
|
|
"github.com/slack-go/slack"
|
|
|
|
|
2021-12-27 09:16:30 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-12-26 07:29:42 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-12-27 17:39:17 +00:00
|
|
|
"github.com/spf13/viper"
|
2021-12-26 07:29:42 +00:00
|
|
|
|
2022-06-03 18:23:23 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/cache"
|
2023-07-04 13:42:24 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/core"
|
2023-11-20 08:20:39 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/exchange/retry"
|
2022-08-22 18:12:26 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/util/templateutil"
|
2022-06-03 18:23:23 +00:00
|
|
|
|
|
|
|
exchange2 "github.com/c9s/bbgo/pkg/exchange"
|
2021-05-16 07:03:36 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2020-10-18 04:23:00 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
2021-02-19 02:42:24 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/util"
|
2020-10-18 04:23:00 +00:00
|
|
|
)
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2022-09-06 10:08:05 +00:00
|
|
|
var KLinePreloadLimit int64 = 1000
|
2022-09-05 11:36:41 +00:00
|
|
|
|
2023-04-13 09:20:59 +00:00
|
|
|
var ErrEmptyMarketInfo = errors.New("market info should not be empty, 0 markets loaded")
|
|
|
|
|
2020-11-17 00:19:22 +00:00
|
|
|
// ExchangeSession presents the exchange connection Session
|
2020-10-16 02:14:36 +00:00
|
|
|
// It also maintains and collects the data returned from the stream.
|
|
|
|
type ExchangeSession struct {
|
2021-02-02 09:26:35 +00:00
|
|
|
// ---------------------------
|
|
|
|
// Session config fields
|
|
|
|
// ---------------------------
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2021-02-02 09:26:35 +00:00
|
|
|
// Exchange Session name
|
2021-05-30 07:25:00 +00:00
|
|
|
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
2021-05-30 06:46:48 +00:00
|
|
|
ExchangeName types.ExchangeName `json:"exchange" yaml:"exchange"`
|
2021-05-30 07:25:00 +00:00
|
|
|
EnvVarPrefix string `json:"envVarPrefix" yaml:"envVarPrefix"`
|
|
|
|
Key string `json:"key,omitempty" yaml:"key,omitempty"`
|
|
|
|
Secret string `json:"secret,omitempty" yaml:"secret,omitempty"`
|
2021-12-25 15:28:00 +00:00
|
|
|
Passphrase string `json:"passphrase,omitempty" yaml:"passphrase,omitempty"`
|
2021-05-30 07:25:00 +00:00
|
|
|
SubAccount string `json:"subAccount,omitempty" yaml:"subAccount,omitempty"`
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2021-05-12 03:16:20 +00:00
|
|
|
// Withdrawal is used for enabling withdrawal functions
|
2022-08-02 03:32:26 +00:00
|
|
|
Withdrawal bool `json:"withdrawal,omitempty" yaml:"withdrawal,omitempty"`
|
|
|
|
MakerFeeRate fixedpoint.Value `json:"makerFeeRate" yaml:"makerFeeRate"`
|
|
|
|
TakerFeeRate fixedpoint.Value `json:"takerFeeRate" yaml:"takerFeeRate"`
|
|
|
|
ModifyOrderAmountForFee bool `json:"modifyOrderAmountForFee" yaml:"modifyOrderAmountForFee"`
|
2021-05-12 03:16:20 +00:00
|
|
|
|
2023-10-02 09:22:03 +00:00
|
|
|
// PublicOnly is used for setting the session to public only (without authentication, no private user data)
|
|
|
|
PublicOnly bool `json:"publicOnly,omitempty" yaml:"publicOnly"`
|
|
|
|
|
|
|
|
// PrivateChannels is used for filtering the private user data channel, .e.g, orders, trades, balances.. etc
|
2024-08-21 08:24:19 +00:00
|
|
|
// This option is exchange-specific, currently only MAX exchange reads this option
|
2023-10-02 09:22:03 +00:00
|
|
|
PrivateChannels []string `json:"privateChannels,omitempty" yaml:"privateChannels,omitempty"`
|
|
|
|
|
2023-11-14 03:22:42 +00:00
|
|
|
// PrivateChannelSymbols is used for filtering the private user data channel, .e.g, order symbol subscription.
|
2024-08-21 08:24:19 +00:00
|
|
|
// This option is exchange-specific, currently only Bitget exchange reads this option
|
2023-11-14 03:22:42 +00:00
|
|
|
PrivateChannelSymbols []string `json:"privateChannelSymbols,omitempty" yaml:"privateChannelSymbols,omitempty"`
|
|
|
|
|
2021-02-02 09:26:35 +00:00
|
|
|
Margin bool `json:"margin,omitempty" yaml:"margin"`
|
|
|
|
IsolatedMargin bool `json:"isolatedMargin,omitempty" yaml:"isolatedMargin,omitempty"`
|
|
|
|
IsolatedMarginSymbol string `json:"isolatedMarginSymbol,omitempty" yaml:"isolatedMarginSymbol,omitempty"`
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-12-13 15:16:58 +00:00
|
|
|
Futures bool `json:"futures,omitempty" yaml:"futures"`
|
|
|
|
IsolatedFutures bool `json:"isolatedFutures,omitempty" yaml:"isolatedFutures,omitempty"`
|
|
|
|
IsolatedFuturesSymbol string `json:"isolatedFuturesSymbol,omitempty" yaml:"isolatedFuturesSymbol,omitempty"`
|
|
|
|
|
2021-02-02 09:26:35 +00:00
|
|
|
// ---------------------------
|
|
|
|
// Runtime fields
|
|
|
|
// ---------------------------
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-02-02 09:26:35 +00:00
|
|
|
// The exchange account states
|
2022-04-22 10:53:06 +00:00
|
|
|
Account *types.Account `json:"-" yaml:"-"`
|
|
|
|
accountMutex sync.Mutex
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-02-03 01:34:53 +00:00
|
|
|
IsInitialized bool `json:"-" yaml:"-"`
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-05-12 10:58:20 +00:00
|
|
|
OrderExecutor *ExchangeOrderExecutor `json:"orderExecutor,omitempty" yaml:"orderExecutor,omitempty"`
|
|
|
|
|
2021-05-27 06:45:06 +00:00
|
|
|
// UserDataStream is the connection stream of the exchange
|
|
|
|
UserDataStream types.Stream `json:"-" yaml:"-"`
|
|
|
|
MarketDataStream types.Stream `json:"-" yaml:"-"`
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2021-12-25 13:04:47 +00:00
|
|
|
// Subscriptions
|
|
|
|
// this is a read-only field when running strategy
|
2021-02-02 18:26:41 +00:00
|
|
|
Subscriptions map[types.Subscription]types.Subscription `json:"-" yaml:"-"`
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2021-02-02 18:26:41 +00:00
|
|
|
Exchange types.Exchange `json:"-" yaml:"-"`
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2022-06-17 02:38:36 +00:00
|
|
|
UseHeikinAshi bool `json:"heikinAshi,omitempty" yaml:"heikinAshi,omitempty"`
|
2022-06-15 07:32:04 +00:00
|
|
|
|
2021-05-12 03:59:29 +00:00
|
|
|
// Trades collects the executed trades from the exchange
|
|
|
|
// map: symbol -> []trade
|
|
|
|
Trades map[string]*types.TradeSlice `json:"-" yaml:"-"`
|
|
|
|
|
2020-10-18 04:30:13 +00:00
|
|
|
// markets defines market configuration of a symbol
|
2021-01-25 06:32:46 +00:00
|
|
|
markets map[string]types.Market
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2021-06-10 11:05:07 +00:00
|
|
|
// orderBooks stores the streaming order book
|
|
|
|
orderBooks map[string]*types.StreamOrderBook
|
|
|
|
|
2020-11-10 11:06:20 +00:00
|
|
|
// startPrices is used for backtest
|
2022-02-02 11:37:18 +00:00
|
|
|
startPrices map[string]fixedpoint.Value
|
2020-11-10 11:06:20 +00:00
|
|
|
|
2022-02-02 11:37:18 +00:00
|
|
|
lastPrices map[string]fixedpoint.Value
|
2021-01-26 09:23:40 +00:00
|
|
|
lastPriceUpdatedAt time.Time
|
2020-10-16 02:14:36 +00:00
|
|
|
|
2020-10-28 01:13:57 +00:00
|
|
|
// marketDataStores contains the market data store of each market
|
2021-01-25 06:32:46 +00:00
|
|
|
marketDataStores map[string]*MarketDataStore
|
2020-10-22 02:54:03 +00:00
|
|
|
|
2021-12-11 11:16:16 +00:00
|
|
|
positions map[string]*types.Position
|
2021-01-20 08:28:27 +00:00
|
|
|
|
2020-10-28 01:13:57 +00:00
|
|
|
// standard indicators of each market
|
2021-01-25 06:32:46 +00:00
|
|
|
standardIndicatorSets map[string]*StandardIndicatorSet
|
2020-10-28 01:13:57 +00:00
|
|
|
|
2023-06-29 09:49:04 +00:00
|
|
|
// indicators is the v2 api indicators
|
|
|
|
indicators map[string]*IndicatorSet
|
|
|
|
|
2023-07-04 13:42:24 +00:00
|
|
|
orderStores map[string]*core.OrderStore
|
2021-01-21 06:51:37 +00:00
|
|
|
|
2021-01-30 02:51:01 +00:00
|
|
|
usedSymbols map[string]struct{}
|
|
|
|
initializedSymbols map[string]struct{}
|
2021-02-01 09:13:54 +00:00
|
|
|
|
2023-09-25 09:16:27 +00:00
|
|
|
logger log.FieldLogger
|
2020-10-17 15:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewExchangeSession(name string, exchange types.Exchange) *ExchangeSession {
|
2021-05-27 07:11:44 +00:00
|
|
|
userDataStream := exchange.NewStream()
|
|
|
|
marketDataStream := exchange.NewStream()
|
|
|
|
marketDataStream.SetPublicOnly()
|
|
|
|
|
2021-05-12 03:59:29 +00:00
|
|
|
session := &ExchangeSession{
|
2021-05-27 06:45:06 +00:00
|
|
|
Name: name,
|
|
|
|
Exchange: exchange,
|
2021-05-27 07:11:44 +00:00
|
|
|
UserDataStream: userDataStream,
|
|
|
|
MarketDataStream: marketDataStream,
|
2021-05-27 06:45:06 +00:00
|
|
|
Subscriptions: make(map[types.Subscription]types.Subscription),
|
|
|
|
Account: &types.Account{},
|
|
|
|
Trades: make(map[string]*types.TradeSlice),
|
2020-10-28 08:27:25 +00:00
|
|
|
|
2021-06-10 11:05:07 +00:00
|
|
|
orderBooks: make(map[string]*types.StreamOrderBook),
|
2020-10-28 08:27:25 +00:00
|
|
|
markets: make(map[string]types.Market),
|
2022-02-02 11:37:18 +00:00
|
|
|
startPrices: make(map[string]fixedpoint.Value),
|
|
|
|
lastPrices: make(map[string]fixedpoint.Value),
|
2021-12-11 11:16:16 +00:00
|
|
|
positions: make(map[string]*types.Position),
|
2020-10-28 08:27:25 +00:00
|
|
|
marketDataStores: make(map[string]*MarketDataStore),
|
|
|
|
standardIndicatorSets: make(map[string]*StandardIndicatorSet),
|
2023-06-29 09:49:04 +00:00
|
|
|
indicators: make(map[string]*IndicatorSet),
|
2023-07-04 13:42:24 +00:00
|
|
|
orderStores: make(map[string]*core.OrderStore),
|
2021-01-30 12:03:59 +00:00
|
|
|
usedSymbols: make(map[string]struct{}),
|
|
|
|
initializedSymbols: make(map[string]struct{}),
|
2021-02-01 09:13:54 +00:00
|
|
|
logger: log.WithField("session", name),
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
2021-05-12 03:59:29 +00:00
|
|
|
|
2021-05-12 10:58:20 +00:00
|
|
|
session.OrderExecutor = &ExchangeOrderExecutor{
|
2021-05-12 03:59:29 +00:00
|
|
|
// copy the notification system so that we can route
|
2022-07-05 19:04:01 +00:00
|
|
|
Session: session,
|
2021-05-12 03:59:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return session
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 07:00:04 +00:00
|
|
|
func (session *ExchangeSession) GetAccount() (a *types.Account) {
|
|
|
|
session.accountMutex.Lock()
|
|
|
|
a = session.Account
|
|
|
|
session.accountMutex.Unlock()
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2022-04-22 10:53:06 +00:00
|
|
|
// UpdateAccount locks the account mutex and update the account object
|
2022-06-01 17:27:04 +00:00
|
|
|
func (session *ExchangeSession) UpdateAccount(ctx context.Context) (*types.Account, error) {
|
2022-04-22 10:53:06 +00:00
|
|
|
account, err := session.Exchange.QueryAccount(ctx)
|
|
|
|
if err != nil {
|
2022-06-01 17:27:04 +00:00
|
|
|
return nil, err
|
2022-04-22 10:53:06 +00:00
|
|
|
}
|
2022-06-01 17:27:04 +00:00
|
|
|
|
2023-11-20 08:15:33 +00:00
|
|
|
session.setAccount(account)
|
|
|
|
return account, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) setAccount(a *types.Account) {
|
2022-04-22 10:53:06 +00:00
|
|
|
session.accountMutex.Lock()
|
2023-11-20 08:15:33 +00:00
|
|
|
session.Account = a
|
2022-04-22 10:53:06 +00:00
|
|
|
session.accountMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
2021-05-02 15:58:34 +00:00
|
|
|
// Init initializes the basic data structure and market information by its exchange.
|
|
|
|
// Note that the subscribed symbols are not loaded in this stage.
|
2021-01-30 02:51:01 +00:00
|
|
|
func (session *ExchangeSession) Init(ctx context.Context, environ *Environment) error {
|
|
|
|
if session.IsInitialized {
|
2021-02-02 18:26:41 +00:00
|
|
|
return ErrSessionAlreadyInitialized
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
|
|
|
|
2023-09-25 09:16:27 +00:00
|
|
|
var logger = environ.Logger()
|
|
|
|
logger = logger.WithField("session", session.Name)
|
|
|
|
|
|
|
|
// override the default logger
|
|
|
|
session.logger = logger
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-12-08 09:26:25 +00:00
|
|
|
// load markets first
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.Infof("querying market info from %s...", session.Name)
|
2021-12-08 09:26:25 +00:00
|
|
|
|
|
|
|
var disableMarketsCache = false
|
|
|
|
var markets types.MarketMap
|
|
|
|
var err error
|
|
|
|
if util.SetEnvVarBool("DISABLE_MARKETS_CACHE", &disableMarketsCache); disableMarketsCache {
|
|
|
|
markets, err = session.Exchange.QueryMarkets(ctx)
|
2021-03-22 07:46:55 +00:00
|
|
|
} else {
|
2022-01-14 08:10:05 +00:00
|
|
|
markets, err = cache.LoadExchangeMarketsWithCache(ctx, session.Exchange)
|
2021-03-22 07:46:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-08 09:26:25 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-12-08 09:26:25 +00:00
|
|
|
if len(markets) == 0 {
|
2023-04-13 09:20:59 +00:00
|
|
|
return ErrEmptyMarketInfo
|
2021-03-22 07:46:55 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-12-08 09:26:25 +00:00
|
|
|
session.markets = markets
|
|
|
|
|
2022-06-02 19:24:34 +00:00
|
|
|
if feeRateProvider, ok := session.Exchange.(types.ExchangeDefaultFeeRates); ok {
|
|
|
|
defaultFeeRates := feeRateProvider.DefaultFeeRates()
|
|
|
|
if session.MakerFeeRate.IsZero() {
|
|
|
|
session.MakerFeeRate = defaultFeeRates.MakerFeeRate
|
|
|
|
}
|
|
|
|
if session.TakerFeeRate.IsZero() {
|
|
|
|
session.TakerFeeRate = defaultFeeRates.TakerFeeRate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-02 03:32:26 +00:00
|
|
|
if session.ModifyOrderAmountForFee {
|
|
|
|
amountProtectExchange, ok := session.Exchange.(types.ExchangeAmountFeeProtect)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("exchange %s does not support order amount protection", session.ExchangeName.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
fees := types.ExchangeFee{MakerFeeRate: session.MakerFeeRate, TakerFeeRate: session.TakerFeeRate}
|
|
|
|
amountProtectExchange.SetModifyOrderAmountForFee(fees)
|
|
|
|
}
|
|
|
|
|
2022-06-15 07:32:04 +00:00
|
|
|
if session.UseHeikinAshi {
|
|
|
|
session.MarketDataStream = &types.HeikinAshiStream{
|
|
|
|
StandardStreamEmitter: session.MarketDataStream.(types.StandardStreamEmitter),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 18:26:41 +00:00
|
|
|
// query and initialize the balances
|
2021-12-26 07:29:42 +00:00
|
|
|
if !session.PublicOnly {
|
2023-10-02 09:22:03 +00:00
|
|
|
if len(session.PrivateChannels) > 0 {
|
|
|
|
if setter, ok := session.UserDataStream.(types.PrivateChannelSetter); ok {
|
|
|
|
setter.SetPrivateChannels(session.PrivateChannels)
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 03:22:42 +00:00
|
|
|
if len(session.PrivateChannelSymbols) > 0 {
|
|
|
|
if setter, ok := session.UserDataStream.(types.PrivateChannelSymbolSetter); ok {
|
|
|
|
setter.SetPrivateChannelSymbols(session.PrivateChannelSymbols)
|
|
|
|
}
|
|
|
|
}
|
2023-04-13 09:20:59 +00:00
|
|
|
|
2023-11-20 08:14:09 +00:00
|
|
|
disableStartupBalanceQuery := environ.environmentConfig != nil && environ.environmentConfig.DisableStartupBalanceQuery
|
|
|
|
if disableStartupBalanceQuery {
|
|
|
|
session.accountMutex.Lock()
|
|
|
|
session.Account = types.NewAccount()
|
|
|
|
session.accountMutex.Unlock()
|
|
|
|
} else {
|
|
|
|
logger.Infof("querying account balances...")
|
2023-11-20 08:20:39 +00:00
|
|
|
account, err := retry.QueryAccountUntilSuccessful(ctx, session.Exchange)
|
2023-11-20 08:14:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-20 08:15:33 +00:00
|
|
|
session.setAccount(account)
|
2023-11-20 08:20:39 +00:00
|
|
|
session.metricsBalancesUpdater(account.Balances())
|
2023-11-20 08:15:33 +00:00
|
|
|
logger.Infof("account %s balances:\n%s", session.Name, account.Balances().String())
|
2023-11-20 08:14:09 +00:00
|
|
|
}
|
2022-04-22 07:14:44 +00:00
|
|
|
|
2021-12-26 07:29:42 +00:00
|
|
|
// forward trade updates and order updates to the order executor
|
|
|
|
session.UserDataStream.OnTradeUpdate(session.OrderExecutor.EmitTradeUpdate)
|
|
|
|
session.UserDataStream.OnOrderUpdate(session.OrderExecutor.EmitOrderUpdate)
|
2022-04-22 10:53:06 +00:00
|
|
|
|
|
|
|
session.UserDataStream.OnBalanceSnapshot(func(balances types.BalanceMap) {
|
|
|
|
session.accountMutex.Lock()
|
|
|
|
session.Account.UpdateBalances(balances)
|
|
|
|
session.accountMutex.Unlock()
|
|
|
|
})
|
|
|
|
|
|
|
|
session.UserDataStream.OnBalanceUpdate(func(balances types.BalanceMap) {
|
|
|
|
session.accountMutex.Lock()
|
|
|
|
session.Account.UpdateBalances(balances)
|
|
|
|
session.accountMutex.Unlock()
|
|
|
|
})
|
2021-12-27 09:16:30 +00:00
|
|
|
|
2021-12-30 09:25:47 +00:00
|
|
|
session.bindConnectionStatusNotification(session.UserDataStream, "user data")
|
|
|
|
|
2021-12-27 17:39:17 +00:00
|
|
|
// if metrics mode is enabled, we bind the callbacks to update metrics
|
|
|
|
if viper.GetBool("metrics") {
|
|
|
|
session.bindUserDataStreamMetrics(session.UserDataStream)
|
|
|
|
}
|
2021-12-26 07:29:42 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-02-22 07:25:39 +00:00
|
|
|
if environ.loggingConfig != nil {
|
2023-10-02 09:35:10 +00:00
|
|
|
if environ.loggingConfig.Balance {
|
|
|
|
session.UserDataStream.OnBalanceSnapshot(func(balances types.BalanceMap) {
|
|
|
|
logger.Info(balances.String())
|
|
|
|
})
|
|
|
|
session.UserDataStream.OnBalanceUpdate(func(balances types.BalanceMap) {
|
|
|
|
logger.Info(balances.String())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-02-22 07:25:39 +00:00
|
|
|
if environ.loggingConfig.Trade {
|
|
|
|
session.UserDataStream.OnTradeUpdate(func(trade types.Trade) {
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.Info(trade.String())
|
2023-02-22 07:25:39 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-09-26 08:45:00 +00:00
|
|
|
if environ.loggingConfig.FilledOrderOnly {
|
|
|
|
session.UserDataStream.OnOrderUpdate(func(order types.Order) {
|
|
|
|
if order.Status == types.OrderStatusFilled {
|
|
|
|
logger.Info(order.String())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else if environ.loggingConfig.Order {
|
2023-02-22 07:25:39 +00:00
|
|
|
session.UserDataStream.OnOrderUpdate(func(order types.Order) {
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.Info(order.String())
|
2023-02-22 07:25:39 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if logging config is nil, then apply default logging setup
|
|
|
|
// add trade logger
|
|
|
|
session.UserDataStream.OnTradeUpdate(func(trade types.Trade) {
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.Info(trade.String())
|
2023-02-22 07:25:39 +00:00
|
|
|
})
|
|
|
|
}
|
2022-01-12 03:19:41 +00:00
|
|
|
|
2021-12-31 07:13:26 +00:00
|
|
|
if viper.GetBool("debug-kline") {
|
|
|
|
session.MarketDataStream.OnKLine(func(kline types.KLine) {
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.WithField("marketData", "kline").Infof("kline: %+v", kline)
|
2021-12-31 07:13:26 +00:00
|
|
|
})
|
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
2023-09-25 09:16:27 +00:00
|
|
|
logger.WithField("marketData", "kline").Infof("kline closed: %+v", kline)
|
2021-12-31 07:13:26 +00:00
|
|
|
})
|
|
|
|
}
|
2021-12-15 03:23:07 +00:00
|
|
|
|
2021-01-30 02:51:01 +00:00
|
|
|
// update last prices
|
2022-06-15 07:32:04 +00:00
|
|
|
if session.UseHeikinAshi {
|
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
|
|
|
if _, ok := session.startPrices[kline.Symbol]; !ok {
|
|
|
|
session.startPrices[kline.Symbol] = kline.Open
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2022-06-15 07:32:04 +00:00
|
|
|
session.lastPrices[kline.Symbol] = session.MarketDataStream.(*types.HeikinAshiStream).LastOrigin[kline.Symbol][kline.Interval].Close
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
|
|
|
if _, ok := session.startPrices[kline.Symbol]; !ok {
|
|
|
|
session.startPrices[kline.Symbol] = kline.Open
|
|
|
|
}
|
|
|
|
|
|
|
|
session.lastPrices[kline.Symbol] = kline.Close
|
|
|
|
})
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2022-03-18 08:17:04 +00:00
|
|
|
session.MarketDataStream.OnMarketTrade(func(trade types.Trade) {
|
|
|
|
session.lastPrices[trade.Symbol] = trade.Price
|
|
|
|
})
|
|
|
|
|
2021-05-02 15:58:34 +00:00
|
|
|
session.IsInitialized = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) InitSymbols(ctx context.Context, environ *Environment) error {
|
2021-04-09 04:43:13 +00:00
|
|
|
if err := session.initUsedSymbols(ctx, environ); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-30 02:51:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-09 04:43:13 +00:00
|
|
|
// initUsedSymbols uses usedSymbols to initialize the related data structure
|
|
|
|
func (session *ExchangeSession) initUsedSymbols(ctx context.Context, environ *Environment) error {
|
2021-01-30 02:51:01 +00:00
|
|
|
for symbol := range session.usedSymbols {
|
2021-05-02 15:58:34 +00:00
|
|
|
if err := session.initSymbol(ctx, environ, symbol); err != nil {
|
2021-01-30 02:51:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-05-02 15:58:34 +00:00
|
|
|
// initSymbol loads trades for the symbol, bind stream callbacks, init positions, market data store.
|
|
|
|
// please note, initSymbol can not be called for the same symbol for twice
|
|
|
|
func (session *ExchangeSession) initSymbol(ctx context.Context, environ *Environment, symbol string) error {
|
2021-01-30 02:51:01 +00:00
|
|
|
if _, ok := session.initializedSymbols[symbol]; ok {
|
2021-04-09 04:43:13 +00:00
|
|
|
// return fmt.Errorf("symbol %s is already initialized", symbol)
|
|
|
|
return nil
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
market, ok := session.markets[symbol]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("market %s is not defined", symbol)
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:03:05 +00:00
|
|
|
session.logger.Infof("environment config: %+v", environ.environmentConfig)
|
2024-09-09 06:48:14 +00:00
|
|
|
|
2023-12-26 02:53:18 +00:00
|
|
|
disableMarketDataStore := environ.environmentConfig != nil && environ.environmentConfig.DisableMarketDataStore
|
2023-11-17 09:11:22 +00:00
|
|
|
disableSessionTradeBuffer := environ.environmentConfig != nil && environ.environmentConfig.DisableSessionTradeBuffer
|
|
|
|
maxSessionTradeBufferSize := 0
|
|
|
|
if environ.environmentConfig != nil && environ.environmentConfig.MaxSessionTradeBufferSize > 0 {
|
|
|
|
maxSessionTradeBufferSize = environ.environmentConfig.MaxSessionTradeBufferSize
|
|
|
|
}
|
|
|
|
|
2023-11-17 09:05:44 +00:00
|
|
|
session.Trades[symbol] = &types.TradeSlice{Trades: nil}
|
2023-07-12 09:16:46 +00:00
|
|
|
|
2023-11-17 09:11:22 +00:00
|
|
|
if !disableSessionTradeBuffer {
|
|
|
|
session.UserDataStream.OnTradeUpdate(func(trade types.Trade) {
|
|
|
|
if trade.Symbol != symbol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
session.Trades[symbol].Append(trade)
|
|
|
|
|
|
|
|
if maxSessionTradeBufferSize > 0 {
|
|
|
|
session.Trades[symbol].Truncate(maxSessionTradeBufferSize)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-17 09:05:44 +00:00
|
|
|
// session wide position
|
2021-12-11 11:16:16 +00:00
|
|
|
position := &types.Position{
|
2021-01-30 02:51:01 +00:00
|
|
|
Symbol: symbol,
|
|
|
|
BaseCurrency: market.BaseCurrency,
|
|
|
|
QuoteCurrency: market.QuoteCurrency,
|
|
|
|
}
|
2021-05-27 06:45:06 +00:00
|
|
|
position.BindStream(session.UserDataStream)
|
2021-01-30 02:51:01 +00:00
|
|
|
session.positions[symbol] = position
|
|
|
|
|
2023-07-04 13:42:24 +00:00
|
|
|
orderStore := core.NewOrderStore(symbol)
|
2021-01-30 02:51:01 +00:00
|
|
|
orderStore.AddOrderUpdate = true
|
2021-05-27 06:45:06 +00:00
|
|
|
orderStore.BindStream(session.UserDataStream)
|
2021-01-30 02:51:01 +00:00
|
|
|
session.orderStores[symbol] = orderStore
|
|
|
|
|
2023-12-26 02:53:18 +00:00
|
|
|
marketDataStore := NewMarketDataStore(symbol)
|
|
|
|
if !disableMarketDataStore {
|
|
|
|
if _, ok := session.marketDataStores[symbol]; !ok {
|
|
|
|
marketDataStore.BindStream(session.MarketDataStream)
|
|
|
|
}
|
2022-07-21 04:35:38 +00:00
|
|
|
}
|
2023-12-26 02:53:18 +00:00
|
|
|
session.marketDataStores[symbol] = marketDataStore
|
2022-07-21 04:36:26 +00:00
|
|
|
|
2022-07-21 04:35:38 +00:00
|
|
|
if _, ok := session.standardIndicatorSets[symbol]; !ok {
|
|
|
|
standardIndicatorSet := NewStandardIndicatorSet(symbol, session.MarketDataStream, marketDataStore)
|
|
|
|
session.standardIndicatorSets[symbol] = standardIndicatorSet
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
|
|
|
// used kline intervals by the given symbol
|
2021-06-10 11:05:07 +00:00
|
|
|
var klineSubscriptions = map[types.Interval]struct{}{}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2022-10-19 04:17:44 +00:00
|
|
|
minInterval := types.Interval1m
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2021-11-21 18:14:44 +00:00
|
|
|
// Aggregate the intervals that we are using in the subscriptions.
|
2021-01-30 02:51:01 +00:00
|
|
|
for _, sub := range session.Subscriptions {
|
2021-06-10 11:05:07 +00:00
|
|
|
switch sub.Channel {
|
|
|
|
case types.BookChannel:
|
2024-08-24 05:45:01 +00:00
|
|
|
book := types.NewStreamBook(sub.Symbol, session.ExchangeName)
|
2021-06-10 11:05:07 +00:00
|
|
|
book.BindStream(session.MarketDataStream)
|
|
|
|
session.orderBooks[sub.Symbol] = book
|
|
|
|
|
|
|
|
case types.KLineChannel:
|
|
|
|
if sub.Options.Interval == "" {
|
|
|
|
continue
|
|
|
|
}
|
2021-02-13 08:03:11 +00:00
|
|
|
|
2022-10-19 04:17:44 +00:00
|
|
|
if minInterval.Seconds() > sub.Options.Interval.Seconds() {
|
|
|
|
minInterval = sub.Options.Interval
|
|
|
|
}
|
|
|
|
|
2021-06-10 11:05:07 +00:00
|
|
|
if sub.Symbol == symbol {
|
2023-11-10 23:42:29 +00:00
|
|
|
klineSubscriptions[sub.Options.Interval] = struct{}{}
|
2021-06-10 11:05:07 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
2020-10-17 15:51:44 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
if !(environ.environmentConfig != nil && environ.environmentConfig.DisableDefaultKLineSubscription) {
|
|
|
|
// subscribe the 1m kline by default so we can make sure the connection persists.
|
|
|
|
klineSubscriptions[minInterval] = struct{}{}
|
|
|
|
}
|
2022-09-05 11:36:41 +00:00
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
if !(environ.environmentConfig != nil && environ.environmentConfig.DisableHistoryKLinePreload) {
|
|
|
|
for interval := range klineSubscriptions {
|
|
|
|
// avoid querying the last unclosed kline
|
|
|
|
endTime := environ.startTime
|
|
|
|
var i int64
|
|
|
|
for i = 0; i < KLinePreloadLimit; i += 1000 {
|
|
|
|
var duration time.Duration = time.Duration(-i * int64(interval.Duration()))
|
|
|
|
e := endTime.Add(duration)
|
|
|
|
|
|
|
|
kLines, err := session.Exchange.QueryKLines(ctx, symbol, interval, types.KLineQueryOptions{
|
|
|
|
EndTime: &e,
|
|
|
|
Limit: 1000, // indicators need at least 100
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
if len(kLines) == 0 {
|
|
|
|
log.Warnf("no kline data for %s %s (end time <= %s)", symbol, interval, e)
|
|
|
|
continue
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
// update last prices by the given kline
|
|
|
|
lastKLine := kLines[len(kLines)-1]
|
|
|
|
if interval == minInterval {
|
|
|
|
session.lastPrices[symbol] = lastKLine.Close
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
for _, k := range kLines {
|
|
|
|
// let market data store trigger the update, so that the indicator could be updated too.
|
|
|
|
marketDataStore.AddKLine(k)
|
|
|
|
}
|
2022-09-05 11:36:41 +00:00
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
}
|
|
|
|
|
2023-11-10 23:42:29 +00:00
|
|
|
log.Infof("%s last price: %v", symbol, session.lastPrices[symbol])
|
|
|
|
}
|
2021-01-30 02:51:01 +00:00
|
|
|
|
|
|
|
session.initializedSymbols[symbol] = struct{}{}
|
|
|
|
return nil
|
2020-10-16 02:14:36 +00:00
|
|
|
}
|
|
|
|
|
2023-06-29 09:49:04 +00:00
|
|
|
// Indicators returns the IndicatorSet struct that maintains the kLines stream cache and price stream cache
|
|
|
|
// It also provides helper methods
|
|
|
|
func (session *ExchangeSession) Indicators(symbol string) *IndicatorSet {
|
|
|
|
set, ok := session.indicators[symbol]
|
|
|
|
if ok {
|
|
|
|
return set
|
|
|
|
}
|
|
|
|
|
|
|
|
store, _ := session.MarketDataStore(symbol)
|
|
|
|
set = NewIndicatorSet(symbol, session.MarketDataStream, store)
|
|
|
|
session.indicators[symbol] = set
|
|
|
|
return set
|
|
|
|
}
|
|
|
|
|
2022-07-26 10:35:50 +00:00
|
|
|
func (session *ExchangeSession) StandardIndicatorSet(symbol string) *StandardIndicatorSet {
|
2023-07-01 05:24:23 +00:00
|
|
|
log.Warnf("StandardIndicatorSet() is deprecated in v1.49.0 and which will be removed in the next version, please use Indicators() instead")
|
|
|
|
|
2020-10-28 01:13:57 +00:00
|
|
|
set, ok := session.standardIndicatorSets[symbol]
|
2022-07-26 10:35:50 +00:00
|
|
|
if ok {
|
|
|
|
return set
|
2022-07-21 04:18:09 +00:00
|
|
|
}
|
|
|
|
|
2022-07-26 10:35:50 +00:00
|
|
|
store, _ := session.MarketDataStore(symbol)
|
|
|
|
set = NewStandardIndicatorSet(symbol, session.MarketDataStream, store)
|
|
|
|
session.standardIndicatorSets[symbol] = set
|
|
|
|
return set
|
2020-10-28 01:13:57 +00:00
|
|
|
}
|
|
|
|
|
2021-12-11 11:16:16 +00:00
|
|
|
func (session *ExchangeSession) Position(symbol string) (pos *types.Position, ok bool) {
|
2021-01-20 08:29:15 +00:00
|
|
|
pos, ok = session.positions[symbol]
|
2021-04-28 11:32:49 +00:00
|
|
|
if ok {
|
|
|
|
return pos, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
market, ok := session.markets[symbol]
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2021-12-11 11:16:16 +00:00
|
|
|
pos = &types.Position{
|
2021-04-28 11:32:49 +00:00
|
|
|
Symbol: symbol,
|
|
|
|
BaseCurrency: market.BaseCurrency,
|
|
|
|
QuoteCurrency: market.QuoteCurrency,
|
|
|
|
}
|
|
|
|
ok = true
|
|
|
|
session.positions[symbol] = pos
|
2021-01-20 08:29:15 +00:00
|
|
|
return pos, ok
|
|
|
|
}
|
|
|
|
|
2021-12-11 11:16:16 +00:00
|
|
|
func (session *ExchangeSession) Positions() map[string]*types.Position {
|
2021-02-02 18:26:41 +00:00
|
|
|
return session.positions
|
|
|
|
}
|
|
|
|
|
2020-10-18 12:41:17 +00:00
|
|
|
// MarketDataStore returns the market data store of a symbol
|
2020-10-28 08:27:25 +00:00
|
|
|
func (session *ExchangeSession) MarketDataStore(symbol string) (s *MarketDataStore, ok bool) {
|
2020-10-18 12:24:16 +00:00
|
|
|
s, ok = session.marketDataStores[symbol]
|
2023-09-26 12:42:00 +00:00
|
|
|
if ok {
|
2022-07-21 04:33:29 +00:00
|
|
|
return s, true
|
|
|
|
}
|
2023-09-26 12:42:00 +00:00
|
|
|
|
|
|
|
s = NewMarketDataStore(symbol)
|
|
|
|
s.BindStream(session.MarketDataStream)
|
|
|
|
session.marketDataStores[symbol] = s
|
|
|
|
return s, true
|
2020-10-18 04:27:11 +00:00
|
|
|
}
|
|
|
|
|
2022-09-02 03:05:00 +00:00
|
|
|
// KLine updates will be received in the order listend in intervals array
|
2023-09-25 09:16:27 +00:00
|
|
|
func (session *ExchangeSession) SerialMarketDataStore(
|
|
|
|
ctx context.Context, symbol string, intervals []types.Interval, useAggTrade ...bool,
|
|
|
|
) (store *SerialMarketDataStore, ok bool) {
|
2022-09-02 03:05:00 +00:00
|
|
|
st, ok := session.MarketDataStore(symbol)
|
|
|
|
if !ok {
|
|
|
|
return nil, false
|
|
|
|
}
|
2022-10-19 04:17:44 +00:00
|
|
|
minInterval := types.Interval1m
|
|
|
|
for _, i := range intervals {
|
|
|
|
if minInterval.Seconds() > i.Seconds() {
|
|
|
|
minInterval = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
store = NewSerialMarketDataStore(symbol, minInterval, useAggTrade...)
|
|
|
|
klines, ok := st.KLinesOfInterval(minInterval)
|
2022-09-02 03:05:00 +00:00
|
|
|
if !ok {
|
2022-10-19 04:17:44 +00:00
|
|
|
log.Errorf("SerialMarketDataStore: cannot get %s history", minInterval)
|
2022-09-02 03:05:00 +00:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
for _, interval := range intervals {
|
|
|
|
store.Subscribe(interval)
|
|
|
|
}
|
|
|
|
for _, kline := range *klines {
|
|
|
|
store.AddKLine(kline)
|
|
|
|
}
|
2022-10-19 04:17:44 +00:00
|
|
|
store.BindStream(ctx, session.MarketDataStream)
|
2022-09-02 03:05:00 +00:00
|
|
|
return store, true
|
|
|
|
}
|
|
|
|
|
2022-05-12 10:40:48 +00:00
|
|
|
// OrderBook returns the personal orderbook of a symbol
|
2021-06-10 11:05:07 +00:00
|
|
|
func (session *ExchangeSession) OrderBook(symbol string) (s *types.StreamOrderBook, ok bool) {
|
|
|
|
s, ok = session.orderBooks[symbol]
|
|
|
|
return s, ok
|
|
|
|
}
|
|
|
|
|
2022-02-03 11:19:56 +00:00
|
|
|
func (session *ExchangeSession) StartPrice(symbol string) (price fixedpoint.Value, ok bool) {
|
2020-11-10 11:06:20 +00:00
|
|
|
price, ok = session.startPrices[symbol]
|
|
|
|
return price, ok
|
|
|
|
}
|
|
|
|
|
2022-02-03 11:19:56 +00:00
|
|
|
func (session *ExchangeSession) LastPrice(symbol string) (price fixedpoint.Value, ok bool) {
|
2020-10-18 04:29:38 +00:00
|
|
|
price, ok = session.lastPrices[symbol]
|
|
|
|
return price, ok
|
|
|
|
}
|
|
|
|
|
2022-05-11 05:59:44 +00:00
|
|
|
func (session *ExchangeSession) AllLastPrices() map[string]fixedpoint.Value {
|
|
|
|
return session.lastPrices
|
|
|
|
}
|
|
|
|
|
2022-02-03 11:19:56 +00:00
|
|
|
func (session *ExchangeSession) LastPrices() map[string]fixedpoint.Value {
|
2021-02-02 18:26:41 +00:00
|
|
|
return session.lastPrices
|
|
|
|
}
|
|
|
|
|
2020-10-18 04:29:38 +00:00
|
|
|
func (session *ExchangeSession) Market(symbol string) (market types.Market, ok bool) {
|
2020-10-18 04:30:13 +00:00
|
|
|
market, ok = session.markets[symbol]
|
2020-10-18 04:29:38 +00:00
|
|
|
return market, ok
|
|
|
|
}
|
|
|
|
|
2023-12-18 14:01:11 +00:00
|
|
|
func (session *ExchangeSession) Markets() types.MarketMap {
|
2021-02-02 18:26:41 +00:00
|
|
|
return session.markets
|
|
|
|
}
|
|
|
|
|
2024-03-19 07:29:18 +00:00
|
|
|
func (session *ExchangeSession) SetMarkets(markets types.MarketMap) {
|
|
|
|
session.markets = markets
|
|
|
|
}
|
|
|
|
|
2023-07-04 13:42:24 +00:00
|
|
|
func (session *ExchangeSession) OrderStore(symbol string) (store *core.OrderStore, ok bool) {
|
2021-01-24 11:08:12 +00:00
|
|
|
store, ok = session.orderStores[symbol]
|
|
|
|
return store, ok
|
|
|
|
}
|
|
|
|
|
2023-07-04 13:42:24 +00:00
|
|
|
func (session *ExchangeSession) OrderStores() map[string]*core.OrderStore {
|
2021-02-02 18:26:41 +00:00
|
|
|
return session.orderStores
|
|
|
|
}
|
|
|
|
|
2020-10-16 02:14:36 +00:00
|
|
|
// Subscribe save the subscription info, later it will be assigned to the stream
|
2023-09-25 09:16:27 +00:00
|
|
|
func (session *ExchangeSession) Subscribe(
|
|
|
|
channel types.Channel, symbol string, options types.SubscribeOptions,
|
|
|
|
) *ExchangeSession {
|
2021-02-13 08:03:11 +00:00
|
|
|
if channel == types.KLineChannel && len(options.Interval) == 0 {
|
|
|
|
panic("subscription interval for kline can not be empty")
|
|
|
|
}
|
|
|
|
|
2020-10-16 02:14:36 +00:00
|
|
|
sub := types.Subscription{
|
|
|
|
Channel: channel,
|
|
|
|
Symbol: symbol,
|
|
|
|
Options: options,
|
|
|
|
}
|
|
|
|
|
2020-10-28 08:27:25 +00:00
|
|
|
// add to the loaded symbol table
|
2021-01-30 02:51:01 +00:00
|
|
|
session.usedSymbols[symbol] = struct{}{}
|
2020-10-16 02:14:36 +00:00
|
|
|
session.Subscriptions[sub] = sub
|
|
|
|
return session
|
|
|
|
}
|
2020-12-21 05:47:40 +00:00
|
|
|
|
|
|
|
func (session *ExchangeSession) FormatOrder(order types.SubmitOrder) (types.SubmitOrder, error) {
|
|
|
|
market, ok := session.Market(order.Symbol)
|
|
|
|
if !ok {
|
|
|
|
return order, fmt.Errorf("market is not defined: %s", order.Symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
order.Market = market
|
|
|
|
return order, nil
|
|
|
|
}
|
2021-01-26 09:21:18 +00:00
|
|
|
|
2022-05-04 06:23:09 +00:00
|
|
|
func (session *ExchangeSession) UpdatePrices(ctx context.Context, currencies []string, fiat string) (err error) {
|
2022-05-04 09:17:09 +00:00
|
|
|
// TODO: move this cache check to the http routes
|
|
|
|
// if session.lastPriceUpdatedAt.After(time.Now().Add(-time.Hour)) {
|
|
|
|
// return nil
|
|
|
|
// }
|
2021-01-26 09:23:40 +00:00
|
|
|
|
2023-12-18 14:01:11 +00:00
|
|
|
markets := session.Markets()
|
2021-12-13 23:19:21 +00:00
|
|
|
var symbols []string
|
2022-05-04 06:23:09 +00:00
|
|
|
for _, c := range currencies {
|
2023-12-18 14:09:04 +00:00
|
|
|
possibleSymbols := findPossibleMarketSymbols(markets, c, fiat)
|
|
|
|
symbols = append(symbols, possibleSymbols...)
|
2023-12-18 14:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(symbols) == 0 {
|
|
|
|
return nil
|
2021-02-06 21:11:58 +00:00
|
|
|
}
|
2021-01-26 09:21:18 +00:00
|
|
|
|
2021-02-06 21:11:58 +00:00
|
|
|
tickers, err := session.Exchange.QueryTickers(ctx, symbols...)
|
|
|
|
if err != nil || len(tickers) == 0 {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-26 09:21:18 +00:00
|
|
|
|
2022-03-18 09:13:37 +00:00
|
|
|
var lastTime time.Time
|
2021-02-06 21:11:58 +00:00
|
|
|
for k, v := range tickers {
|
2022-03-18 09:13:37 +00:00
|
|
|
// for {Crypto}/USDT markets
|
2023-12-18 14:01:11 +00:00
|
|
|
// map things like BTCUSDT = {price}
|
|
|
|
if market, ok := markets[k]; ok {
|
|
|
|
if types.IsFiatCurrency(market.BaseCurrency) {
|
|
|
|
session.lastPrices[k] = v.Last.Div(fixedpoint.One)
|
|
|
|
} else {
|
|
|
|
session.lastPrices[k] = v.Last
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
session.lastPrices[k] = v.Last
|
|
|
|
}
|
|
|
|
|
2022-03-18 09:13:37 +00:00
|
|
|
if v.Time.After(lastTime) {
|
|
|
|
lastTime = v.Time
|
|
|
|
}
|
2021-01-26 09:21:18 +00:00
|
|
|
}
|
|
|
|
|
2022-03-18 09:13:37 +00:00
|
|
|
session.lastPriceUpdatedAt = lastTime
|
2021-01-26 09:21:18 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-02-19 02:42:24 +00:00
|
|
|
|
2023-12-18 14:09:04 +00:00
|
|
|
func (session *ExchangeSession) FindPossibleAssetSymbols() (symbols []string, err error) {
|
2021-02-19 02:42:24 +00:00
|
|
|
// If the session is an isolated margin session, there will be only the isolated margin symbol
|
2021-02-22 07:01:05 +00:00
|
|
|
if session.Margin && session.IsolatedMargin {
|
2021-02-19 02:42:24 +00:00
|
|
|
return []string{
|
|
|
|
session.IsolatedMarginSymbol,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-04-23 07:43:11 +00:00
|
|
|
var balances = session.GetAccount().Balances()
|
2021-02-19 02:42:24 +00:00
|
|
|
var fiatAssets []string
|
|
|
|
|
2021-06-10 10:51:13 +00:00
|
|
|
for _, currency := range types.FiatCurrencies {
|
2022-02-03 11:19:56 +00:00
|
|
|
if balance, ok := balances[currency]; ok && balance.Total().Sign() > 0 {
|
2021-02-19 02:42:24 +00:00
|
|
|
fiatAssets = append(fiatAssets, currency)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var symbolMap = map[string]struct{}{}
|
|
|
|
|
|
|
|
for _, market := range session.Markets() {
|
|
|
|
// ignore the markets that are not fiat currency markets
|
|
|
|
if !util.StringSliceContains(fiatAssets, market.QuoteCurrency) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore the asset that we don't have in the balance sheet
|
|
|
|
balance, hasAsset := balances[market.BaseCurrency]
|
2022-02-03 11:19:56 +00:00
|
|
|
if !hasAsset || balance.Total().IsZero() {
|
2021-02-19 02:42:24 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
symbolMap[market.Symbol] = struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
for s := range symbolMap {
|
|
|
|
symbols = append(symbols, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
return symbols, nil
|
|
|
|
}
|
2021-06-10 11:05:07 +00:00
|
|
|
|
2023-05-17 05:43:00 +00:00
|
|
|
// newBasicPrivateExchange allocates a basic exchange instance with the user private credentials
|
|
|
|
func (session *ExchangeSession) newBasicPrivateExchange(exchangeName types.ExchangeName) (types.Exchange, error) {
|
|
|
|
var err error
|
|
|
|
var exMinimal types.ExchangeMinimal
|
|
|
|
if session.Key != "" && session.Secret != "" {
|
|
|
|
exMinimal, err = exchange2.New(exchangeName, session.Key, session.Secret, session.Passphrase)
|
|
|
|
} else {
|
|
|
|
exMinimal, err = exchange2.NewWithEnvVarPrefix(exchangeName, session.EnvVarPrefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if ex, ok := exMinimal.(types.Exchange); ok {
|
|
|
|
return ex, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("exchange %T does not implement types.Exchange", exMinimal)
|
|
|
|
}
|
|
|
|
|
2021-12-25 15:42:29 +00:00
|
|
|
// InitExchange initialize the exchange instance and allocate memory for fields
|
|
|
|
// In this stage, the session var could be loaded from the JSON config, so the pointer fields are still nil
|
|
|
|
// The Init method will be called after this stage, environment.Init will call the session.Init method later.
|
2022-06-03 18:23:23 +00:00
|
|
|
func (session *ExchangeSession) InitExchange(name string, ex types.Exchange) error {
|
2021-06-10 11:05:07 +00:00
|
|
|
var err error
|
|
|
|
var exchangeName = session.ExchangeName
|
2023-05-17 05:43:00 +00:00
|
|
|
|
2022-06-03 18:23:23 +00:00
|
|
|
if ex == nil {
|
2021-12-26 07:29:42 +00:00
|
|
|
if session.PublicOnly {
|
2022-06-03 18:23:23 +00:00
|
|
|
ex, err = exchange2.NewPublic(exchangeName)
|
2021-12-23 16:24:00 +00:00
|
|
|
} else {
|
2023-05-17 05:43:00 +00:00
|
|
|
ex, err = session.newBasicPrivateExchange(exchangeName)
|
2021-12-23 16:24:00 +00:00
|
|
|
}
|
2021-06-10 11:05:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// configure exchange
|
|
|
|
if session.Margin {
|
2022-06-03 18:23:23 +00:00
|
|
|
marginExchange, ok := ex.(types.MarginExchange)
|
2021-06-10 11:05:07 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("exchange %s does not support margin", exchangeName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if session.IsolatedMargin {
|
|
|
|
marginExchange.UseIsolatedMargin(session.IsolatedMarginSymbol)
|
|
|
|
} else {
|
|
|
|
marginExchange.UseMargin()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-13 15:16:58 +00:00
|
|
|
if session.Futures {
|
2022-06-03 18:23:23 +00:00
|
|
|
futuresExchange, ok := ex.(types.FuturesExchange)
|
2021-12-13 15:16:58 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("exchange %s does not support futures", exchangeName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if session.IsolatedFutures {
|
|
|
|
futuresExchange.UseIsolatedFutures(session.IsolatedFuturesSymbol)
|
|
|
|
} else {
|
|
|
|
futuresExchange.UseFutures()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 11:05:07 +00:00
|
|
|
session.Name = name
|
2022-06-03 18:23:23 +00:00
|
|
|
session.Exchange = ex
|
|
|
|
session.UserDataStream = ex.NewStream()
|
|
|
|
session.MarketDataStream = ex.NewStream()
|
2021-06-10 11:05:07 +00:00
|
|
|
session.MarketDataStream.SetPublicOnly()
|
|
|
|
|
|
|
|
// pointer fields
|
|
|
|
session.Subscriptions = make(map[types.Subscription]types.Subscription)
|
|
|
|
session.Account = &types.Account{}
|
|
|
|
session.Trades = make(map[string]*types.TradeSlice)
|
|
|
|
|
|
|
|
session.orderBooks = make(map[string]*types.StreamOrderBook)
|
|
|
|
session.markets = make(map[string]types.Market)
|
2022-02-03 11:19:56 +00:00
|
|
|
session.lastPrices = make(map[string]fixedpoint.Value)
|
|
|
|
session.startPrices = make(map[string]fixedpoint.Value)
|
2021-06-10 11:05:07 +00:00
|
|
|
session.marketDataStores = make(map[string]*MarketDataStore)
|
2021-12-11 11:16:16 +00:00
|
|
|
session.positions = make(map[string]*types.Position)
|
2021-06-10 11:05:07 +00:00
|
|
|
session.standardIndicatorSets = make(map[string]*StandardIndicatorSet)
|
2023-07-02 06:13:24 +00:00
|
|
|
session.indicators = make(map[string]*IndicatorSet)
|
2023-07-04 13:42:24 +00:00
|
|
|
session.orderStores = make(map[string]*core.OrderStore)
|
2021-06-10 11:05:07 +00:00
|
|
|
session.OrderExecutor = &ExchangeOrderExecutor{
|
|
|
|
// copy the notification system so that we can route
|
2022-07-05 19:04:01 +00:00
|
|
|
Session: session,
|
2021-06-10 11:05:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
session.usedSymbols = make(map[string]struct{})
|
|
|
|
session.initializedSymbols = make(map[string]struct{})
|
|
|
|
session.logger = log.WithField("session", name)
|
|
|
|
return nil
|
|
|
|
}
|
2021-12-27 09:16:30 +00:00
|
|
|
|
2024-08-21 07:24:43 +00:00
|
|
|
func (session *ExchangeSession) MarginType() types.MarginType {
|
2021-12-27 09:16:30 +00:00
|
|
|
if session.Margin {
|
|
|
|
if session.IsolatedMargin {
|
2024-08-21 07:24:43 +00:00
|
|
|
return types.MarginTypeIsolatedMargin
|
|
|
|
} else {
|
|
|
|
return types.MarginTypeCrossMargin
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
|
|
|
}
|
2024-08-21 07:24:43 +00:00
|
|
|
|
|
|
|
return types.MarginTypeSpot
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) metricsBalancesUpdater(balances types.BalanceMap) {
|
|
|
|
for currency, balance := range balances {
|
|
|
|
labels := prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"symbol": session.IsolatedMarginSymbol,
|
|
|
|
"currency": currency,
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
metricsTotalBalances.With(labels).Set(balance.Total().Float64())
|
2024-08-21 07:33:27 +00:00
|
|
|
metricsBalanceNetMetrics.With(labels).Set(balance.Net().Float64())
|
|
|
|
metricsBalanceAvailableMetrics.With(labels).Set(balance.Available.Float64())
|
|
|
|
metricsBalanceLockedMetrics.With(labels).Set(balance.Locked.Float64())
|
|
|
|
|
|
|
|
// margin metrics
|
|
|
|
metricsBalanceDebtMetrics.With(labels).Set(balance.Debt().Float64())
|
|
|
|
metricsBalanceBorrowedMetrics.With(labels).Set(balance.Borrowed.Float64())
|
|
|
|
metricsBalanceInterestMetrics.With(labels).Set(balance.Interest.Float64())
|
|
|
|
|
|
|
|
metricsLastUpdateTimeMetrics.With(prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"channel": "user",
|
|
|
|
"data_type": "balance",
|
|
|
|
"symbol": "",
|
|
|
|
"currency": currency,
|
2021-12-27 17:39:17 +00:00
|
|
|
}).SetToCurrentTime()
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
2021-12-27 17:39:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) metricsOrderUpdater(order types.Order) {
|
2024-08-21 07:33:27 +00:00
|
|
|
metricsLastUpdateTimeMetrics.With(prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"channel": "user",
|
|
|
|
"data_type": "order",
|
|
|
|
"symbol": order.Symbol,
|
|
|
|
"currency": "",
|
2021-12-27 17:39:17 +00:00
|
|
|
}).SetToCurrentTime()
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) metricsTradeUpdater(trade types.Trade) {
|
|
|
|
labels := prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"side": trade.Side.String(),
|
|
|
|
"symbol": trade.Symbol,
|
|
|
|
"liquidity": trade.Liquidity(),
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
2022-02-03 11:19:56 +00:00
|
|
|
metricsTradingVolume.With(labels).Add(trade.Quantity.Mul(trade.Price).Float64())
|
2021-12-27 09:16:30 +00:00
|
|
|
metricsTradesTotal.With(labels).Inc()
|
2024-08-21 07:33:27 +00:00
|
|
|
metricsLastUpdateTimeMetrics.With(prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"channel": "user",
|
|
|
|
"data_type": "trade",
|
|
|
|
"symbol": trade.Symbol,
|
|
|
|
"currency": "",
|
2021-12-27 17:39:17 +00:00
|
|
|
}).SetToCurrentTime()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) bindMarketDataStreamMetrics(stream types.Stream) {
|
|
|
|
stream.OnBookUpdate(func(book types.SliceOrderBook) {
|
2024-08-21 07:33:27 +00:00
|
|
|
metricsLastUpdateTimeMetrics.With(prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"channel": "market",
|
|
|
|
"data_type": "book",
|
|
|
|
"symbol": book.Symbol,
|
|
|
|
"currency": "",
|
2021-12-27 17:39:17 +00:00
|
|
|
}).SetToCurrentTime()
|
|
|
|
})
|
|
|
|
stream.OnKLineClosed(func(kline types.KLine) {
|
2024-08-21 07:33:27 +00:00
|
|
|
metricsLastUpdateTimeMetrics.With(prometheus.Labels{
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"channel": "market",
|
|
|
|
"data_type": "kline",
|
|
|
|
"symbol": kline.Symbol,
|
|
|
|
"currency": "",
|
2021-12-27 17:39:17 +00:00
|
|
|
}).SetToCurrentTime()
|
|
|
|
})
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (session *ExchangeSession) bindUserDataStreamMetrics(stream types.Stream) {
|
|
|
|
stream.OnBalanceUpdate(session.metricsBalancesUpdater)
|
2021-12-27 09:27:16 +00:00
|
|
|
stream.OnBalanceSnapshot(session.metricsBalancesUpdater)
|
2021-12-27 09:16:30 +00:00
|
|
|
stream.OnTradeUpdate(session.metricsTradeUpdater)
|
2021-12-27 17:39:17 +00:00
|
|
|
stream.OnOrderUpdate(session.metricsOrderUpdater)
|
2021-12-27 16:49:56 +00:00
|
|
|
stream.OnDisconnect(func() {
|
|
|
|
metricsConnectionStatus.With(prometheus.Labels{
|
2024-08-21 07:33:27 +00:00
|
|
|
"channel": "user",
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"symbol": session.IsolatedMarginSymbol,
|
2021-12-27 16:49:56 +00:00
|
|
|
}).Set(0.0)
|
|
|
|
})
|
|
|
|
stream.OnConnect(func() {
|
|
|
|
metricsConnectionStatus.With(prometheus.Labels{
|
2024-08-21 07:33:27 +00:00
|
|
|
"channel": "user",
|
2024-08-21 07:36:35 +00:00
|
|
|
"session": session.Name,
|
2024-08-21 07:33:27 +00:00
|
|
|
"exchange": session.ExchangeName.String(),
|
|
|
|
"margin_type": string(session.MarginType()),
|
|
|
|
"symbol": session.IsolatedMarginSymbol,
|
2021-12-27 16:49:56 +00:00
|
|
|
}).Set(1.0)
|
|
|
|
})
|
2021-12-27 09:16:30 +00:00
|
|
|
}
|
2021-12-30 09:25:47 +00:00
|
|
|
|
|
|
|
func (session *ExchangeSession) bindConnectionStatusNotification(stream types.Stream, streamName string) {
|
|
|
|
stream.OnDisconnect(func() {
|
2022-06-19 04:29:36 +00:00
|
|
|
Notify("session %s %s stream disconnected", session.Name, streamName)
|
2021-12-30 09:25:47 +00:00
|
|
|
})
|
|
|
|
stream.OnConnect(func() {
|
2022-06-19 04:29:36 +00:00
|
|
|
Notify("session %s %s stream connected", session.Name, streamName)
|
2021-12-30 09:25:47 +00:00
|
|
|
})
|
2022-01-10 17:36:19 +00:00
|
|
|
}
|
2022-05-04 07:38:28 +00:00
|
|
|
|
|
|
|
func (session *ExchangeSession) SlackAttachment() slack.Attachment {
|
|
|
|
var fields []slack.AttachmentField
|
|
|
|
var footerIcon = types.ExchangeFooterIcon(session.ExchangeName)
|
|
|
|
return slack.Attachment{
|
|
|
|
// Pretext: "",
|
|
|
|
// Text: text,
|
2022-05-12 10:40:48 +00:00
|
|
|
Title: session.Name,
|
|
|
|
Fields: fields,
|
2022-05-04 07:38:28 +00:00
|
|
|
FooterIcon: footerIcon,
|
2022-08-22 18:12:26 +00:00
|
|
|
Footer: templateutil.Render("update time {{ . }}", time.Now().Format(time.RFC822)),
|
2022-05-04 07:38:28 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-18 04:30:42 +00:00
|
|
|
|
|
|
|
func (session *ExchangeSession) FormatOrders(orders []types.SubmitOrder) (formattedOrders []types.SubmitOrder, err error) {
|
|
|
|
for _, order := range orders {
|
|
|
|
o, err := session.FormatOrder(order)
|
|
|
|
if err != nil {
|
|
|
|
return formattedOrders, err
|
|
|
|
}
|
|
|
|
formattedOrders = append(formattedOrders, o)
|
|
|
|
}
|
|
|
|
|
|
|
|
return formattedOrders, err
|
|
|
|
}
|
2023-12-18 14:09:04 +00:00
|
|
|
|
|
|
|
func findPossibleMarketSymbols(markets types.MarketMap, c, fiat string) (symbols []string) {
|
|
|
|
var tries []string
|
|
|
|
// expand USD stable coin currencies
|
|
|
|
if types.IsUSDFiatCurrency(fiat) {
|
|
|
|
for _, usdFiat := range types.USDFiatCurrencies {
|
|
|
|
tries = append(tries, c+usdFiat, usdFiat+c)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tries = []string{c + fiat, fiat + c}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, try := range tries {
|
|
|
|
if markets.Has(try) {
|
|
|
|
symbols = append(symbols, try)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return symbols
|
|
|
|
}
|