diff --git a/src/components/ftbot/TradeList.vue b/src/components/ftbot/TradeList.vue
index c5c2ff37..a5d957d2 100644
--- a/src/components/ftbot/TradeList.vue
+++ b/src/components/ftbot/TradeList.vue
@@ -54,6 +54,10 @@
: ''
}}
+
+ {{ formatPriceWithDecimals(row.item.stake_amount) }}
+ {{ row.item.trading_mode !== 'spot' ? `(${row.item.leverage}x)` : '' }}
+
@@ -148,7 +152,6 @@ const tableFields: Record[] = [
{
key: 'stake_amount',
label: 'Stake amount',
- formatter: (value: number) => formatPriceWithDecimals(value),
},
{
key: 'open_rate',