From ad56392d976607d6b9711924357cc7f904105a55 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 28 May 2023 10:14:51 +0200 Subject: [PATCH] Improve type description --- src/types/trades.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/trades.ts b/src/types/trades.ts index c97902f4..525858de 100644 --- a/src/types/trades.ts +++ b/src/types/trades.ts @@ -116,8 +116,10 @@ export interface Trade extends TradeBase { stoploss_entry_dist_ratio?: number; current_rate?: number; + /* Total Profit, both open and realized*/ total_profit_abs?: number; total_profit_fiat?: number; + /* Relative Total profit, bot open and realized */ total_profit_ratio?: number; }