mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
doc: fix
This commit is contained in:
parent
7f48d834f5
commit
f239eb16c1
|
@ -257,9 +257,9 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
|
|
||||||
In the above example, we register our event callback to the market data stream of the current exchange session, The
|
In the above example, we register our event callback to the market data stream of the current exchange session, The
|
||||||
market data stream object here is a session-wide market data stream, so it's shared with other strategies that are also
|
market data stream object here is a session-wide market data stream, so it's shared with other strategies that are also
|
||||||
using the same exchange session, you might receive kline with different symbol or interval.
|
using the same exchange session, so you might receive kline with different symbol or interval.
|
||||||
|
|
||||||
so it's better to add a condition to filter the kline events:
|
It's better to add a condition to filter the kline events:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user