I am interested in putting up basket orders via kiteconnectjs. Is it possible as of yet, cause I couldnt find any documentation on it related to kiteconnectjs? (am using nodejs server, so I will make these orders from the nodejs server (not the client browser)).
Hi @arsh_makker, You can make your basket and place any number of orders using kiteconnectjs, just make sure you don't hit API rate limit. It is 3 requests per second. Check out kiteconnectjs documentation here and Kite Connect API documentation here.
Hi @arsh_makker, kiteconnectjs is an official Kite Connect API client for javascript. orderplace method will not take array, you need to call orderplace in a for loop.
You can make your basket and place any number of orders using kiteconnectjs, just make sure you don't hit API rate limit. It is 3 requests per second. Check out kiteconnectjs documentation here and Kite Connect API documentation here.
So you mean, create send an array of orders like : to either kiteconnectjs or kiteapi..
Please do confirm the array/JSON strucutre above.
Regards
Arsh
kiteconnectjs is an official Kite Connect API client for javascript. orderplace method will not take array, you need to call orderplace in a for loop.
Thanks.. understood.. will check and revert