* implement fees for transaction points #324 * add net performance to current positions #324 * add net performance to calculate timeline #324 * make timeline fee accumulated by default #324 * Update changelog Co-authored-by: Valentin Zickner <github@zickner.ch> Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
export interface PortfolioPerformance {
|
|
currentGrossPerformance: number;
|
|
currentGrossPerformancePercent: number;
|
|
currentNetPerformance: number;
|
|
currentNetPerformancePercent: number;
|
|
currentValue: number;
|
|
}
|