2020-07-10 13:34:39 +00:00
|
|
|
package bbgo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-12-07 03:43:17 +00:00
|
|
|
"fmt"
|
2020-10-27 05:54:39 +00:00
|
|
|
"reflect"
|
2020-11-12 06:50:08 +00:00
|
|
|
"sync"
|
2020-07-13 04:57:18 +00:00
|
|
|
|
2021-02-16 07:58:21 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-07-13 04:57:18 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2020-10-12 09:33:02 +00:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2022-01-14 18:52:46 +00:00
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/interact"
|
2020-07-10 13:34:39 +00:00
|
|
|
)
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
// SingleExchangeStrategy represents the single Exchange strategy
|
|
|
|
type SingleExchangeStrategy interface {
|
2021-02-03 01:08:05 +00:00
|
|
|
ID() string
|
2020-10-25 16:26:17 +00:00
|
|
|
Run(ctx context.Context, orderExecutor OrderExecutor, session *ExchangeSession) error
|
2020-07-14 06:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 18:22:20 +00:00
|
|
|
type StrategyInitializer interface {
|
|
|
|
Initialize() error
|
|
|
|
}
|
|
|
|
|
2021-10-17 14:23:21 +00:00
|
|
|
// ExchangeSessionSubscriber provides an interface for collecting subscriptions from different strategies
|
|
|
|
// Subscribe method will be called before the user data stream connection is created.
|
2020-10-28 08:27:25 +00:00
|
|
|
type ExchangeSessionSubscriber interface {
|
|
|
|
Subscribe(session *ExchangeSession)
|
|
|
|
}
|
|
|
|
|
2020-11-15 05:27:33 +00:00
|
|
|
type CrossExchangeSessionSubscriber interface {
|
2020-12-03 01:31:40 +00:00
|
|
|
CrossSubscribe(sessions map[string]*ExchangeSession)
|
2020-11-15 05:27:33 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
type CrossExchangeStrategy interface {
|
2021-02-03 01:08:05 +00:00
|
|
|
ID() string
|
2020-12-03 01:31:40 +00:00
|
|
|
CrossRun(ctx context.Context, orderExecutionRouter OrderExecutionRouter, sessions map[string]*ExchangeSession) error
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 02:12:55 +00:00
|
|
|
type Validator interface {
|
|
|
|
Validate() error
|
|
|
|
}
|
|
|
|
|
2020-11-12 06:50:08 +00:00
|
|
|
//go:generate callbackgen -type Graceful
|
|
|
|
type Graceful struct {
|
|
|
|
shutdownCallbacks []func(ctx context.Context, wg *sync.WaitGroup)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Graceful) Shutdown(ctx context.Context) {
|
|
|
|
var wg sync.WaitGroup
|
2020-11-12 06:59:47 +00:00
|
|
|
wg.Add(len(g.shutdownCallbacks))
|
|
|
|
|
|
|
|
go g.EmitShutdown(ctx, &wg)
|
|
|
|
|
2020-11-12 06:50:08 +00:00
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2020-11-09 08:34:35 +00:00
|
|
|
type Logging interface {
|
|
|
|
EnableLogging()
|
|
|
|
DisableLogging()
|
|
|
|
}
|
|
|
|
|
|
|
|
type Logger interface {
|
|
|
|
Warnf(message string, args ...interface{})
|
|
|
|
Errorf(message string, args ...interface{})
|
|
|
|
Infof(message string, args ...interface{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type SilentLogger struct{}
|
|
|
|
|
2021-05-02 15:47:57 +00:00
|
|
|
func (logger *SilentLogger) Infof(string, ...interface{}) {}
|
|
|
|
func (logger *SilentLogger) Warnf(string, ...interface{}) {}
|
|
|
|
func (logger *SilentLogger) Errorf(string, ...interface{}) {}
|
2020-11-09 08:34:35 +00:00
|
|
|
|
2020-10-14 02:06:15 +00:00
|
|
|
type Trader struct {
|
2020-10-12 14:46:06 +00:00
|
|
|
environment *Environment
|
2020-09-28 07:01:10 +00:00
|
|
|
|
2020-10-26 13:36:47 +00:00
|
|
|
riskControls *RiskControls
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
crossExchangeStrategies []CrossExchangeStrategy
|
|
|
|
exchangeStrategies map[string][]SingleExchangeStrategy
|
2020-11-09 08:34:35 +00:00
|
|
|
|
|
|
|
logger Logger
|
2020-11-12 06:50:08 +00:00
|
|
|
|
|
|
|
Graceful Graceful
|
2020-07-13 05:25:48 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
func NewTrader(environ *Environment) *Trader {
|
2020-09-07 06:20:03 +00:00
|
|
|
return &Trader{
|
2020-10-12 14:46:06 +00:00
|
|
|
environment: environ,
|
|
|
|
exchangeStrategies: make(map[string][]SingleExchangeStrategy),
|
2020-11-09 08:34:35 +00:00
|
|
|
logger: log.StandardLogger(),
|
2020-09-07 06:20:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-09 08:34:35 +00:00
|
|
|
func (trader *Trader) EnableLogging() {
|
|
|
|
trader.logger = log.StandardLogger()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (trader *Trader) DisableLogging() {
|
|
|
|
trader.logger = &SilentLogger{}
|
|
|
|
}
|
|
|
|
|
2021-02-20 04:23:31 +00:00
|
|
|
func (trader *Trader) Configure(userConfig *Config) error {
|
|
|
|
if userConfig.RiskControls != nil {
|
|
|
|
trader.SetRiskControls(userConfig.RiskControls)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, entry := range userConfig.ExchangeStrategies {
|
|
|
|
for _, mount := range entry.Mounts {
|
|
|
|
log.Infof("attaching strategy %T on %s...", entry.Strategy, mount)
|
2021-03-15 10:51:29 +00:00
|
|
|
if err := trader.AttachStrategyOn(mount, entry.Strategy); err != nil {
|
2021-02-20 04:23:31 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, strategy := range userConfig.CrossExchangeStrategies {
|
|
|
|
log.Infof("attaching cross exchange strategy %T", strategy)
|
|
|
|
trader.AttachCrossExchangeStrategy(strategy)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, report := range userConfig.PnLReporters {
|
|
|
|
if len(report.AverageCostBySymbols) > 0 {
|
|
|
|
|
|
|
|
log.Infof("setting up average cost pnl reporter on symbols: %v", report.AverageCostBySymbols)
|
|
|
|
trader.ReportPnL().
|
|
|
|
AverageCostBySymbols(report.AverageCostBySymbols...).
|
|
|
|
Of(report.Of...).
|
|
|
|
When(report.When...)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("unsupported PnL reporter: %+v", report)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-17 00:19:22 +00:00
|
|
|
// AttachStrategyOn attaches the single exchange strategy on an exchange Session.
|
2020-10-12 14:46:06 +00:00
|
|
|
// Single exchange strategy is the default behavior.
|
2021-01-09 11:47:21 +00:00
|
|
|
func (trader *Trader) AttachStrategyOn(session string, strategies ...SingleExchangeStrategy) error {
|
|
|
|
if len(trader.environment.sessions) == 0 {
|
|
|
|
return fmt.Errorf("you don't have any session configured, please check your environment variable or config file")
|
|
|
|
}
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
if _, ok := trader.environment.sessions[session]; !ok {
|
2021-01-09 11:47:21 +00:00
|
|
|
var keys []string
|
|
|
|
for k := range trader.environment.sessions {
|
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("session %s is not defined, valid sessions are: %v", session, keys)
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
2020-09-19 03:25:48 +00:00
|
|
|
|
2020-10-16 02:26:45 +00:00
|
|
|
for _, s := range strategies {
|
|
|
|
trader.exchangeStrategies[session] = append(trader.exchangeStrategies[session], s)
|
|
|
|
}
|
2020-10-16 05:52:18 +00:00
|
|
|
|
2021-01-09 11:47:21 +00:00
|
|
|
return nil
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
2020-09-28 07:01:10 +00:00
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
// AttachCrossExchangeStrategy attaches the cross exchange strategy
|
2020-10-16 05:52:18 +00:00
|
|
|
func (trader *Trader) AttachCrossExchangeStrategy(strategy CrossExchangeStrategy) *Trader {
|
2020-10-12 14:46:06 +00:00
|
|
|
trader.crossExchangeStrategies = append(trader.crossExchangeStrategies, strategy)
|
2020-10-16 05:52:18 +00:00
|
|
|
|
|
|
|
return trader
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
2020-09-28 07:01:10 +00:00
|
|
|
|
2021-05-02 15:48:53 +00:00
|
|
|
// SetRiskControls sets the risk controller
|
2020-10-27 01:58:21 +00:00
|
|
|
// TODO: provide a more DSL way to configure risk controls
|
2020-10-26 13:36:47 +00:00
|
|
|
func (trader *Trader) SetRiskControls(riskControls *RiskControls) {
|
|
|
|
trader.riskControls = riskControls
|
|
|
|
}
|
|
|
|
|
2021-02-01 09:13:54 +00:00
|
|
|
func (trader *Trader) Subscribe() {
|
2020-10-28 08:27:25 +00:00
|
|
|
// pre-subscribe the data
|
2020-10-16 02:26:45 +00:00
|
|
|
for sessionName, strategies := range trader.exchangeStrategies {
|
2020-10-25 10:26:10 +00:00
|
|
|
session := trader.environment.sessions[sessionName]
|
2020-10-28 08:27:25 +00:00
|
|
|
for _, strategy := range strategies {
|
2022-01-29 09:44:42 +00:00
|
|
|
if initializer, ok := strategy.(StrategyInitializer); ok {
|
|
|
|
if err := initializer.Initialize(); err != nil {
|
|
|
|
panic(err)
|
2022-01-28 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 08:27:25 +00:00
|
|
|
if subscriber, ok := strategy.(ExchangeSessionSubscriber); ok {
|
|
|
|
subscriber.Subscribe(session)
|
2021-03-21 04:43:41 +00:00
|
|
|
} else {
|
|
|
|
log.Errorf("strategy %s does not implement ExchangeSessionSubscriber", strategy.ID())
|
2020-10-28 08:27:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-26 13:36:47 +00:00
|
|
|
|
2020-12-02 14:44:41 +00:00
|
|
|
for _, strategy := range trader.crossExchangeStrategies {
|
2022-01-29 09:44:42 +00:00
|
|
|
if initializer, ok := strategy.(StrategyInitializer); ok {
|
|
|
|
if err := initializer.Initialize(); err != nil {
|
|
|
|
panic(err)
|
2022-01-28 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 14:44:41 +00:00
|
|
|
if subscriber, ok := strategy.(CrossExchangeSessionSubscriber); ok {
|
2020-12-03 01:31:40 +00:00
|
|
|
subscriber.CrossSubscribe(trader.environment.sessions)
|
2021-03-21 04:43:41 +00:00
|
|
|
} else {
|
|
|
|
log.Errorf("strategy %s does not implement CrossExchangeSessionSubscriber", strategy.ID())
|
2020-12-02 14:44:41 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-01 09:13:54 +00:00
|
|
|
}
|
2020-12-02 14:44:41 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
func (trader *Trader) RunSingleExchangeStrategy(ctx context.Context, strategy SingleExchangeStrategy, session *ExchangeSession, orderExecutor OrderExecutor) error {
|
|
|
|
rs := reflect.ValueOf(strategy)
|
2021-02-10 16:21:56 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
// get the struct element
|
|
|
|
rs = rs.Elem()
|
2020-10-28 08:27:25 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
if rs.Kind() != reflect.Struct {
|
|
|
|
return errors.New("strategy object is not a struct")
|
|
|
|
}
|
2020-10-27 00:17:42 +00:00
|
|
|
|
2022-03-05 04:39:39 +00:00
|
|
|
if err := trader.injectCommonServices(strategy) ; err != nil {
|
2021-02-16 08:12:00 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-10-27 01:58:21 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
if err := injectField(rs, "OrderExecutor", orderExecutor, false); err != nil {
|
|
|
|
return errors.Wrapf(err, "failed to inject OrderExecutor on %T", strategy)
|
|
|
|
}
|
2020-10-27 01:58:21 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
if symbol, ok := isSymbolBasedStrategy(rs); ok {
|
2021-05-02 15:46:16 +00:00
|
|
|
log.Infof("found symbol based strategy from %s", rs.Type())
|
2020-10-26 13:36:47 +00:00
|
|
|
|
2022-03-04 18:51:43 +00:00
|
|
|
market, ok := session.Market(symbol)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("market of symbol %s not found", symbol)
|
|
|
|
}
|
2021-05-02 15:46:16 +00:00
|
|
|
|
2022-03-04 18:51:43 +00:00
|
|
|
indicatorSet, ok := session.StandardIndicatorSet(symbol)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("standardIndicatorSet of symbol %s not found", symbol)
|
2021-02-16 08:12:00 +00:00
|
|
|
}
|
2020-11-09 08:47:29 +00:00
|
|
|
|
2022-03-04 18:51:43 +00:00
|
|
|
store, ok := session.MarketDataStore(symbol)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("marketDataStore of symbol %s not found", symbol)
|
|
|
|
}
|
2021-05-02 15:46:16 +00:00
|
|
|
|
2022-03-05 04:49:53 +00:00
|
|
|
if err := parseStructAndInject(strategy,
|
|
|
|
market,
|
|
|
|
indicatorSet,
|
|
|
|
store,
|
|
|
|
session,
|
|
|
|
session.OrderExecutor,
|
|
|
|
); err != nil {
|
2022-03-04 18:51:43 +00:00
|
|
|
return errors.Wrapf(err, "failed to inject object into %T", strategy)
|
2021-02-16 08:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-27 12:13:10 +00:00
|
|
|
|
2021-04-02 02:12:55 +00:00
|
|
|
// If the strategy has Validate() method, run it and check the error
|
|
|
|
if v, ok := strategy.(Validator); ok {
|
|
|
|
if err := v.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("failed to validate the config: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
return strategy.Run(ctx, orderExecutor, session)
|
|
|
|
}
|
2020-10-28 08:27:25 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
func (trader *Trader) getSessionOrderExecutor(sessionName string) OrderExecutor {
|
|
|
|
var session = trader.environment.sessions[sessionName]
|
2020-10-28 23:49:06 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
// default to base order executor
|
2021-05-12 10:58:20 +00:00
|
|
|
var orderExecutor OrderExecutor = session.OrderExecutor
|
2020-10-28 08:27:25 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
// Since the risk controls are loaded from the config file
|
|
|
|
if trader.riskControls != nil && trader.riskControls.SessionBasedRiskControl != nil {
|
2021-02-16 08:13:52 +00:00
|
|
|
if control, ok := trader.riskControls.SessionBasedRiskControl[sessionName]; ok {
|
2021-05-12 10:58:20 +00:00
|
|
|
control.SetBaseOrderExecutor(session.OrderExecutor)
|
2021-02-16 08:12:00 +00:00
|
|
|
|
|
|
|
// pick the wrapped order executor
|
|
|
|
if control.OrderExecutor != nil {
|
|
|
|
return control.OrderExecutor
|
2020-10-27 05:54:39 +00:00
|
|
|
}
|
2021-02-16 08:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return orderExecutor
|
|
|
|
}
|
2020-10-27 05:54:39 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
func (trader *Trader) RunAllSingleExchangeStrategy(ctx context.Context) error {
|
|
|
|
// load and run Session strategies
|
|
|
|
for sessionName, strategies := range trader.exchangeStrategies {
|
|
|
|
var session = trader.environment.sessions[sessionName]
|
|
|
|
var orderExecutor = trader.getSessionOrderExecutor(sessionName)
|
|
|
|
for _, strategy := range strategies {
|
|
|
|
if err := trader.RunSingleExchangeStrategy(ctx, strategy, session, orderExecutor); err != nil {
|
2020-09-28 07:01:10 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
2020-09-28 07:01:10 +00:00
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (trader *Trader) Run(ctx context.Context) error {
|
2022-01-14 18:52:46 +00:00
|
|
|
// before we start the interaction,
|
|
|
|
// register the core interaction, because we can only get the strategies in this scope
|
|
|
|
// trader.environment.Connect will call interact.Start
|
|
|
|
interact.AddCustomInteraction(NewCoreInteraction(trader.environment, trader))
|
|
|
|
|
2021-02-16 08:12:00 +00:00
|
|
|
trader.Subscribe()
|
|
|
|
|
2021-05-07 16:45:24 +00:00
|
|
|
if err := trader.environment.Start(ctx); err != nil {
|
2021-02-16 08:12:00 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := trader.RunAllSingleExchangeStrategy(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-10-14 02:06:15 +00:00
|
|
|
router := &ExchangeOrderExecutionRouter{
|
2020-10-30 21:21:17 +00:00
|
|
|
Notifiability: trader.environment.Notifiability,
|
2020-10-16 02:09:30 +00:00
|
|
|
sessions: trader.environment.sessions,
|
2021-05-12 10:58:20 +00:00
|
|
|
executors: make(map[string]OrderExecutor),
|
|
|
|
}
|
|
|
|
for sessionID := range trader.environment.sessions {
|
|
|
|
var orderExecutor = trader.getSessionOrderExecutor(sessionID)
|
|
|
|
router.executors[sessionID] = orderExecutor
|
2020-10-14 02:06:15 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
for _, strategy := range trader.crossExchangeStrategies {
|
2020-11-17 00:19:22 +00:00
|
|
|
rs := reflect.ValueOf(strategy)
|
2020-09-08 06:56:08 +00:00
|
|
|
|
2021-02-16 07:49:57 +00:00
|
|
|
// get the struct element from the struct pointer
|
|
|
|
rs = rs.Elem()
|
2021-02-16 07:58:21 +00:00
|
|
|
if rs.Kind() != reflect.Struct {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-03-05 04:39:39 +00:00
|
|
|
if err := trader.injectCommonServices(strategy) ; err != nil {
|
2021-02-16 07:49:57 +00:00
|
|
|
return err
|
2020-08-04 11:05:20 +00:00
|
|
|
}
|
2020-07-13 05:25:48 +00:00
|
|
|
|
2020-12-03 01:31:40 +00:00
|
|
|
if err := strategy.CrossRun(ctx, router, trader.environment.sessions); err != nil {
|
2020-11-17 00:19:22 +00:00
|
|
|
return err
|
2020-07-13 05:25:48 +00:00
|
|
|
}
|
2020-11-17 00:19:22 +00:00
|
|
|
}
|
2020-07-13 05:25:48 +00:00
|
|
|
|
2020-11-17 00:19:22 +00:00
|
|
|
return trader.environment.Connect(ctx)
|
2020-07-10 13:34:39 +00:00
|
|
|
}
|
|
|
|
|
2022-03-06 06:06:19 +00:00
|
|
|
var defaultPersistenceSelector = &PersistenceSelector{
|
|
|
|
StoreID: "default",
|
|
|
|
Type: "memory",
|
|
|
|
}
|
2021-02-16 08:13:52 +00:00
|
|
|
|
2022-03-06 06:06:19 +00:00
|
|
|
func (trader *Trader) injectCommonServices(s interface{}) error {
|
2022-03-05 04:39:39 +00:00
|
|
|
persistenceFacade := trader.environment.PersistenceServiceFacade
|
|
|
|
persistence := &Persistence{
|
|
|
|
PersistenceSelector: defaultPersistenceSelector,
|
|
|
|
Facade: persistenceFacade,
|
2021-02-16 08:13:52 +00:00
|
|
|
}
|
|
|
|
|
2022-03-05 04:39:39 +00:00
|
|
|
return parseStructAndInject(s,
|
|
|
|
&trader.Graceful,
|
|
|
|
&trader.logger,
|
2022-03-06 08:09:15 +00:00
|
|
|
&trader.environment.Notifiability,
|
2022-03-05 04:39:39 +00:00
|
|
|
trader.environment.TradeService,
|
2022-03-05 05:37:27 +00:00
|
|
|
trader.environment.OrderService,
|
|
|
|
trader.environment.DatabaseService,
|
2022-03-05 04:39:39 +00:00
|
|
|
trader.environment.AccountService,
|
|
|
|
persistence,
|
|
|
|
persistenceFacade,
|
|
|
|
)
|
2021-02-16 07:58:21 +00:00
|
|
|
}
|
|
|
|
|
2022-03-05 04:39:39 +00:00
|
|
|
|
2020-10-26 08:44:05 +00:00
|
|
|
// ReportPnL configure and set the PnLReporter with the given notifier
|
2020-10-27 05:54:39 +00:00
|
|
|
func (trader *Trader) ReportPnL() *PnLReporterManager {
|
2020-10-30 21:21:17 +00:00
|
|
|
return NewPnLReporter(&trader.environment.Notifiability)
|
2020-10-22 07:57:50 +00:00
|
|
|
}
|