From bc8d3817bce36a4d0ea7ec12d9b1f13c18e6fd68 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 30 Jul 2021 07:08:50 +0200 Subject: [PATCH] Update trades schema --- src/types/trades.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/types/trades.ts b/src/types/trades.ts index 9fa97b76..bfa5f7c9 100644 --- a/src/types/trades.ts +++ b/src/types/trades.ts @@ -3,6 +3,12 @@ export interface Trade { pair: string; is_open: boolean; amount: number; + amount_requested?: number; + stake_amount: number; + strategy?: string; + exchange?: string; + buy_tag?: string; + timeframe: string; open_rate: number; /** Open date in the format Y-M-d HH:mm:ss */