ghostfolio/libs/common/src/lib/interfaces/portfolio-performance.interface.ts
gizmodus f360a12823
Feature/rework portfolio calculator (#3393)
* Rework portfolio calculation

* Update changelog

---------

Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
2024-08-24 16:59:50 +02:00

11 lines
336 B
TypeScript

export interface PortfolioPerformance {
annualizedPerformancePercent?: number;
currentNetWorth?: number;
currentValueInBaseCurrency: number;
netPerformance: number;
netPerformancePercentage: number;
netPerformancePercentageWithCurrencyEffect: number;
netPerformanceWithCurrencyEffect: number;
totalInvestment: number;
}