add trade store

This commit is contained in:
c9s 2021-05-29 00:25:23 +08:00
parent f49490f986
commit 8d31435ded

66
pkg/bbgo/trade_store.go Normal file
View File

@ -0,0 +1,66 @@
package bbgo
import (
"sync"
"github.com/c9s/bbgo/pkg/types"
)
type TradeStore struct {
// any created trades for tracking trades
mu sync.Mutex
trades map[int64]types.Trade
Symbol string
RemoveCancelled bool
RemoveFilled bool
AddOrderUpdate bool
}
func NewTradeStore(symbol string) *TradeStore {
return &TradeStore{
Symbol: symbol,
trades: make(map[int64]types.Trade),
}
}
func (s *TradeStore) Num() (num int) {
s.mu.Lock()
num = len(s.trades)
s.mu.Unlock()
return num
}
func (s *TradeStore) Trades() (trades []types.Trade) {
s.mu.Lock()
defer s.mu.Unlock()
for _, o := range s.trades {
trades = append(trades, o)
}
return trades
}
func (s *TradeStore) Exists(oID int64) (ok bool) {
s.mu.Lock()
defer s.mu.Unlock()
_, ok = s.trades[oID]
return ok
}
func (s *TradeStore) Clear() {
s.mu.Lock()
s.trades = make(map[int64]types.Trade)
s.mu.Unlock()
}
func (s *TradeStore) Add(trades ...types.Trade) {
s.mu.Lock()
defer s.mu.Unlock()
for _, trade := range trades {
s.trades[trade.ID] = trade
}
}