mirror of https://github.com/ghostfolio/ghostfolio
12 changed files with 41 additions and 30 deletions
@ -0,0 +1,12 @@ |
|||
import { Currency } from '@prisma/client'; |
|||
|
|||
export interface Position { |
|||
averagePrice: number; |
|||
currency: Currency; |
|||
firstBuyDate: string; |
|||
investment: number; |
|||
investmentInOriginalCurrency?: number; |
|||
marketPrice?: number; |
|||
quantity: number; |
|||
transactionCount: number; |
|||
} |
Loading…
Reference in new issue