You can subscribe up to 1000 instruments/shares in a single WebSocket connection, and for one user you can have 3 WebSocket connection, so you can stream maximum of 3000 shares for one user. because all WebSockets will be independent of each other, …
Hii
You are trying to install .whl file for python 3.7
From the above thread
Can you uninstall the existing kiteconnect?
`pip uninstall kiteconnect`
`pip install kiteconnect --no-cache`
If not working, try this
Assuming PC is 64bit and python 3.6,…
Using kiteconnect we can program such that it can fully automate our Trading no human intervention will be needed for full trading sessions. (We just need to login once a day ..login automation is not allowed)
hii kamaralikhan
go through this thread https://kite.trade/forum/discussion/2760/no-of-request-to-api#latest
and https://kite.trade/forum/discussion/comment/16764/#Comment_16764
hii ..
you can use this code below for orb..
from kiteconnect import WebSocket;
from kiteconnect import KiteConnect;
import time,os,datetime,math;
trd_portfolio = {325121:"AMBUJACEM",40193:"APOLLOHOSP",41729:"APOLLOTYRE",49409:"ARVIND",54273:"ASHOKL…
hii @vivek1302
from kiteconnect, we can get ohlcv. Parameters like top gainers/losers have to be calculated at users end.
check here for all the parameters: https://kite.trade/docs/connect/v3/market-quotes/
hii @raula_kite127
you can find a detailed explanation here:https://www.tradinformed.com/2014/03/24/calculate-psar-indicator-using-excel/
ohlc used to calculate pasr have to calculated at users end.
link:https://kite.trade/forum/discussion/2604/c…
Hii @sanoop
Go through this thread https://kite.trade/forum/discussion/4384/client-installation-issue#latest
Uninstall kiteconnect
Install the given link of .whl file..
Install kiteconnect again...and it would work
hii@raula_kite127
1. kiteconnect has its own validation process which authenticates a user.. https://kite.trade/docs/connect/v3/user/
2. Kiteconnect historical provides us with ohlcv data using which candle chart can be produced on users end.
hii @pulkit
use this code:
from kiteconnect import KiteConnect
from kiteconnect import KiteTicker
from datetime import datetime, timedelta
import logging;
import openpyxl;
import datetime,time,os;
exel_data = {}
"""
exel_data format :
{instrume…
Hii h3h
Option 1.generate the Ohlc candles using websocket data at your own end. (If programmed correctly Ohlc will not differ much)
Options 2. Use historical Ohlc data (not recommended for live trading only suitable for backtesting)
@nitinLogiticks
Yes by using the request token you can run your Algo program.
But there is no need to save the request token as it will expire next day.
hii @Hemen
kiteconnect provides api for ltp for mcx.
for documentaion look here: https://kite.trade/docs/connect/v3/
and java specific look at https://github.com/zerodhatech/javakiteconnect/tree/kite3 for some sample codes
1."Is it possible to get historical data every 5 mins. and every 15 mins. and every 1 hr. instead of getting ticks data"
For doing this you can
calculate the candle at your own end by tick data.
Or subscribe to historical data ..by that you can…
you can try the third party paid services like...
1.https://www.truedata.in/
2.https://globaldatafeeds.in/historical-eod-1minute-tick-ieod-data/
(*personally I have not used any of these services)
Hii @nitinLogiticks
the process to log in and enter request token one-time process that will validate us for a full trading day.
We cant automate login and access token as it's against nse guidelines.
have a look here.https://kite.trade/forum/discus…
1.Invalid checksum arises if one of API secret,API key, access token are not correct
2. Session expired can be caused when access token is not used immediately.
hii @navjot548
1.historical data starts from 1-minute ohlcv data. So we can't retrieve historical market depth using historical api.
2. And it can't be calculated because market depth is not based on any calculation(its simply no of limit buy order…
hii @amamarde
machine a : will require 1 websocket connection that will fetch data for only infy and wipro
machine b : will require another websocket connection for sbin and techm
Hii @ankur19
go to api.kite.trade/instruments to get instuments csv file
Symbol name can't be used to get tick data..
Use their instruments token to get tick data...
hii @rsvw
historical data is an addon to the kiteconnect api.
it means that kiteconnect api should be subscribed before you can get historical addon
thus 4000 will be the cost if historical data is needed.
1.
PUT ORDER REQUEST RECEIVED Order request has been received by the backend
VALIDATION PENDING Order pending validation by the RMS (Risk Management System)
OPEN PENDING Order is pending registration at the exchange
MODIFY VALIDATION PENDING Order's…
1. for google financial data the frequency of returned data is either "DAILY" or "WEEKLY"
for kiteconnect we get 1,5,15,60,daily,weekly.. historical data
2. also we can get realtime ohlc values using historical data .
3. we have some limitations t…
hii @daniamarkumar
1. ws.subscribe([738561, 5633])
using this data can be retrived for multiple instument token (here RELIANCE, ACC )
2. syntax in point 1 will work for historical as well as live api.
3 . to get volume traded in last minute
star…
hii @daniamarkumar
1. if you query historical data for 1 minute you will get data for previous trading day (and same trading day after 5-6 pm).
i see you need 1 minute data for live trading session.. so as suggested by @rakeshr you should
"you …
hii @chiju
opening range breakout code:
from kiteconnect import WebSocket;
from kiteconnect import KiteConnect;
import time,os,datetime,math;
trd_portfolio = {325121:"AMBUJACEM",40193:"APOLLOHOSP",41729:"APOLLOTYRE",49409:"ARVIND",54273:"ASHOKLEY"…
hii pracas
"will my websocket running in the background stop because of the access_token change"
if you change the access token then .......many a times websocket will stop ...(and sometimes not also).
Hii @rish6000
You will need to download windows c++ visual studio.
Or
You can use a Linux environment for kiteconnect..it wouldn't need c++14 installation
Hii @r2k1984
I think zerodha is still working on test region API/ sandbox environment..
You can check the discussion here
https://kite.trade/forum/discussion/2972/sandbox-environment-or-test-account#latest
placing limit orders and waiting to get it filled can be frustrating
so we made this program
just enter the stock symbol , price and buy price in a excel ...
as soon as price reaches the level the program will automatically buy for us
benefits:
1.…
1. get tick data from market
2. parse the data
3. convert it into ohlc of the timeframe you need
4. use this formula for rsi ...
similarly calculate for adx and pasr
Not an expert to advise...but here is my view*
1.App is zerodha panel where you will define your credentials such as client is, redirect URL, name..etc and you will be given a API key and secret for it
Sentinel, coin, Streak are all app.. zerodha n…
hi @ankur19
redirect url is the url where we get the request token.
to start creating your strategy you can
1. choose a language from Python, Java , PHP , NodeJS , C# , Net Rust in which you are comfortable
2. learn how the authentication of the a…
Hello,
We are a software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com
Hello,
We are a team of software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com
Hello,
We are a team of software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com
Hello,
We are a team of software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com
Hello,
We are a team of software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com
Hello,
We are a team of software developers and we write strategies for Zerodha Kite connect, Upstox, MT4 , Amibroker and Oanda.
You can contact us at.
+91 9921754273
developer.algotrade@gmail.com