Hi sujith,
I have subscribed to 170 scrips. I think the on_tick will not be called with all the 170 scrips data but only with those scrips that are changed from the last tick. Correct me if my understanding is wrong. So in any tick I will be han…
Hi Sujith,
I have some list of scrips and I try to get the streaming data from the websocket api. Below is the way I'm using it.
WS.on_connect = quoteStreamCfg
WS.on_tick = tickHdlr
WS.enable_reconnect(reconnect_interval=5, reconnect_tries=500)
W…
Hi Sujith,
I have the latest version with reconnect feature and I'm even using it. But still I face this issue.
This is my reconnect call:
enable_reconnect(reconnect_interval=5, reconnect_tries=500)
Regards,
Srikanth
Hi Sujith,
Below are my buy order IDs executed on 19th.
1200000003791887
1200000003850729
1200000003851252
1200000003851582
1200000003864817
1200000003874206
1200000003875755
After these BUY orders were complete I placed a sell order from my scrip…
Hi Sujith,
In my yesterday's trade I gave the same product but still it got executed as a new sell order. Can you help me find why it happend.
Regards,
Srikanth
Hi Sujith,
I'm using python client. Can you explain why we need to exit the order when its stoploss/target is already hit. Also, my bo order works fine for most of the times. Once in a while some BO gets executed in the stoploss but the target …
Hi Sujith,
Below is the error I'm getting in between when my script is getting executed. It comes randomly and my program is getting exited. This issue I'm facing today only. Same was working fine yesterday.
ERROR:websocket:error from callback…
Hi Sujith,
I'm expecting stop-loss as 18.1 and target as 20.8. Also trailing stop-loss to be 0.1.
i.e. when the price goes to 19.7 from 19.6 my stop-loss should be moved to 18.2 from 18.1. Can you please help me understand the values to be given…
Hi Sujith,
I have followed the same steps and got the token earlier and used the websockets to receive the tick. Lately I added some more steps to my algorithm to get the cash information using "margins" API. From then on I'm facing issue. The …
Hi Sujith,
I have called KiteConnect function to log in and got the request token from the login URL. Then trying to get the access_token using request_access_token. But the access_token is always returned as 0. Can you help me resolve this issue…