From f239eb16c1185657911a2ba2038d885eb75afa72 Mon Sep 17 00:00:00 2001 From: c9s Date: Mon, 4 Jul 2022 12:16:22 +0800 Subject: [PATCH] doc: fix --- doc/topics/developing-strategy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/topics/developing-strategy.md b/doc/topics/developing-strategy.md index ba32ee8d4..087f6a1c4 100644 --- a/doc/topics/developing-strategy.md +++ b/doc/topics/developing-strategy.md @@ -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 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 func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {