Yes, you can install any specific version, depending on the language client lib. For python, you can check this. PS: We don't recommend having previous versions as many functionalities would be no more supported. Can you let us know the reason behind reverting back to an older version ?
PS: We don't recommend having previous versions as many functionalities would be no more supported.
Can you let us know the reason behind reverting back to an older version ?
will it help in running my codes?
global cookies, today
url = 'https://kite.zerodha.com/oms/instruments/historical/'+ str(scrip_token) +'/minute?user_id=' + str(user_id) + '&oi=1&from=' + today + '&to=' + today + '&ciqrandom=1597949155770'
headers = {
'authorization': cookies
}
x = requests.get(url, headers=headers)
for i in range(len(x.json()['data']['candles'])):
if x.json()['data']['candles'][i][0][11:16] == sl_time:
candle_minute_close = x.json()['data']['candles'][i][4]
return candle_minute_close