diff --git a/src/components/ftbot/BotComparisonList.vue b/src/components/ftbot/BotComparisonList.vue
index 5011902f..ec26c07f 100644
--- a/src/components/ftbot/BotComparisonList.vue
+++ b/src/components/ftbot/BotComparisonList.vue
@@ -47,7 +47,9 @@
)
}}
- {{ item.stakeCurrency }}
+ {{
+ ` ${item.stakeCurrency}${item.isDryRun ? ' (dry)' : ''}`
+ }}
@@ -120,6 +122,7 @@ const tableItems = computed(() => {
losses: v.losing_trades,
balance: botStore.allBalance[k]?.total_bot ?? botStore.allBalance[k]?.total,
stakeCurrencyDecimals: botStore.allBotState[k]?.stake_currency_decimals || 3,
+ isDryRun: botStore.allBotState[k]?.dry_run,
});
if (v.profit_closed_coin !== undefined) {
if (botStore.botStores[k].isSelected) {
diff --git a/src/types/botComparison.ts b/src/types/botComparison.ts
index e9e63ea8..605d8295 100644
--- a/src/types/botComparison.ts
+++ b/src/types/botComparison.ts
@@ -11,4 +11,5 @@ export interface ComparisonTableItems {
losses: number;
balance?: number;
stakeCurrencyDecimals?: number;
+ isDryRun?: boolean;
}