@sujith Any luck?
Almost one trading day was over. You have been confidently saying minute data comes up only when minute is complete.
But i can clearly see latest minute data not sent for a completed minute and data sent for an incomplete minute…
def initialize_kite():
api_key=""
request_token=""
secret=""
global kite
global user
kite = KiteConnect(api_key)
if not os.path.exists(file_name):
try:
user = kite.request_access_toke…
@chaudhariapurva any sample on how to do in a different thread and also how to sync between the process. It will be really helpful.
Also where do we need to store data.. I a sql database or variable?
@chaudhariapurva .. if i'm storing ticks from web sockets, then i need to run a different code right?
since once you connect to sockets your rest of the code runs ( which means strategy will not run)
also isnt there a chance that ticks received ar…
@chaudhariapurva i use python..Thanks for the info.
1 last question. can i use sockets to calculate those (i dont think so. just want to know of something is there)
@chaudhariapurva Thanks for your suggestion. can you please give an example. also how the input data should be changed to (i suppose which is sourced from historic api)
I'm actually looking to calculate my indicators at server end instead of writing a function after downloading the entire data.
Are there fns builtin in kite library of python?
sorry to say but i dont think you got my question.
I am asking how to back test using candles api. Its not relevant to js plugin right?
also i use only python
Thanks for your reply. Is there any documentation on how can I backtest using historical api?
If I don't want to backtest I don't need historic api right? (I mean web sockets can be used to calculate all measures like volatility, etc for that…