lst_b = [num for num in instrumentsList if num['expiry'] == expiry and num['strike'] == strike and num['instrument_type'] == ins_type
and num['name'] == name]
return lst_b[0]['tradingsymbol']
get_symbols(nte, 'BANKNIFTY', atm_strike, 'CE')
Your abov…
Looks like the above screenshot is from the browser console. Are you trying to run nodejs code using a front-end app?
It won't compile successfully because of the CORS issue. This issue explains in detail.
once i add more instruments for the subscription , i did not get the same for the newly added instruments
Are you using the correct instrument tokens? Ensure you do not exceed the instrument limit count of 3000 in a single WebSocket connection. Web…
I request historical data for an index option instrument during market hours, will it give candle data since morning that day?
Yes. Go through the documentation here. Also, it's not recommended to poll historical data APIs to get the real-time candl…
how many stocks are allowed to get the OHLC data at the same time?
You can fetch historical data for a single instrument token in a request. You will need to loop through the list of instruments. Make sure not to exceed the rate limit. Go through th…
if i cancel the order, will that 700 quantity will be bought and shown in holding the next day ?
Yes, completed orders would reflect accordingly in your holdings.
IDFC24MAR131CE
IDFC24MAR131PE are missing
Yeah, these strikes are not available on the exchange instrument. Mostly, disabled from the exchange due to illiquid strikes with zero open interest. This circular explains in detail the strike scheme.
It's perfectly working for first time run. If I run second time I am facing below error.
twisted.internet.error.ReactorNotRestartable
It's related to the conda environment. This thread and this github issue explains in detail.
1. The dates are wrong
It's not an issue. In node js, Date objects by default are always zero UTC offset. This thread explains the solution.
the volume is also wrong when i sum all is coming to 574163 but not 575163
It won't match because of post-ma…
want to close the socket gracefully and exit from the code smoothly without any error.
You will need to use ws.close(), and gracefully exit the code accordingly.
When i try to run second time same code I am facing this error "ReactorNotRestartable"
Can you paste here the complete error stack trace?
Go through the python websocket FAQs here.
how do I know the initial date for BankNIfty when it started to load the data from initial date till today
We don't expose any specific endpoint in our historical data APIs to retrieve the inception date. You will need to conduct a trial and capture…
When computer sleeps after sometime, I get a read timeout error
Yes, mostly would be network disconnection. Can you paste here the complete error stack trace? That would give more clarity.
how do I interpret the kite.on_message callback?
It's a binary data. You don't have to interpret it at your end. It's handled in client to redirect to exposed on_tick and on_order_update callback accordingly. You need to use on_ticks and on_order_up…
i need to get instruments daily and query accordingly?
Yes, you can fetch the instrument list at the start of the day and filter out the trading instruments accordingly.
HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /callback?type=login&status=success&request_token=xxxxxxxx&action=login
You seem to be using localhost as a redirect URL. Ensure it's up and running to parse…
instrument_token: '136104452',
instrument_token: '138848516',
Both of these instruments are not available in the today's instrument file. You need to get the current trading instruments from the instrument file.
recent candle OHLC not matching with zerodha chart OHLC
Have you requested the historical data API before the candle close period?
Can you paste here the complete request log?
The kite team will not advise putting any logic code inside on_ticks because it will block the performance. so same advice for on_order_update?
Yes, it will block the flow. Callbacks in Python are called synchronously. So, make sure you transfer all…
'message': 'Invalid order params.', 'data': None, 'error_type': 'InputException'
headers=self.headers
Can you paste here the header assignment?
Make sure, to add "Content-Type": "application/x-www-form-urlencoded" in the headers.
Is there a way where I as an app can login on behalf of user without asking them to login each day and without asking their password as well?
No, there is no away as per regulation.
I am referring documentation at :https://kite.trade/docs/pykiteconnect/v4/#kiteconnect.KiteConnect.get_gtts
but not able to figure our what data it is returning.
You can check the sample response structure here.
Is there any clarification on whether we will now receive millisecond precision in exchange time now?
We might look into adding millisecond-timestamp precision feasibility.
I see difference between volume on the chart day candle and the last tick received through websocket streaming
Day candle(from bhav copy) includes block deal trading and post-market trading. So, there will be the difference.
AttributeError: NoneType object has no attribute sendMessage
Go through this thread. If still an error, you can post your complete websocket code here.
@trd1
We run an open price update process around 09:20. The open price is determined during the pre-market period, which spans from 09:07 to 09:08. The last traded price (LTP) received at the regular market open, i.e., 09:15, may not necessarily al…
It's coming fine, 'exchange_timestamp': datetime.datetime(2024, 2, 19, 10, 37). Are you using pykiteconnect?
fromtimestamp in python, negate zero value of second field. Python Datetime documentation explains in detail. timestamp.seconds() to compare…
In the quotes section, I am receiving only the Last Traded Price (LTP).
LTP at end of 5minutes interval eg here: 09:19:59 is the close price of that candle(or which has been the last tick during the mentioned 5minute time block). You can use WebSock…
How to download historical option data which has expired.
As, stated by Sujith above we provide continuous day interval candle data for expired futures contracts, not for options contracts. Go through the documentation here.
What API can I use to do this update from MIS to CNC?
You can use convert_position API call.
When the order gets executed, I get a postback call. Can I call this update API when I am processing that postback?
Yeah, you can update_position, once the …
kite.historical_data(instrument,dt.date.today()-dt.timedelta(duration),dt.date.today(),interval)
Can you paste here the debug log for this request with exact to and from params, being requested?
This is a recent change in behaviour
No, there are no behavior changes from our side on kiteconnect ticker. We stream, as we get the tick packet from the exchanges.
I want to use as copy trading then it has feasibility using kite connect WebSocket for intraday
Didn't get you?
You can make use of orderbook as suggested by Sujith, for getting order received/OPEN status.
I have gone through some threads in this forum saying open price is calculated at 9:08
Yes, a single (equilibrium) price for open price matched is done anytime from 09:08 to 09:15 AM.
NFO:BANKNIFTY24JAN45900CE
This is an January NFO contract, and was expired on 2024-01-25. So, it's returning an empty slice. You can check the full instrument list for the current-day trading symbol.
builtins.KeyError: 'last_quantity'
You seem to be using the older version. v4, readme mentions the changes and client lib mentions the same. This field is called last_traded_quantity.
how can the price on an historical candle be so different for over 1 min. a couple of second is understandable
As, explained above, you shouldn't expect live candles for the intraday period. This thread explains in detail for your above query.
The historical data has last traded price but not the closing price.
Weighted average close price is updated on the day interval historical data, as it's synced from the respective exchange bhav copy.
Screenshot, you have mentioned is of Sell SL order. Yes, you can set trigger and limit price, calculated internally at your end. Go through the order placement parameters documentation here.
can i assign IP and port with self signed SSL certificate
No, you need to use the checksum field from postback response to verify the authenticity of the order placed.
DataException: Unknown Content-Type (text/html) with response: (b'\r\n502 Bad Gateway\r\n\r\n
Can you let us know the request time for 502? We haven't encounter any 5xx errors at our end, for yesterday market timings.
invalid api or access token
the key fil which is saved in my server is having the same access key every time
Make sure, you are using the new api_key at all called instants.
is there anything upgraded from kite api during last 6 month ?
No, there h…
currencypairs .. GBPINR, EURINR ... historical data api is returning the latest candle data with 1 min delay. please can someone look into this?
I just checked and the historical data API is returning fine. It's not recommended to poll historical d…
1006: connection was closed uncleanly (peer dropped the TCP connection without previous WebSocket closing handshake)
Can you paste here/DM your websocket code? As, per the error message, it looks like websocket dropped, due to blocking on the thread…
Company A went bankrupt in 2020 and removed from NSE. If I need historical data for 2019, how do I get data for company A? What is their instrument token?
You can only get current trading instruments tokens and it's historical data. So, the removed…
('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
Are you using a conda environment?
This thread might be of help.
I can't able to get 09-01-2024 and 02-01-2024 date expiry data
nse = kite.instruments('NFO')
This fetches the current day/last trading day instrument list. As you are fetching as on date > 09-01-2024 and 02-01-2024. Those expired contracts won't …
EQUITAS -> EQUITAS HOLDINGS LIMITED
Go through the exchange circular. It's delisted and merged into Equitas Small Finance Bank Limited.
ADANIPORTS -> ADANI PORT & SEZ LTD
This instrument is available fine in the instrument file as ADANIPOR…