2021-08-13 19:26:48 +02:00
|
|
|
import { PortfolioPerformance } from './portfolio-performance.interface';
|
|
|
|
|
|
|
|
export interface PortfolioSummary extends PortfolioPerformance {
|
2021-09-11 20:16:53 +02:00
|
|
|
annualizedPerformancePercent: number;
|
2021-08-13 19:26:48 +02:00
|
|
|
cash: number;
|
|
|
|
committedFunds: number;
|
|
|
|
fees: number;
|
|
|
|
firstOrderDate: Date;
|
|
|
|
netWorth: number;
|
|
|
|
ordersCount: number;
|
|
|
|
totalBuy: number;
|
|
|
|
totalSell: number;
|
|
|
|
}
|