mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 00:35:15 +00:00
initialize position map
This commit is contained in:
parent
09d712416f
commit
079fcf08e3
|
@ -121,6 +121,8 @@ type ExchangeSession struct {
|
||||||
// marketDataStores contains the market data store of each market
|
// marketDataStores contains the market data store of each market
|
||||||
marketDataStores map[string]*MarketDataStore
|
marketDataStores map[string]*MarketDataStore
|
||||||
|
|
||||||
|
positions map[string]*Position
|
||||||
|
|
||||||
// standard indicators of each market
|
// standard indicators of each market
|
||||||
standardIndicatorSets map[string]*StandardIndicatorSet
|
standardIndicatorSets map[string]*StandardIndicatorSet
|
||||||
|
|
||||||
|
@ -151,6 +153,7 @@ func NewExchangeSession(name string, exchange types.Exchange) *ExchangeSession {
|
||||||
markets: make(map[string]types.Market),
|
markets: make(map[string]types.Market),
|
||||||
startPrices: make(map[string]float64),
|
startPrices: make(map[string]float64),
|
||||||
lastPrices: make(map[string]float64),
|
lastPrices: make(map[string]float64),
|
||||||
|
positions: make(map[string]*Position),
|
||||||
marketDataStores: make(map[string]*MarketDataStore),
|
marketDataStores: make(map[string]*MarketDataStore),
|
||||||
standardIndicatorSets: make(map[string]*StandardIndicatorSet),
|
standardIndicatorSets: make(map[string]*StandardIndicatorSet),
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user