|
${t.symbol}
- {t.is_held && (
+ {t.has_open_trade && (
HOLDING
@@ -94,20 +90,12 @@ export function TickerScorecardTable({ tickers, isLoading, onClose }: Props) {
|
+ {t.latest_horizon} |
- {t.current_price != null
- ? `$${t.current_price.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`
+ {t.trade_entry_price != null
+ ? `$${t.trade_entry_price.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`
: '—'}
|
-
- {pnl != null ? (
- = 0 ? 'text-green-400' : 'text-red-400'}>
- {pnl >= 0 ? '+' : ''}{pnl.toFixed(2)}%
-
- ) : (
- —
- )}
- |
{badge ? (
@@ -117,12 +105,13 @@ export function TickerScorecardTable({ tickers, isLoading, onClose }: Props) {
—
)}
|
- {t.mention_count} |
- {new Date(t.last_mention_at).toLocaleDateString()}
+ {t.latest_mention_at
+ ? new Date(t.latest_mention_at).toLocaleDateString()
+ : '—'}
|
- {t.is_held && (
+ {t.has_open_trade && (
|