From a9b6d998fe4b14dd6616238e0d5191a8fb6e1954 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 11 Nov 2021 20:33:15 +0100 Subject: [PATCH] Add new profit field type --- src/types/profit.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/profit.ts b/src/types/profit.ts index be157618..14325d72 100644 --- a/src/types/profit.ts +++ b/src/types/profit.ts @@ -31,7 +31,9 @@ export interface ProfitInterface { latest_trade_timestamp: number; avg_duration: string; best_pair: string; + /** DO NOT USE, this is rounded pct */ best_rate: number; + best_pair_profit_ratio: number; winning_trades: number; losing_trades: number; }