From c8517939e062be2bc3da4d673ef9c21577d788e1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 19 Jul 2023 19:52:52 +0200 Subject: [PATCH] Add win-rate, expectancy and expectancy_ratio to profit types --- src/types/profit.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/profit.ts b/src/types/profit.ts index 253b6882..8af28575 100644 --- a/src/types/profit.ts +++ b/src/types/profit.ts @@ -45,4 +45,7 @@ export interface ProfitInterface { /** Initial bot start date*/ bot_start_timestamp?: number; bot_start_date?: string; + win_rate?: number; + expectancy?: number; + expectancy_ratio?: number; }