def basket_order_margins(self, params, consider_positions=True, mode=None): """ Calculate total margins required for basket of orders including margin benefits
- `params` is list of orders to fetch basket margin - `consider_positions` is a boolean to consider users positions - `mode` is margin response mode type. compact - Compact mode will only give the total margins """ return self._post("order.margins.basket", params=params, is_json=True, query_params={'consider_positions': consider_positions, 'mode': mode})
Tell me how many MAXIMUM pair of call i can make in one api call?
For example if i want to know the 'final margin' for the hedged position between two strikes, likewise how many maximum information i can get in one call? is there a limit?