@Sowmay instrument token numbers are different for the same stock (like INFY) for NSE and BSE. So you will get ticks from whichever exchange you subscribe to using the corresponding instrument token.
@sujith I renewed the subscription yesterday i.e. May 2nd. Hence I expected the end date of the subscription to be Jun 1st. The Kite API end subscription date is showing correctly as Jun 1st but the historical Add on subscription end date is showin…
@sujith
1) No.. this is happening in Historical API call... It is same as the error that started this thread. Basically I don't get any records returned for a 10 min historical API call. I am handling this error so that my script won't break just b…
@sujith any idea why this is happening? I see these errors everyday. Today with HDFC. It seems the problem is not with the scrip but with the server because the failure scrips keep on changing...
@sujith I am also seeing these errors since the past week...
(b'\r\n504 Gateway Time-out\r\n\r\n504 Gateway Time-out\r\nnginx\r\n\r\n\r\n
I am getting this error in Historical API calls... Its really frustrating to see the script go down with one…
@sin what you are doing is inefficient at two ends: 1) zerodha servers get clogged with API calls for live quotes 2) your system resources held up with API calls, which is resource intensive
You need to go to websockets for getting live data... Yo…
@sujith i thought kite api and kitefront both have the same datasource. And I believe this has been confirmed by @Kailash as well. Is this not true? I have been reconstructing minute candles from websocket data but the data often doesn't exactly mat…
@menaveenn @sameer From the earlier discussions, the recommended solution to get live 1 min candles is to build 1 min candles from websocket data yourself. The solution is not to hit the server every minute to find out the latest minute candle.
@sujith @Kailash @vivek I missed adding you folks to the message. Can you please care to comment to my above query? Also what will I get back if I cancel my subscription today (I purchased the APP today too)?
@sujith So I have to pay 4000 even if I just want to have access to Candles API? This was not the case when you first started, is not it? I have purchased an APP today (which mentioned 'Full fledged trading API') and I am only seeing ADDON option wh…
@yash544 @vivek I have been reading little bit about integrating webhooks with python without having myself to run a server for the HTTPS postback link. AmazonSQS/IronMQ seems to be a good solution. Both give free options for the requirements of a r…
@Kailash I believe when PiBridge was launched, it only provided ability to generate alerts (buy/sell signals) but it didn't allow placing orders automatically. Now that we have api's for order placement via kite, is Pi also enabled to place automati…
@bingo The following are the ticks I received for RELIANCE. Observe the ohlc data. It is constant over these ticks and was constant for more than half hour that I gathered ticks. The reason is the ohlc in each tick is the ohlc of the entire day not …
@bingo As @vivek answered in the below question, the ticks are directly streamed from exchange and they do no contain the timestamp. So I think it is not possible to exactly know the interval of each tick duration.
https://kite.trade/forum/discus…
@Kailash I subscribed to RELIANCE (TOKEN: 738561). This repeated today too. Please see the following quotes streamed between 9:22 and 9:23 am. Please see 'Orders' field below.
[{'buy_quantity': 269356, 'ohlc': {'high': 1097.0, 'close': 1087.55, 'op…
@Kailash
I am experiencing the same problem with your python client too... please see the below streaming data I got...
{'buy': [{'quantity': 205, 'orders': 196608, 'price': 1093.15}, {'quantity': 483, 'orders': 327680, 'price': 1093.0},
@botany…