bbgo_origin/pkg/bbgo/context.go
2020-10-11 16:46:15 +08:00

29 lines
516 B
Go

package bbgo
import (
"sync"
"github.com/c9s/bbgo/pkg/accounting"
"github.com/c9s/bbgo/pkg/types"
)
type Context struct {
sync.Mutex
Symbol string
// Market is the market configuration of a symbol
Market types.Market
AverageBidPrice float64
CurrentPrice float64
Balances map[string]types.Balance
ProfitAndLossCalculator *accounting.ProfitAndLossCalculator
StockManager *StockDistribution
}
func (c *Context) SetCurrentPrice(price float64) {
c.CurrentPrice = price
}