mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
|
package bbgo
|
||
|
|
||
|
import "github.com/c9s/bbgo/pkg/types"
|
||
|
|
||
|
// ExchangeSession presents the exchange connection session
|
||
|
// It also maintains and collects the data returned from the stream.
|
||
|
type ExchangeSession struct {
|
||
|
// Exchange session name
|
||
|
Name string
|
||
|
|
||
|
// The exchange account states
|
||
|
Account *Account
|
||
|
|
||
|
// Stream is the connection stream of the exchange
|
||
|
Stream types.Stream
|
||
|
|
||
|
Subscriptions map[types.Subscription]types.Subscription
|
||
|
|
||
|
Exchange types.Exchange
|
||
|
|
||
|
// Markets defines market configuration of a symbol
|
||
|
Markets map[string]types.Market
|
||
|
|
||
|
LastPrices map[string]float64
|
||
|
|
||
|
// Trades collects the executed trades from the exchange
|
||
|
// map: symbol -> []trade
|
||
|
Trades map[string][]types.Trade
|
||
|
|
||
|
MarketDataStore *MarketDataStore
|
||
|
}
|
||
|
|
||
|
// Subscribe save the subscription info, later it will be assigned to the stream
|
||
|
func (session *ExchangeSession) Subscribe(channel types.Channel, symbol string, options types.SubscribeOptions) *ExchangeSession {
|
||
|
sub := types.Subscription{
|
||
|
Channel: channel,
|
||
|
Symbol: symbol,
|
||
|
Options: options,
|
||
|
}
|
||
|
|
||
|
session.Subscriptions[sub] = sub
|
||
|
return session
|
||
|
}
|