ghostfolio/libs/common/src/lib/interfaces/portfolio-performance.interface.ts
Valentin Zickner d2aeeb3e88
optimize annual performance calculation (#367)
* Optimize annual performance calculation

* Update changelog

Co-authored-by: Valentin Zickner <github@zickner.ch>
Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
2021-09-12 20:08:42 +02:00

9 lines
256 B
TypeScript

export interface PortfolioPerformance {
annualizedPerformancePercent: number;
currentGrossPerformance: number;
currentGrossPerformancePercent: number;
currentNetPerformance: number;
currentNetPerformancePercent: number;
currentValue: number;
}