Shows real-time portfolio metrics: - Cash Balance - Position (quantity and value) - Entry Price / Current Price - Unrealized P&L - Total Value - P&L (absolute and percentage) Updates as simulation runs and trades are executed.
11 lines
736 B
TypeScript
11 lines
736 B
TypeScript
export { default as ChatInterface } from './ChatInterface.svelte';
|
|
export { default as BotCard } from './BotCard.svelte';
|
|
export { default as BotSelector } from './BotSelector.svelte';
|
|
export { default as StrategyPreview } from './StrategyPreview.svelte';
|
|
export { default as SignalChart } from './SignalChart.svelte';
|
|
export { default as TradeDashboard } from './TradeDashboard.svelte';
|
|
export { default as PortfolioSummary } from './PortfolioSummary.svelte';
|
|
export { default as BacktestChart } from './BacktestChart.svelte';
|
|
export { default as ProUpgradeBanner } from './ProUpgradeBanner.svelte';
|
|
export { default as TokenPicker } from './TokenPicker.svelte';
|
|
export { default as ConditionBuilder } from './ConditionBuilder.svelte'; |