I have a paper trading account,
I am implementing an application using python. I wanted to fetch all open orders.
I tried the API trade_api.list_orders(status=‘open’).
but I am not getting all current orders. When i tried status as ‘all’ or ‘filled’ as status i am getting all my orders which is redundant.
How can i get only orders which are in the trade?
Thanks