API feature request: list trades by portfolio
I would like the ability to fetch all trades for [portfolio] since [date] in a single query. e.g. /v1/portfolios/{portfolioId}/trades optional parameter: start_date returning: tradeId, date, transaction_type, symbol, market, units, price, etc. Based on the docs, it looks like quite a few queries are required to get this info at present Get portfolios https://developer.navexa.com/get-all-portfolios-13543794e0 Get holdings (repeat for each portfolio) https://developer.navexa.com/get-all-portfolio-holdings-13543799e0 Get trades (repeat for each holding for each portfolio) https://developer.navexa.com/get-a-holdings-trades-13543791e0 (Potentially) Get trade detail https://developer.navexa.com/get-a-trade-13543807e0 (not sure if previous step outputs all the trade attributes) I have a private integration with Sharesight that notifies of recent trades, and I'm essentially looking for a drop in replacement for https://portfolio.sharesight.com/api/2/doc/index.html#api-UserAPITrades-Trades Thanks for considering it.