@Imran @sujith raised the same issue few days back ,if you are limiting at every process then what is the use of using your API and how can our trading platform is algo trading .. i request zerodha team to at least increase the modiying limit.
@sujith why u guyz are putting restriction in modifying order, if we are using API to automate the trade then in some sense it is not fully automating at all, as what should i do if the limit is reached as happened with me today.
@Debsush i hope it helps
df.resample('5min')[volume].sum()
where:
df = convert the receiving websocket data to dataframe
['volume'] = get only the volume column from the dataframe df
sum() = adds up all the volume in the desire timeframe
@sgsaran i have done that also, but still i'm not getting the result may be i'm doing something wrong, can you please given little more info on how to do that.
@VipinNair hi vipin how to do the same for more then one script ,since if i do the resample of more then one script then the ohlc values are all mixed up
@Imran , hi imran how to convert ticks to candles if we have more then one scripts, as i'm trying with multiple scripts but the OHLC data are all mixed up
hi @ZW2914, i'm using the method told by imran and it is working fine with me, but the problem is lets say if you are making use of the datetime from ticks data and in some stocks there are time where at time mentioned above i.e at 9:19:59 there w…
@Matti Thank you, so if in a case where i have reached the target price i could use the algo as follow:
if (latest_price >= squareoff_price_long):
kite.exit_order(variety=variety_check, order_id=parent_order_id)
print(stock_name, "o…
hi tanmay, it is because you are running the code while your excel sheet is opened, i think it shows the memory location or something i have read somewhere, well you wont have this error if you close the excel sheet then rerun the code.
hi @Imran i have gone through your video and i'm not able to find my answer in that , as you can see above i need to save high and low value of first 15 minute in a variable then only i can further go for 15 minute orb strategy , but in your videos …