Due to some technical glitch,the server returned no content probably,so there was no 'content-type' in the headers of the reponse.
So,the requests library gave key error.
You have to retry incase something like this happens.
NSE updates all data in the evening. At Zerodha,some of the data is updated during the EOD(End of Day) process during midnight.
Rest of this data(including oi) is updated in Zerodha during the BOD(Beginning of Day) process.
The BOD process , ha…
You are entering the credentials(user_id+password) of different client id instead of the one you entered in your app details on developer console.
KiteConnect app is by default enabled for a single user only.
Beacuse you have a pass statement in the except block.
KiteConnect was throwing exception because of invalid variety(upper-case),but the program just ignored it.
Whenever you post a query,you should post the error stacktrace, otherwise,how can anyone correctly identify the problem??
However,first of all,your function name is limit_order but you are calling CNC_limit_order.
Second,you are sending varie…
You can get the average price of a position from positions api as told by Rakesh Sir in the thread mentioned by you.
https://kite.trade/docs/connect/v3/portfolio/#response-attributes_1
There is no guarantee that there will be a tick per second or per minute. KiteConnect sends a tick whenever there is a change in any of the tick fields.
https://kite.trade/forum/discussion/3166/getposition-is-not-having-updated-value
It's not recommended to poll positions for just pnl.
You have to get ltp from websocket/ quote and update pnl at your end.
You need to check status_message, not status in order history if you want to check for historical order failure reason. Doc link was highlighted in the above reply.
@sujanbabu67 ,
The evidence provided is of your application,not the websocket data logs.
Rakesh Sir even logged the ticks ,and no discrepancy was found.
I guess the error is somewhere in your application. As Sujith Sir said, it's not…
Kite is showing the real opening and high. The data you get from historical data api is the same data used to make chart on Kite web/app. You can verify that the opening and high on kite charts is also 233.4.
If you want to exclude the first ti…
Thanks for replying @rakeshr Sir.
I understand that all rate limits are per api_key,only max cap on the number of orders per day are user_id based as told by Sujith Sir in the thread I mentioned. But,the confusion is about the order placement …
Market depth is available in full market quotes and you can also stream it live by using websocket in full mode.
You can read here:
https://kite.trade/docs/connect/v3/market-quotes/#retrieving-full-market-quotes
https://kite.trade/docs/connect…
Rate limits are based on seconds,not per day. There is no cap on the maximum number of requests per day for any api excluding order placement. Order placement api has some daily limits as mentioned in the note section.
You can use the official python client for simplicity.
https://github.com/zerodha/pykiteconnect
However,if you want to directly make requests,
you have to pass headers in the headers param in the get function.
Like this:
requests.get(u…
@tapanjbhatt ,
Yes,I understand. Let's wait for Sujith Sir or Rakesh Sir response. I guess the order limit per second should be per api_key, that's what Sujith Sir told in the thread I mentioned,and that's what seems logical too.
Oh,I am really sorry. I was wrong. Looks like the order place limit of 10 r/s is also per user_id after reading the article.
PS.-Now,I am confused too. Sujith Sir told here and in few other discussions
that all api limits are per api_key. …
Yes,all instances should receive order updates for all orders if all instances use same api_key.
Like,in your example,all the 3 instances,k1,k2 and k3 should get updates for all the 3 orders,o1,o2 and o3. It doesn't matter from which instance a…
Depends on the user_id of the api_key used when initializing KiteTicker.
On_order_update will send all order updates for the user_id mentioned in your app details on the developer console .
You can use ohlc quote and get the close value from it for the previous day closing price, as told in the above comment.
https://kite.trade/docs/connect/v3/market-quotes/#retrieving-ohlc-quotes
You have the request token in the url. So ,it shouldn't be a problem.
You can understand here:
https://kite.trade/forum/discussion/11181/request-token-not-able-to-generate
Instruments list is used for instrument info like instrument_token, trading symbol, etc but not for live data, so market data like last price, is not available in instruments list.
For live data,you can use quotes or websocket.
https://kite.…
You are passing incorrect instrument token.
400 does not mean access denied,its an input exception which means incorrect or missing parameters.
You have to use the instrument tokens from the instruments api.
https://kite.trade/docs/connect/v…
This can only happen if you don't use set access token method.
If you are using that,and still the error,I can't figure out the issue brother.
Only Sujith Sir, Rakesh Sir can help you.
You seem to be making requests during the BOD process time( from 12:30 AM to 7:30 AM). During the BOD process, the system is in maintenance. That's why the 500 error.
You can read about exceptions/error codes here:
https://kite.trade/docs/con…
Yeah,it looks ok. Just one thing you have to add.
Before initializing new KiteTicker instance inside on_close, use ws.stop_retry() ,otherwise the initial websocket thread will continue running and utilising memory(and also printing the error messa…
You will need a valid access token to connect to websocket every time.
So,reconnection won't work in case access token expires. It will give error 403 .
Hence,if you are confident there will be no disconnections,then only continue without gener…
No, as websocket is a single long standing connection. You just need access token to start websocket.
However,you won't be able to make any other api calls if access token expires.
You can subscribe up to 3000 instruments in a single WebSocket connection, and for single api_key you can have 3 WebSocket connection, so you can stream maximum of 9000 instruments for an api_key. because all WebSockets will be independent of each o…
First of all, mask your app credentials when posting on any forum.
Second, these are not KiteTicker errors.
Post the exact KiteTicker stacktrace or debug logs. Atleast,tell the error code you are getting.
1.This is because you are calling kws.connect multiple times in the while loop. So,on_connect gets called multiple times,and so does on_ticks . Because market is closed,you are receiving the last cached tick everytime, making you think that those ar…
Yes ,you can get ltp data with basic KiteConnect subscription through market quotes or websocket.
https://kite.trade/docs/connect/v3/market-quotes/#retrieving-ltp-quotes
https://kite.trade/docs/connect/v3/websocket/#websocket-streaming
You …
Oh,my bad. I forgot there is no last trade time for banknifty. . It's null because banknifty is index, it's not traded.Yeah,then check the exchange timestamp.
The tick data you get through websocket is the same data Kite uses to build candles.
Kite doesn't store tick data. Only the 1 minute candles formed from those candles are stored,and higher timeframes are made from those minute candles.
You can…
Gap ups/downs mean difference between the closing price of previous candle and opening price of the current candle,and can only be seen in minimum 1 min candles on Zerodha , as that's the smallest timeframe on Zerodha. As you noticed,the price mo…
Hello,sorry, I was wrong. I got confused. On Saturday, NSE site was showing TRIDENT/JSWENERGY as BE ,JINDWORLD as EQ. When I downloaded the securities file,the same was shown there too. So,I thought they have been moved to different segments. But to…
You can understand login flow here:
https://kite.trade/docs/connect/v3/user/
You can also refer this video:
It's python code, however even if you watch this video, you will understand the process of generating request token and after …
TRIDENT and JSWENERGY have been moved from EQ to BE. JINDWORLD has been moved to EQ from BE. These will get updated on next trading day i.e Monday.
So,no quote for now.
From Monday,you can get TRIDENT and JSWENERGY quotes by adding '-BE' su…
This doesn't seem to be an issue related to KiteConnect APIs.
This forum is dedicated to KiteConnect APIs only. Please, don't post about other issues here.
This means OMS hasn't responded to the request sent . Are you fetching margins multiple times ??
If yes,then you can add some delay and then retry or as an alternative, fetch funds value at the start of the trading day and keep reducing the requi…
You can have a maximum of 3 websocket connections per api_key. And you can subscribe 3000 instruments/connection. So,a total of 9000 instruments can be subscribed.
This shouldn't happen. Well,can you confirm that the line above the gen_ss ,where you declared 'data' variable is still a comment?? I can see a #. I mean you are not calling generate session twice,once when declaring 'data' and then 'gen_ss',right??…
You had opened a similar thread here:
https://kite.trade/forum/discussion/9004/ticker-being-lost/p1
Are you still doing computations/other api calls inside on_ticks?? That can also cause websocket to disconnect.
error 429 means you are exceeding the api rate limits. Were your trying to open more than 3 websocket connections?? Or exceeding other api rate limits??
https://kite.trade/docs/connect/v3/exceptions/#api-rate-limit
The other errors you showed…
@Prem,
The calculation of the allowed range of strikes is dependent on something which zerodha or any other broker don't share in the public .
You can read here:
https://support.zerodha.com/category/trading-and-markets/kite-web-and-mobile/…
These are the current rate limits.
https://kite.trade/docs/connect/v3/exceptions/#api-rate-limit
You will get error code 429 if you exceed the limits.
https://kite.trade/docs/connect/v3/exceptions/#common-http-error-codes
I suggest you to learn basic stock market manual trading first.
You can't cancel a position. You can cancel a order. Positions are exited.
To exit a position,you need to place a reverse transaction type order with the same quantity you have…
No, there is no flag to know whether the received last candle data is accurate.
Actually , historical data is provided only for backtesting purposes and not for live strategies due to the problem faced by you.
As told by Sujith Sir in the…
For multi-user access,you can check with the compliance team . Write to kiteconnect(at)zerodha.com. Make sure you include complete information about your product.
Yes,tags can be retrieved when you fetch orderbook. However,polling orderbook very frequently is not recommended.
You can use websocket on_order_update/postbacks and use these order updates as events to fetch orderbook/positions.
You get updates for all order status through websocket .
If you didn't get any specific update,it might be that at that time,the websocket connection would have been disconnected as you only get updates when websocket is connected otherwise you w…
@Naveensingh ,
Rakesh Sir has already given the solution. The name of your file would be kiteconnect.py and then you are trying to import from the kiteconnect module . That's why it's showing error. Change your file name and it will work fine.
I told you that's what everybody gives.
You can also use tick by tick data if you want actual realtime data.
Zerodha can help you setup lease lines.
It costs upwards 18 lakhs/annum. You can write to kiteconnect(at)zerodha.com, if you are inte…