Add win-rate, expectancy and expectancy_ratio to profit types

This commit is contained in:
Matthias 2023-07-19 19:52:52 +02:00
parent 591606d043
commit c8517939e0

View File

@ -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;
}