diff --git a/web/components/bets-list.tsx b/web/components/bets-list.tsx index 14679a69..8136042f 100644 --- a/web/components/bets-list.tsx +++ b/web/components/bets-list.tsx @@ -531,6 +531,7 @@ function SellButton(props: { contract: Contract; bet: Bet }) { ) const saleAmount = calculateSaleAmount(contract, bet) + const profit = saleAmount - bet.amount return ( + {profit > 0 ? 'Profit' : 'Loss'}: {formatMoney(profit).replace('-', '')} +
Market probability: {formatPercent(initialProb)} →{' '} {formatPercent(outcomeProb)}