19 lines
422 B
TypeScript
19 lines
422 B
TypeScript
import { DataSource } from '@prisma/client';
|
|
import Big from 'big.js';
|
|
|
|
export interface TimelinePosition {
|
|
averagePrice: Big;
|
|
currency: string;
|
|
dataSource: DataSource;
|
|
firstBuyDate: string;
|
|
grossPerformance: Big;
|
|
grossPerformancePercentage: Big;
|
|
investment: Big;
|
|
marketPrice: number;
|
|
netPerformance: Big;
|
|
netPerformancePercentage: Big;
|
|
quantity: Big;
|
|
symbol: string;
|
|
transactionCount: number;
|
|
}
|