@shaha You can just do if variable. For example in this case if parent_order_id is sent then it will be more than few characters.
if order["parent_order_id"]:
pass
These are the current rate limits
Quote API - 1r/s
Order place API - 10r/s
Historical API - 3r/s
All other endpoints - 10r/s
There is also a 200 order placement per minute limit by the API.
There is also a cap on number of times an order can be m…
@VenkateshV You can find detailed examples and integration for Python Kiteconnect client here under Python section - https://kite.trade/forum/discussion/1994/a-curated-list-of-things-related-to-kite-connect-api
You may have to tweak a bit before using it in client since there are few node specific libs are used. For ticker implementation you can check this - https://gist.github.com/ajinasokan/b36d17da1a58af62782978c16bca309a
Yeah this is paid service since day 1, you can subscribe to this from your apps edit page in Kite dev console. You were able to access it for last few days because we had some issue with one of our server authentication and its fixed now.
This happens when you name your python script as websocket.py which overrides the import of websocket-client library inside Kite connect module. So just rename your python script and it should be fine.
@RP3436 It's a bad idea to use Sqlite since it doesn't support concurrency well. You can read more about it here - https://stackoverflow.com/a/26864360/973508
Here is a sample project which you can clone and use it - https://github.com/vividvilla/k…
@rpsvinod No, its just a reference to webhook. You still need HTTPS to receive postbacks. You can checkout Letsencrypt to generate SSL certifcates for free - https://letsencrypt.org/
@krtrader Please check this documentation on how its calculated in Kite charts - https://technicianapp.com/resources/pivot-points/
For other technical indicators calculations please refer this - https://technicianapp.com/resources/?filter=studies#a…
@prem We will start providing order fill updates (updates for statuses other than COMPLETE, REJECTED and CANCELLED) for postbacks in a day or two. We are working on Websockets updates, since it needs a major changes to our existing system it might t…
@prakash.jj We have set a hard limit as minimum 100 paisa trailing stop loss for all the stocks so you can't set less than that. You can contact our support and clarify regarding this.
We only provide assistance for Kite Connect API related queries in this forum. Asking for cracked version of a software is illegal and its not recommended.
@krtrader This is very subjective and all depends on your usecase, for example PHP is easier to implement for webapps and JAVA is used for Android apps. As far as our client libraries are concerned it really doesn't matter since you can't compare bo…
@puneetbijnor4020 Currently BO and CO orders doesn't require tradingsymbol to be sent sending it because these two are special API's for us internally and in the upcoming version we will be unified (User may not be required to send all the fields an…
You are trying to fetch minute candles I guess, we don't allow to fetch minute candles for more than 30 days since the response payload becomes bigger (around 9k to 10k candles per month) and more chances that your requests will timeout.
If you wa…
We don't have such API's and nor we have plan to do so in near future. You can use few user contributed libraries such as this along with out historical data API to power your market analysis.
Sure we will do that, we are on the verge of making things more stable and faster and after that we will be focusing more on structuring these things. Thanks for your support.
@arunrambo2000 I checked with backend team again and they updated me that this will be right format and was a part of the update we did on weekends. We will update this on our docs and changelogs.
You don't need to have Python client for this to work since Ticker protocol is implemented in JS only here and you can directly embed to your web pages. Btw this is how ticks are received and shown in Kite web currently.
@soumyadeep Thats an example which shows you that you can change mode or subscribe to any other instruments while websocket is running in different thread. Its just an basic example and you might be doing the stuffs related to your app logic.
@kaveri You can use this pure JS implementation of ticker to get ticks in frontend - https://gist.github.com/ajinasokan/b36d17da1a58af62782978c16bca309a
You need to mention 10 in the order quantity. You always send the same quantity you placed unless you want to change the quantity it self. In this case to modify quantity for all the pending quantity you send quantity 10. Suppose you want to increas…
Flask itself has a inbuilt server which is invoked when you run this script so you don't need to user one separately but if you are deploying Flask in production then I would recommend uWsgi.
You can always use Websocket live streaming data to aggregate minute or data for any period. This week we will release API to fetch market data for more then one scrip.
Yeah it wasn't assigned to callback so it won't get called on error or connection close. If the connection is same and you have already subscribed once then you don't have to resubscribe. You just need to change the mode.
PS: I have updated the gist
You need to filter out all the EQ scrips by yourself since we offer only exchange level instruments file and not series level. Except EQ series all other scrips symbol will be appended by -SERIES_NAME. For example BANKBARODA-BE, IOLCP-BL etc
@puneetbijnor4020 Status will be open only but filled_quantity and pending_quantity might differ. So you can edit the open order as usual - https://kite.trade/docs/connect/v1/#modifying-orders
@ravikumar555 Request token is actually valid for 5 minutes and within that you must exchange it to get access token. If you lost the access token then you should reinitiate a Kite Connect login flow to get new request token. The logic is very strai…
@algotrader29 It's not a good idea to rely on historical API and its very difficult to tell the cut off time since there are considerable delay in processing and sending the data from our end since we store millions and millions of candles in databa…
@algotrader29 All of out Kite platform uses same Kite Connect API which we provide and we don't distinguish anything at our side. So there is no priority based fills at our end.
@Vishwadeep Seems like issue in PHPKiteConnect in this line - https://github.com/rainmattertech/phpkiteconnect/blob/master/kiteconnect.php#L328
Order id is not sent in $params. We will fix the issue in next release but for now you can send $order_i…
@[email protected] It seems like you have named your program `websocket.py`. Since it's a name of the dependency you can not use it as your module name. Rename your file and check if it works.
@rishiajmera Make sure you pass request token and api secret correctly. I hope you are getting `request_token` by following the auth flow as described here (https://kite.trade/docs/connect/v1/#login-flow)
@soumyadeep Yeah you need to call the callback if its assigned with the raw data. Here is how _on_data method will be after modification
def _on_data(self, ws, data, resp_type, data_continue):
"""Receive raw data from WebSocket."""
# Set last read…
@soumyadeep We don't have on_data callback in PyKiteconnect - https://github.com/rainmattertech/pykiteconnect/blob/master/kiteconnect/__init__.py#L881
But yeah in next release I will add this callback and can be used to receive raw data from socket…
@soumyadeep Currently we are not exposing heartbeat in any callback so you might have to edit the Pykiteconnect code yourself and add on_data callback.
@jvshk78trade on_tick function is a user defined callback and when you assign it like this kws.on_tick = on_tick then on_tick function will be called whenever there is a tick received with two params tick and ws where tick is the array of ticks obje…
@jvshk78trade Following up with my previous answer. Here is an example where I have enabled threaded option and running WebSocket in different thread but changing modes every 5 second in main thread - https://gist.github.com/vividvilla/db62e69af4483…
Hi,
You can try this example - https://gist.github.com/vividvilla/10a5ca6e5a479a904e0fdb66dfd6a108
You need to use option threaded=True incase you don't want to block your main thread and run WebSocket in different thread than your main thread. Yo…
Hi, Welcome to Kite Connect developers community
1) should I store the tick data with sql in a tabular format and implement the strategy?
Its always good to store persistent data in database and load the required data in memory or memory based key v…
@soumyadeep You can either initialise auto reconnection while creating WebSocket connection or enable it anytime. Also note that while your program is running you might want to adjust reconnection params such as reconnect_interval and reconnect_inte…
@Shaha I would recommend you to go ahead implementing postbacks for now since our development team has prioritized releasing Kite 3.0 API and web and after that only we have plans to implement this.
@ramprabhu77444 Existing library is a third party tool and this is the official one. You might have to change your app to accommodate changes to API calls.
Instrument token won't be changed for a scrip unless its exchange token which is set by exchange is changed. So for most of the scrips it shouldn't change but it's always good to update your instrument token from our instruments dump just to be sure…
Hi, We are experiencing issue with our data center connectivity. Few requests may fail between OMS server and our servers. We are working with our data center team to resolve the issue asap.
@atulsingh7890 @ravi_ranjan We are trying to reproduce the issue but need some clarity on the issue.
1. While fetching minute candles for time range before 6 month, was it always giving error with no candles found? or is it intermittent?
2. If yo…
@jana1234 It might take several seconds before you can get the candle for previous time frame. Its usually around 30-40 seconds but its not always same.
@dee You shouldn't be getting NaN. Can you please post the chart api response here (just the c…
Yeah, You can only use Publisher app for Kite connect basket orders. If you would like to access all the API calls then you should create a Kite connect app which is priced Rs.2000 per month.
You can use quote method to fetch quotes. You can do something like
$infy = $Kite->quote("'exchange'=>'NSE','tradingsymbol'=>'INFY'");
Refer this - https://kite.trade/docs/phpkiteconnect/class-KiteConnect.html#_quote