@keshav_
You can access volume and last traded price by subscribing in full mode .Check documentation here.
Example to get volume and ltp data:
def on_ticks(ws, ticks):
#Get volume and ltp for all 1000 scrip one by one
for tick_data in tick…
@saurabharas
The Basket order will redirect back to redirect_login along with a request_key. After which, you are free to use this request_key to create a new Kite Connect session for further API interactions(may be request order book and check spe…
@razcads
We are looking to above error. For time being, you can handle above Time out Exception.Something as below:
try:
Your Code logic
except ReadTimeout:
pass
@rbt
You can subscribe up to 1000 instruments in a single WebSocket connection.And Maximum of three websocket connections per api_key is allowed.So, three socket connection can fetch upto 3000 instruments.
@chetan16
Input to kite.quote should be in format [Exchange:Tradingsymbol] eg: ["NSE:BIOCON"] , kite.quote("NSE:BIOCON").
Check documentation for kite.quote here.
@govi03
There was SPIN OFF Corporate Action on 01/10/2015, so above difference of before and after 01-10-2015.For SPIN OFF, we don't do chart adjustment.Chart adjustment is done for Split.
@chetan16
so where did i get these tradingsymbol and their lot size
You can get complete detail of trading symbol, lot size, expiry date, etc for all trading instrument,from full instrument list dump.
@hanzo
Access token are flushed every day at 7:30 AM and new one is generated everyday at 7:35AM.So, better if you need to generate access token post 7:35 AM.
@nikhilbansal
WebSocket doesn't send ticks update if price has not changed at that instance for the subscribed instrument.So, it can happen that, scrip you were checking might not have changed for few minutes.You can check this by adding few volati…
@rvsw
Can you please describe what is the policy on the expected time lag for zerodha on updating the data once a bonus or split has been announced?
Generally done by next weekend.GODREJCP was missed,will be done this weekend.
@visasimbu
Installation seems fine.Is python file in the same location as of Kite Connect Python Client installation?
Can you check this at python file(were you getting Import Error) path pip show kiteconnect.
@ranjan_barat
OUT ==> 'https://kite.trade/connect/login?api_key=qqqq&v=3'
This will redirect you to Kite login page, you need to login and after successful login, url will have request token.You need to use this request token here kite.gen…
@raula_kite127
curl "https://api.kite.trade/instruments/historical/5633/minute?from=2015-12-28+09:30:00&to=2016-01-01+10:30:00"
Here,5633 is instrument token for ACC stock.You need to replace 5633 with instrument token of the scrip you need ca…
@hargok
We were unable to re-produce the same at our end for SL-M Sell order,above LTP error can only come, if you place buy SL-M order.Can you PM me order_id for above such order and your client_id?
@knmurjani
Go through this thread to understand how does continuous chart works.
If you want to get Nifty July contract data, you don't need instrument token for july contract,but you can pass current nifty contract instrument token with extra par…
@kumarj
Character restriction for tag argument is there from starting, you can have look to documentation here.
tag : An optional tag to apply to an order to identify it (alphanumeric, max 8 chars)
@sundar
Go through this documentation to get idea about using Kite Connect APIs.
I also need to know about the compliance because, we are going to derive some results. Kindly let us know the documents required for that.
Can you write to us at talk…
@sundar
Can I get mcx real time data using rest api or websockets to display the values with our formula in our android app . If yes means how much it cost for real time data.
Yes, you can get real time websocket feeds, check the responses here.Kit…
@ramatius
When a BO SL BUY order is COMPLETEd, the txn record's parent_order_id is NULL
Are you talking about Postback response?
We checked multiple fresh Bo-SL Buy/Sell orders, we got parent_id for all orders.
@bharathm1
Yeah, you can open multiple kite connect session with same API inputs, but you need to take care of rate limit while performing API calls.Check all rate limit here.
@kbsbng
Is the 5 r/s Order place API call limit a combined limit for both Order place and order book calls?
No, order API limit of 5 r/s includes Order modification/fresh order placement.
@ZR2734
request_token = urlparse(redir_url).query.split('&sess_id=')[1]
What you are getting here is session_id not request token.You have to generate request_token by opening login link in browser and then login to kite.You can check the flow …
@gjmaster
after some time when i refresh webpage then token automatically expired
Are you talking about Kite Web page?
Can you go to profile page in kite web and check all active session under Active session?
@gjmaster
An access token is valid for one whole day. Unless you log out. Don't request for access token in every run. Once you receive an access token, use the same for subsequent runs. If your previous access token is still active then the system…
@avinashcherukuri
Kite Chart uses Historical APIs to plot candles, while market depth data is feed through Streaming WebSocket.Both of these data can be different, you can have look to this thread.
@krishnakant
Above scenario is called Self-Trading,go through this thread to know in depth about it.
You need to contact RMS on this number,immediately when Self-trade happens, they will do the necessary.
@kamaralikhan
Request error shouldn't come, if you already have put sleep time of 1 sec.You might be skipping sleep in loop somewhere.Can you paste quote call section of your code.
@kiranreddy20
There is no direct APIs for this.You need to find the open position, run a loop and place opposite transaction type order with market order type.
@rupreetg
mis_margin and mis_multiplier are same, difference is just in format of presenting i.e mis_margin is given in % , here 14% and mis_multiplier is in integer multiplier.
As explained above,
(essentially MIS_multiplier and MIS_margin are th…
@rupreetg
"co_upper":4.5% is the maximum SL ,client can enter from LTP and "co_lower": 4% is the margin requirement of contract value for CO.
mis_margin: 14.0%, means for MIS orders you need 14% margins. (essentially MIS_multiplier and MIS_margin a…
@sshiremath2000
There is no direct APIs for it.You need to find the open position, run a loop and place opposite transaction type order and market order type.