('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))
Go through this thread.
Kite developer provide any API for chart.
We do provide daily and intraday candle OHLCV, and OI in the historical data API. Go through the documentation here.
https://kite.zerodha.com/connect/login?api_key="XXXXXXXXXXXX"&v=3
You need to remove the double quote from the api key. It will be https://kite.zerodha.com/connect/login?api_key=XXXXXXXXXXXX&v=3
Go through the documentation here.
connect another account with same api for buying and selling?
No, you can't place an order on another account using the same API key. You can link an single user id to an kiteconnect app. You might need to build this relay system at your end, that t…
{"status":"error","message":"Invalid or expired connect session. Try re-initiating login.","data":null,"error_type":"InputException"}
Are you using the correct request token to generate the access token?
Go through the login FAQs here.
But I have tried the above symbol too and also used historical option chain symbol, but still not getting any response.
Can you paste here the request debug log? We will check the same from our end.
We use the same ticks/websocket stream to form candles. Make sure, you are correctly aggregating volume. And use Volume traded for the day field to calculate the total volume within that time range(minuteEndVolume - minuteStartVolume).
Everyday in morning i have to generate token
Yes, you will need to generate it every day.
It's not be generated it's go in error and I have already paid kite API
Can you paste here the error log?
1) Last Thursday of the every month i.e. Monthly expiry
2) Wednesday of next month i.e. Weekly expiry.
Yeah, this is correct. You can use the last Thursday of the month as monthly expiry in this case.
I'm seeing, there is a difference between the data I received as a response to the API call and checking the Zerodha online graph for the same script.
Go through the historical data API FAQs here.
when quote is requested. sometimes it returns half data (requested 20 tradingsymbol data, but returned only 15) and sometimes it doesn't return any data at all just an empty dictionary
Are these instruments trading? Can you paste here the debug log …
ReadTimeout: HTTPSConnectionPool(host='api.kite.trade', port=443): Read timed out. (read timeout=7)
I am frequently getting this error.
Which API end-point is throwing this error?
We aren't seeing readtime out much in our logs. Most likely, it would…
Currently, tagged order(tag field in the order placement) is only retrieved in the orderbook. The option to be reflected in the console would be added soon. We will announce it here and update the kiteconnect docs as well.
For end-points rate limit, go through the documentation here.
Since I'm using this to calculate pnl and plan on doing it every couple of seconds,
We don't recommend polling positions to calculate. This thread explains in detail.
I just checked and OI data is showing fine and updated for today as well.
[{'date': datetime.datetime(2023, 12, 14, 0, 0, tzinfo=tzoffset(None, 19800)), 'open':
170, 'high': 304.75, 'low': 170, 'close': 277, 'volume': 1411050, 'oi': 324900},
{'da…
For IRCTC, in dump token= 3484417
This token is for NSE:IRCTC.
But in Holdings, the token= 138964484
This token is for BSE:IRCTC.
This article explains in detail about different exchange being shown in the holdings.
where can i find the order_ids which got rejected in the past 2-3 days?
Only current-day rejected orders is available in the orderbook APIs. For successful orders, you can visit to console.
but after a while (like an hour) sudden random trades are automatically placed in the zerodha kite mobile app. Is the kite.place_order thing not working?
place_order is working perfectly fine. Make sure, to debug your order placement logic. Can you …
Can you please guide me on how fast historical data is fetched from the Kite server?
So, I make one Rest API poll to fetch one instrument. What is the speed rate of getting this poll result?
If I get this data below 1 second, then is there no need t…
Both API documentation and Python example mention about "order_type" and "product" fields in the order_list. Go through the place_gtt python example as well here.
I just checked for 256265, and it's showing the latest 5minute data.
{'date': datetime.datetime(2023, 12, 6, 10, 45, tzinfo=tzoffset(None, 19800)),
'open': 20904.25, 'high': 20921.2, 'low': 20904.25, 'close': 20920.6, 'volume': 0}
Are you sure abo…
Can you paste here the output of pip show Twisted from your local env?
Does pip install --upgrade Twisted doesn't help?
Maybe try out the steps mentioned in this thread.
GET /instruments/historical/10534658/minute?from=2023-11-30+10%3A05%3A46&to=2023-12-05
Token- 10534658(BANKNIFTY23D0647400CE), this instrument has not received any trade/tick before 5th December, so you are getting data from 2023-12-05 09:15:00.…
I could not connect to/subscribe to BankNifty F&O Instruments on Kite connect API all day.
only round figure Instruments like 46500/47000/47500 CE and PE are available for subscription.
Hey @prakashreddy7904, didn't get you on this? Were you no…
These zero volume candles has same ohlc equal to previous non zero volume candle's close.
It can be there because of the depth changes in the tick packet. If we receive the tick packet from the exchange, we show it on the candles formation.
similar data for multiple candles.
Didn't get on this? You mean multiple day candles has similar OHLCV for the month of March, April 2023? Can you paste here the complete debug request?
i need historical data of past 5 year
Yes, it's available for d…
I queried for a particular strike's data, and lets say 11.15am and candle's, OI was x
I again made same call after 15 mins. lets say at 11.30.
Now 11.15 candle's OI vale has changed?? How's that possible on closed candle.
Can you give us a debug log…
is there any way to check possible ticker events ?
No, other update events at the ticker websocket. You might have to periodically look out for orderbook open orders.
You can handle OrderException, and look for the error message.
Example:
{"status": "error", "message": "Enter Valid Price", "error_type": "OrderException"}
from kiteconnect.exceptions import OrderException
try:
# Order placement
except OrderExcep…
certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)')))
Looks like an issue with the untrusted certificate. You can follow the steps here.
Connection Aborted : RemoteDisconnected - Remote closed connection without response error.
This is not a complete error stack trace. Can you paste here the complete stack trace?
Will the API adjust all the prices before 07-Nov-2023 for corporate action and return 500 for the closing price on 01-Nov-2023 (if the API call is made after 07-Nov-2023) ?
Yes, Corporate action is updated on the historical data at the beginning of …
If i do web log-in and log-out several time while my algo is running then will face connection problem in algo?
Yes. Go through the login FAQs here.
ConnectionResetError: [Errno 104] Connection reset by peer
Which API call has thrown this error? Ca…
Should the unsubscribe be called in the same function where subscribe was called? I have declared ticker at a global level and tried to unsubscribe in a different function call i.e based on user input for a particular token.
Go through this thread.
Yes, ticks were coming perfectly fine. You can refer to the chart candles as well for the same duration, we use the same websocket feeds to form candle.
What is the status of this now? Can we still use 3 websockets with one key or not? And is the max limit of instruments per connection still 1000?
Go through the websocket FAQs here.
@dgmattam @SnehaTVR @Abhishek Gupta We are not able to see any specific issue of this at our end. Can you paste the complete stack trace here?
Is it still happening? I checked this manually multiple times, and it's working fine.
Our kiteconnect system is reliable and used by 1000s of developers, including a lot of start-ups.
429 - TooManyRequests
This error occurred because of being rate-limited, exceeding the rate limits mentioned. This thread also explains in detail the r…
some stocks (AWL and IRCTC are the ones I have noticed) I am getting data prior to the listing date of the actual instrument.
Thank you for highlighting. We have removed data prior to the listing date for the mentioned instruments.
is there any way…
@HowUTrade Can you give us a complete tradigsymbol for this instrument? Looks like a PE instrument, FINNIFTY23N0719500PE. We are investing in this to debug those tick logs, as per the tradingsymbol.
but in my VM, it runs only for 1st time. second time onwards I have this ReactorNotRestartable exception
Yeah, it might be something similar to this issue of the Anaconda environment. As, in those environments, twister can't be restarted. This GitHu…
I am trying to API based trading. Is there a way for me to find through the API that I cannot trade in BSE?
You can check the list of allowed trading instruments from the full instrument list. You can write an filter logic based on the exchange, etc.
To get intraday data , Do I need to subscribe to historical data subscription
To get the candles, you will need to subscribe to historical data APIs. Or you can candles at your end using websocket streaming API, this thread explains in detail.
the correct Instrument Token for NIFTY23NOV19600PE and NIFTY23NOV19600CE under NFO-OPT
You don't need an instrument token to place order but a trading symbol and exchange. Go through the documentation here.
WebSocket doesn't need a specific port assignment at the receiver end. Kite supports multiple WebSocket connections without the necessity of binding to separate ports. You can create three separate instances of WebSocket clients to listen through th…
I see that only 1 byte of data is being received.
This is a successful websocket connection ping.
I was hoping the API would return dummy values, or some other exception showing the same. It would be great if the team could confirm.
No, currently we…
data = kite.historical_data(instrument_token=256265, from_date=from, to_date=to, interval='week', continuous=False, oi=False)
I just ran this historical data fetch multiple times. All the runs gave the same start and end date candles.
{'date': datet…
subscribed to Historical API but still facing this exception when trying to access Historical data
Can you paste the error message here?
Go through the historical data FAQs here.
I see sometimes data is not available for the last few seconds of the minute
If there are no trades or changes in the market depth field. There will be no ticks.
how do I decide the close price of the minute with such data?
You will need to use the …
discrepancy between the Zerodha Kite Tick Data and the Kite Live Data
Do you mean the difference in data between the Kite web market watch and kiteconnect websocket feed?
from = datetime.datetime.now() - datetime.timedelta(days=270*7)
to = datetime.datetime.now()
Any interval candle starts from the requested from timestamp. You can request the from time accordingly.
exit_order is for placing the exit order for CO. You need to use place_order to exit the order for regular order. There you can use the tag param to specify the source.
Is this duplicate status message just for the COMPLETE status?
Can you paste the complete order update log? Hide unique order info related to the user id.