Hi Sujith,
Yes, subscription for trading and historical apis are live and expiring on 20th Oct 2022 and it’s on auto renew mode.
I will send you key and other details on DM shortly.
Regards,
Nayan
btw, I have already setup TOTP since it's introduced, there is absolutely no change from my side. It was working great till yesterday but today even after many attempts not able to generate the access token.
@Matti - How Do I setup multiple phones with Google Authenticator? I don't have personal account with Zerodha instead I have corporate account in my firm's name and there are multiple persons handling the account. 2FA is clearly restricting access t…
Ok, I have set the code as per your instructions. But it didn't do anything. Please check out following video, out of 5 times, 2 times it did not give me tick data.
https://drive.google.com/file/d/1i5QhS0vxozDKZd5YXaxJZRWjL-1Nf0t-/view?usp=sharing
Here is my file
https://drive.google.com/file/d/1OFIas3vS_YxF9lKNK4I782zAaXDWF1Ib/view?usp=sharing
When market is live, if you run this file out of 5, 3 times you don't receive ticks.
The candle data generated using the live market data provided via the internet will not match when the same data is dumped on two machines.
--> I don't think this is true statement. If you use source timestamp, candles generated anywhere in the w…
Then how come data I am seeing in websocket is different then chart at https://kite.zerodha.com/chart/ext/tvc/INDICES/NIFTY 50/256265
Please refer to my earlier post with screenshot.
Is there anyway we can talk over the phone so I can explain it b…
Yes, I am using websocket data to generate minute candle at myend (runtime) using node.js client library provided by zerodha.
It looks like "timestamp" field is not representing exchange timestamp, may be it's using your server's timestamp instead …
Please check attached screenshot, it's using node.js library. Please check/compare the data (specially timestamp) with actual candles at https://kite.zerodha.com/chart/ext/tvc/INDICES/NIFTY 50/256265
Hi,
Is there any change from your side since around 26th Jan 2020? I think there is something wrong with the exchange timestamp that I receive in nifty quote around that date. Can you please confirm?
Not sure which brach it uses but I installed it using
npm install kiteconnect
The github link I posted above, I got from your documentation page:
https://kite.trade/docs/connect/v3/#libraries-and-resources
Hi,
I found the issue, It's in the Ticker library (node.js version).
https://github.com/zerodhatech/kiteconnectjs/blob/kite3/lib/ticker.js
Line #545
if (timestamp) tick.timestamp = new Date(timestamp);
Javascript Date object requires milliseconds…
Here is my code, I am using Node.js client library.
function Setup_Ticker()
{
ticker = new KiteTicker({
"api_key": api_key,
"access_token": access_token
});
ticker.autoReconnect(true, 20, 5);
ticker.connect();
ticker.on("ticks", onTicks);…
Hi,
I am using node.js client library and it does not return last candle. Here is my code:
var KiteConnect = require("kiteconnect").KiteConnect;
var access_token = "MY_ACCESS_TOKEN";
var options = {
"api_key": "MY_API_KEY",
"debug": false
};
k…