☰
Login
Signup
Home
›
Market data (WebSockets)
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
12.1K
All Categories
89
Node JS client
32
Go client
705
.Net API client
337
Kite Publisher
525
.Net / VBA / Excel (3rd party)
400
Algorithms and Strategies
900
Java client
918
API clients
386
PHP client
3.4K
Python client
314
Mobile and Desktop apps
1.2K
Market data (WebSockets)
2.9K
General
In this Discussion
August 2020
sujith
using sleep in on_ticks - getting "ERROR Connection error: 1006 - ..."
rajagopal
August 2020
in
Market data (WebSockets)
I am using the below code to insert tick to DB. every 3 sec and then sleep. I keep getting
2020-08-20 09:25:58,125 kiteconnect.ticker: ERROR Connection error: 1006 - connection was closed uncleanly (None)
def on_ticks(ws, ticks):
# Callback to receive ticks.
# process the tick and insert into DB
time.sleep(3)
def on_close(ws, code, reason):
now = datetime.now()
marketclosetime = now.replace(hour=15, minute=30, second=0, microsecond=0)
if now > marketclosetime:
ws.stop()
Tagged:
Python Client
WebSocket
sujith
August 2020
You can refer to FAQs
here
.
Sign In
or
Register
to comment.