diff --git a/frontend/src/pages/BacktestDetail.tsx b/frontend/src/pages/BacktestDetail.tsx index a2eab3e..f7bdab3 100644 --- a/frontend/src/pages/BacktestDetail.tsx +++ b/frontend/src/pages/BacktestDetail.tsx @@ -232,22 +232,6 @@ const BacktestDetail: React.FC = () => { width: 120, render: (value: string) => formatUSDC(value) }, - { - title: t('backtest.profitLoss') + ' (USDC)', - dataIndex: 'profitLoss', - key: 'profitLoss', - width: 120, - render: (value: string | null) => { - if (!value) return '-' - const num = parseFloat(value) - const color = num > 0 ? '#52c41a' : num < 0 ? '#ff4d4f' : undefined - return ( - - {formatUSDC(value)} - - ) - } - }, { title: t('backtest.balanceAfter') + ' (USDC)', dataIndex: 'balanceAfter',