Can i modify the stoploss of existing open order and exit from open position using this API ?

YO76
Hello Folk,

I just wanna know how we can modify the existing open order stop-loss value and exit from any particular order through API?
Is it possible?
  • rishiswethan
    rishiswethan edited August 2019
    Pretty much any function that you can do manually can be done using the API, except for things like exiting all orders in a single go. So yes, you can do it
  • YO76
    what is the alternative to exit all order in a single go?
  • rishiswethan
    That's an exception, it's not available
  • sujith
    You need to put all requests in a list and loop through each item.
  • YO76
    Anyone can tell me how long time it will take to execute through a loop. if anyone performs this experiment earlier?
  • rishiswethan
    Without threading it takes about 0.6s per order, with threading stay within the below limits. Make sure you confirm if your order is placed by checking with the order list


    # Request limits:-
    # Quote API - 1r/s
    # Order place API - 5r/s
    # Historical API - 3r/s
    # All other endpoints - 10r/s
  • YO76
    Thanks for the update.. :)
    but, suppose if I have 10 instruments in my basket to place the order under BO type. then what it will consider 10 different request or single request?
  • rishiswethan
    I guess that would be one
Sign In or Register to comment.