types: add MostActiveStock interface

This commit is contained in:
2026-05-16 12:35:59 +02:00
parent 4af6e914ec
commit 5f36c13b9f
+8
View File
@@ -13,3 +13,11 @@ export interface AlpacaAccount {
buying_power: number;
portfolio_value: number;
}
export interface MostActiveStock {
symbol: string;
name: string;
price: number;
changePercent: number;
volume: number;
}