laugh
- Zorro seems to maintain one single list of all trades in a portfolio.
Will it make sense to add a field to Trade struct with a pointer to the previous trade of the same algo/asset component?
Then traversing such a linked list backwards for a component would be quicker, and such backwards looping is mostly needed for a component, not the full portfolio.
- break_trades for some reason does not work; break- does

It would really help if Zorro exposed a variable/pointer to the last closed trade of the current asset/algo combination (without asking a user to go into the for(trades)loop.
Or is there a way?