Feature/add allocations by platform chart (#1915)

* Add allocations by platform

* Update changelog
This commit is contained in:
Thomas Kaul
2023-05-01 17:44:35 +02:00
committed by GitHub
parent 1ca3792a4b
commit 15c96a9757
6 changed files with 111 additions and 9 deletions

View File

@@ -16,6 +16,15 @@ export interface PortfolioDetails {
filteredValueInBaseCurrency?: number;
filteredValueInPercentage: number;
holdings: { [symbol: string]: PortfolioPosition };
platforms: {
[id: string]: {
balance: number;
currency: string;
name: string;
valueInBaseCurrency: number;
valueInPercentage?: number;
};
};
summary: PortfolioSummary;
totalValueInBaseCurrency?: number;
}