mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-21 23:53:52 +00:00
Fix type error in daily
This commit is contained in:
parent
32a7f8da2c
commit
c475ca30c2
|
@ -4,12 +4,12 @@ export interface DailyPayload {
|
|||
|
||||
export interface DailyRecord {
|
||||
/** Date in the format yyyy-mm-dd */
|
||||
[key: string]: string | number | undefined;
|
||||
[key: string]: string | number;
|
||||
date: string;
|
||||
abs_profit: number;
|
||||
/** added in 2.16*/
|
||||
rel_profit?: number;
|
||||
starting_balance_profit?: number;
|
||||
rel_profit: number;
|
||||
starting_balance_profit: number;
|
||||
fiat_value: number;
|
||||
trade_count: number;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user