mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Update balance.ts to include new fields
This commit is contained in:
parent
23986494f7
commit
a95ea597d0
|
@ -18,4 +18,14 @@ export interface BalanceInterface {
|
||||||
total: number;
|
total: number;
|
||||||
/** Balance in FIAT currency */
|
/** Balance in FIAT currency */
|
||||||
value: number;
|
value: number;
|
||||||
|
/** Assumed starting capital */
|
||||||
|
starting_capital: number;
|
||||||
|
/** Change between starting capital and current value */
|
||||||
|
starting_capital_ratio: number;
|
||||||
|
starting_capital_pct: number;
|
||||||
|
/** Assumed starting capital in FIAT currency */
|
||||||
|
starting_capital_fiat: number;
|
||||||
|
/** Change between starting capital and current value in fiat */
|
||||||
|
starting_capital_fiat_ratio: number;
|
||||||
|
starting_capital_fiat_pct: number;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user