You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
340 B

import { Currency } from '@prisma/client';
import Big from 'big.js';
export interface TimelinePosition {
averagePrice: Big;
currency: Currency;
firstBuyDate: string;
grossPerformance: Big;
grossPerformancePercentage: Big;
investment: Big;
marketPrice: number;
quantity: Big;
symbol: string;
transactionCount: number;
}