It looks like you're new here. If you want to get involved, click one of these buttons!
kws = ws(api_key,access_token,user_id)
def on_tick(tick,ws):
print tick
#here i want to send this to to my index.html page
def on_connect(ws):
ws.subscribe([XXXXXX])
kws.on_tick = on_tick
x = on_tick
kws.on_connect = on_connect
kws.connect()
help me with this.
Are you developing a platform?
I got tick by tick data but i am helpless at passing tick from on_tick(ws,tick) to html.
https://github.com/sanampatel/kiteconnectjs/blob/master/index.html