2021-04-13 21:53:58 +02:00
|
|
|
export interface PortfolioPerformance {
|
2021-09-12 14:08:42 -04:00
|
|
|
annualizedPerformancePercent: number;
|
2021-04-13 21:53:58 +02:00
|
|
|
currentGrossPerformance: number;
|
|
|
|
currentGrossPerformancePercent: number;
|
2021-09-05 21:21:22 +02:00
|
|
|
currentNetPerformance: number;
|
|
|
|
currentNetPerformancePercent: number;
|
2021-04-13 21:53:58 +02:00
|
|
|
currentValue: number;
|
|
|
|
}
|