stocklift-charts
Version:
StockLift Web Component Charts
22 lines (21 loc) • 470 B
TypeScript
interface Asset {
close_price: number;
continent: string;
cost_basis: number;
country: string;
cusip: null | string | number;
has_cost_basis: boolean;
id: string;
institution_price: number;
institution_value: number;
is_cash: boolean;
name: string;
percent_change: number;
quantity: number;
sectors: any[];
symbol: string;
type: string;
weight?: number;
percentChange?: number;
}
export { Asset };