fix backtest testcase

This commit is contained in:
kevinjulian
2021-07-20 23:25:00 +07:00
parent c558fc0b17
commit cbfedf8b29
4 changed files with 238 additions and 218 deletions

View File

@@ -30,7 +30,7 @@ BT_DATA_COLUMNS = ['pair', 'stake_amount', 'amount', 'open_date', 'close_date',
'fee_open', 'fee_close', 'trade_duration',
'profit_ratio', 'profit_abs', 'sell_reason',
'initial_stop_loss_abs', 'initial_stop_loss_ratio', 'stop_loss_abs',
'stop_loss_ratio', 'min_rate', 'max_rate', 'is_open', ]
'stop_loss_ratio', 'min_rate', 'max_rate', 'is_open', 'buy_signal_name']
def get_latest_optimize_filename(directory: Union[Path, str], variant: str) -> str: