@MadhuSingh You can download version 3.5 from Kiteconnect now and for details about the release refer here - https://github.com/rainmattertech/pykiteconnect/releases/tag/3.5
You should be initializing empty Panda's dataframe for ticks data structure and then append ticks to the frame.
Reference - https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.append.html
We can see the postbacks sent in our logs and one of the request also returned us 200 response. Seems like it's an issue at your end.
INFO:2017/06/30 10:03:13 https://database-165705.appspot.com/ 500
INFO:2017/06/30 10:28:51 https://database-165705…
I was checking orderbook for your registered app and it seems like all of the orders has been placed from Kite web and not through your app. Your app will be getting postbacks only for the orders placed via itself and not for other platforms for the…
@Pandiyaraj Are you using any of the official Kite connect libraries to get ticks or you have rolled your own? Few instruments which you posted above like SBIN (779521) are volatile and you should be getting different LTP every few seconds during th…
Hi, It seems like your Historical subscription has been renewed (on 27th June) but the app itself wasn't renewed because of insufficient funds. You can activate your app from the app page after depositing funds.
@abhi007 We haven't released API for individual contracts margin (Equity and span margins) yet but we are currently testing and will be releasing it once we are good to go.
@Pushwinder I guess you are still using the current production Kiteconnect but auto reconnection feature is in feature branch. You can do this
1. Uninstall current kiteconnect package or create a new virtualenv to test. (pip unininstall kiteconnect…
@pivottrading.net Apologizes for the delay, as @sujith mentioned we still working on revamping the backend which we feel very crucial for us at this point (Our client base has increased exponentially in last few months) but nevertheless we will work…
@MohitGowda As Sujith suggested you should be delegating the DB write process to new thread instead of blocking current thread. If you are using Python then Celery is well known for these kind of applications. There are many other tools also for Job…
@divyakumar If you are calling the function from on_tick() which does an intensive calculation or something then it's advisable to queue the processes by celery or running it in a different thread and not blocking the current one.
Also you can chec…
@gully We get binary data from exchanges and slice the required bytes based on mode subscribed and send it to the client so it doesn't involve any JSON conversion and all. The only place where the binary is converted to JSON is in client side.
The …
@gully Through sockets we send data in binary format and have optimisations to reduce the payload size. It's up to the client to scale it however it wants. Also, Clients parses it to native types such as Python client parses it to dictionary and Nod…
@viveshar Can you please try our new Pykiteconnect version which has the auto reconnect feature? Here is the link to get started - https://kite.trade/forum/discussion/comment/5804/#Comment_5804 and https://kite.trade/forum/discussion/comment/5761/#C…
For people having issue with installing.
1. Uninstall current kiteconnect package or create a new virtualenv to test. (pip unininstall kiteconnect)
2. Install the new package from Github branch -
pip install https://github.com/rainmattertech/pyki…
@naz I ran it for the entire day and I could see it got disconnected few times and automatically picked up. A simple exercise to test is to run it and disconnect your wifi for few seconds and then connect it back.
@prakash.jj Maybe you are this in…
@prakash.jj Here is a beta version of PyKiteconnect with auto reconnect feature - https://github.com/rainmattertech/pykiteconnect/tree/reconnection
Only change you need to make to your code will be enabling auto reconnect (its not enabled default)
…
@naz @pranksterguru @Shabeershah2002 Here is a beta version of PyKiteconnect with auto reconnect feature - https://github.com/rainmattertech/pykiteconnect/tree/reconnection
Only change you need to make to your code will be enabling auto reconnect (…
@guna Yeah it's sent in the body just like any other normal post request. FYI you can also send as a JSON content type or standard application/x-www-form-urlencoded.
@guna This is a post request you need to post on endpoint https://kite.trade/connect/basket with params api_key and data where data is a JSON string of the following format.
[{
"tradingsymbol": "INFY",
"exchange": "NSE",
"transaction_type": "B…
@botany02 @pranksterguru Currently we are relying on specific API provided by our OMS vendor for getting order notification but we don't get enough support for those APIs but we have built a system ground up to replace this entirely and it would tak…
@ramatius We checked our logs and there seems to be very few connection timeout errors from our side but these are very few in numbers (less than 0.0001%) of our total orders. Please provide us your request and response logs and we might be able to …
@joy Checking interval between 2 heart beat is the better approach here because when the client is not aware of the network disconnection it could take several seconds before onClose or onError method will be triggered.
To simulate this you can ru…
In KiteconnectJs client we have a reconnect mechanism which runs a timer to check interval between last heart beat or data received time to current time and if it exceeds X seconds then it internally reconnects - https://github.com/rainmattertech/ki…
@malay Around 60% our API is already moved to the new system. Calls like orderbook, holdings and positions are now served from our new API and in a month or so it will be migrated completely.
@kivijoshi Can you implement logging and on_close callback to check if its getting closed or died because of some error. Here is an example to implement logging - https://gist.github.com/vividvilla/0d9fcaec1c02d65c4a429e43d55ae667
@anandaravindan I have tested your code and it gets connected everytime I try connecting and I do get ticks without any issues. Please check your network and try testing it in remote server.
Here is the code I have modified and tested.
function set…
@anandaravindan we have tested it extensively and we couldn't reproduce the issue. If possible please share your code with us and we will try to debug it. We acknowledge that we had issue connecting to ticker last week but that has been resolved and…
@anandaravindan @[email protected] Please make sure you are sending your currently active public token and also check for the error status code you are getting and post it here, if it's 403 then you are not sending an active public token.
@[email protected] @praksterguru Please make sure you are sending your currently active public token and also check for the error status code you are getting and post it here, if it's 403 then you are not sending an active public token.
@kabraanurag90 You haven't defined any logger with name websocket hence you are getting warning. Here is an example to implement logging properly - https://gist.github.com/vividvilla/0d9fcaec1c02d65c4a429e43d55ae667
@joy We don't have consolidated response for margins internally to our OMS hence even if we abstract internally we have to make two API calls and hence more prone to failures. We will try to work with our OMS vendor to consolidate the response but i…
@kbhari90 You can set timeout to higher than current value to check if it solves your issue. You can set timeout while initializing like this
kite = KiteConnect(api_key="your_api_key", timeout=15)
Default timeout is 7 sec.
@kapilaggr It's an overkill I feel. Unless you have specific requirements you can just spin off a AWS EC2 server or Digital ocean server to get postbacks and use it in your app. We will release few examples to do the same.
@DS4769 As soon as you login to app anything out of Kite ecosystem such as Nest, Pi, trade.zerodha.com your Kite session will be cleared and you need to regenerate access_token.
@charuvindatre Are you referring to the data here by any chance - http://zerodha.com/z-connect/queries/commodity-queries/mcx-profitloss-for-every-1-rs-change
@raju.bn I have tested with sample script and it seems to be working. Please check again with this script - https://gist.github.com/vividvilla/0d9fcaec1c02d65c4a429e43d55ae667
@Sowmay Yes, you can pass api_key param with your api_key. Here is a list of available params you can set - https://wordpress.org/plugins/kite-publisher/other_notes/#Available-attributes
@trader007 Hi, I think you are trying to access orders list incorrectly. Please post more info about your issue. You can share your code or pseudo code so that we can check the issue.
@botany02 The future setup will still be using core TR OMS which is pretty solid as per our test but the issue we had till now was the XML api layer they had written top of the OMS which was a huge bottleneck for our current setup. As per our early …
@Siddharthak Can you please enable logging and check if the error is getting logged while exiting. You should do something like this - https://gist.github.com/vividvilla/a1e649e70ab00a8f00ab5c303e3db2fb
@premkumar You can't insert Javascript code to WordPress code since the editor doesn't support it. There are other ways to include your Javascript code - https://www.godaddy.com/garage/webpro/wordpress/3-ways-to-insert-javascript-into-wordpress-page…
@chintanvhparmar Request token will expire within 5 minutes of its generation so once its generated you have to use it within 5 mins to exchange for access token. KiteConnect object you can use it aslong as user is logged in and you are not getting …
You should be sending tradingsymbol as code for BSE segments also. Your first link works if I change exchange to BSE - http://transact.sowmayjain.com/?code=INFY&qty=100&xchng=BSE
KiteConnect is purely an execution platform. We don't provide any API for strategies, you have to do it yourself. People in here usually write their own programs to backtest and place trades using Python.
@itsram90 You need to run it like a server. You can refer this stackoverflow answer for implementation - http://stackoverflow.com/questions/30276432/python-infinite-loop-script-running-in-background-restart
1. Does Kite provides a simulation platform where i will just place the market orders? Platform will execute on the available ask price. And end of day i will have a trade book where I can check my returns.
We are working on the paper trading platf…
@srn11 As sujith said you can directly curl historical api with your proxy setting and see whats the error you are getting.
https://api.kite.trade/instruments/historical/738561/minute?access_token=your_access_token&api_key=your_api_key&from=…
@dheeraj_sachan @rktheinvestor1 You can check the Pykiteconnect documentation here. I think the confusion here is variety is implicitly set to regular unless user overrides with variety as regular. Here is a check of possible varieties you can pass.…
@pivottrading.net It makes sense to increase the rate limitng for order cancellation but for order place Kite connect is not meant to be used like that. Anyway we will increase rate limiting for both the api calls.
@pivottrading.net We have identified the issue and it was caused when you send non integer value for stoploss. We have fixed this in our production version and you should be able to use it. Though we found few issues related OMS which throws invalid…
@mohit77bansal If it gets disconnected immediately after you start then there is issue with your server/system ssl. This has been reported previously by Ubuntu users and it turned out to be issue with open ssl. The work around is to pass param disab…
@Pushwinder You have to pass variety while cancelling orders. By default its taken as "regular" if it wasn't mentioned. For example
kite.order_cancel("161115000491500", variety="bo", parent_order_id="161115000491499")
@Pushwinder This is happens when order is already cancelled/exited and you are trying to cancel/exit it again. Can you please check in orderbook if the order is still pending before you try to cancel/exit? also for CO it s optional to send parent_o…
@sameer Once contract is expired its token might be re used by exchange for new contracts hence we also update the token and don't give historical data for expired contracts. We will check with our data team to see what can be done.
@abhishek.gaikwad Its exchange regulation to login user atleast once in a given trading session. So currently its not possible to get long standing tokens. You can checkout headless browsers like Selenium and Mechanize.
@gkannan1965 I have manually activated the app. Since our ledger api failed we couldn't auto deduct and renew the app automatically. Please make sure you have enough credits at the end of your subscription to avoid such instances.
@Bipinpatra You can achieve that using Kite connect APIs. Please check out docs - https://kite.trade/docs/connect/v1/ and available libraries for it - https://kite.trade/docs/connect/v1/#libraries-and-resources
You have to note that user has to ma…