mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
3 changed files with 25 additions and 31 deletions
@ -1,13 +1,13 @@ |
|||
import { Activity } from '@ghostfolio/common/interfaces'; |
|||
|
|||
export interface PortfolioOrder extends Pick<Activity, 'tags' | 'type'> { |
|||
assetProfile: Pick< |
|||
Activity['SymbolProfile'], |
|||
'assetSubClass' | 'currency' | 'dataSource' | 'name' | 'symbol' | 'userId' |
|||
>; |
|||
date: string; |
|||
fee: Big; |
|||
feeInBaseCurrency: Big; |
|||
quantity: Big; |
|||
SymbolProfile: Pick< |
|||
Activity['SymbolProfile'], |
|||
'assetSubClass' | 'currency' | 'dataSource' | 'name' | 'symbol' | 'userId' |
|||
>; |
|||
unitPrice: Big; |
|||
} |
|||
|
|||
Loading…
Reference in new issue