We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70db20b + 3836f7d commit 1ea0163Copy full SHA for 1ea0163
piker/brokers/__init__.py
@@ -24,7 +24,7 @@
24
'binance',
25
'ib',
26
'kraken',
27
-
+ 'kucoin'
28
# broken but used to work
29
# 'questrade',
30
# 'robinhood',
@@ -35,7 +35,6 @@
35
# iex
36
37
# deribit
38
- # kucoin
39
# bitso
40
]
41
piker/brokers/binance.py
@@ -551,7 +551,7 @@ async def subscribe(ws: wsproto.WSConnection):
551
while typ != 'trade':
552
typ, quote = await anext(msg_gen)
553
554
- task_status.started((init_msgs, quote))
+ task_status.started((init_msgs, quote))
555
556
# signal to caller feed is ready for consumption
557
feed_is_live.set()
0 commit comments