mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Update some backtest displays
This commit is contained in:
parent
90036f5340
commit
9b5e14c033
|
@ -177,10 +177,10 @@ export function generateBacktestMetricRows(result: StrategyBacktestResult) {
|
||||||
{ '___ ': '___' },
|
{ '___ ': '___' },
|
||||||
|
|
||||||
{
|
{
|
||||||
'Best Pair': `${result.best_pair.key} ${formatPercent(result.best_pair.profit_sum)}`,
|
'Best Pair': `${result.best_pair.key} ${formatPercent(result.best_pair.profit_total)}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'Worst Pair': `${result.worst_pair.key} ${formatPercent(result.worst_pair.profit_sum)}`,
|
'Worst Pair': `${result.worst_pair.key} ${formatPercent(result.worst_pair.profit_total)}`,
|
||||||
},
|
},
|
||||||
{ 'Best single Trade': bestPair },
|
{ 'Best single Trade': bestPair },
|
||||||
{ 'Worst single Trade': worstPair },
|
{ 'Worst single Trade': worstPair },
|
||||||
|
|
|
@ -76,6 +76,7 @@ export interface StrategyBacktestResult {
|
||||||
results_per_pair: PairResult[];
|
results_per_pair: PairResult[];
|
||||||
sell_reason_summary?: ExitReasonResults[];
|
sell_reason_summary?: ExitReasonResults[];
|
||||||
exit_reason_summary?: ExitReasonResults[];
|
exit_reason_summary?: ExitReasonResults[];
|
||||||
|
results_per_enter_tag: PairResult[];
|
||||||
periodic_breakdown?: PeriodicBreakdown;
|
periodic_breakdown?: PeriodicBreakdown;
|
||||||
left_open_trades: Trade[];
|
left_open_trades: Trade[];
|
||||||
total_trades: number;
|
total_trades: number;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user