1. Current getOrders() returns all orders.. can we get a method to return only list of specific orders?.. input can be list of orderids... Other method getOrder(orderid) returns only one order.. I need something like this: getOrder(list of order ids)
2. Need similar method for bulk cancel orders for a specific list of order ids
3. Also if possible change return type of this method to Map instead of List.. so that seek speed is better..
Instead of this: List orders = kiteConnect.getOrders();
Please provide this: Map orders = kiteConnect.getOrders(list of order ids);