ghostfolio/libs/common/src/lib/interfaces/portfolio-overview.interface.ts
Thomas 2c19d8c8e7
Feature/add balance to account (#193)
* Add balance attribute and calculate total balance

* Update changelog
2021-07-07 21:23:36 +02:00

9 lines
161 B
TypeScript

export interface PortfolioOverview {
cash: number;
committedFunds: number;
fees: number;
ordersCount: number;
totalBuy: number;
totalSell: number;
}