Simplify method further

This commit is contained in:
Matthias 2023-03-19 15:01:37 +01:00
parent cd9c2c4c23
commit f455e3327c

View File

@ -73,9 +73,9 @@ def _store_backtest_analysis_data(
def store_backtest_analysis_results( def store_backtest_analysis_results(
recordfilename: Path, candles: Dict[str, Dict], trades: Dict[str, Dict], recordfilename: Path, candles: Dict[str, Dict], trades: Dict[str, Dict],
dtappendix: str) -> Path: dtappendix: str) -> None:
_store_backtest_analysis_data(Path(recordfilename), candles, dtappendix, "signals") _store_backtest_analysis_data(recordfilename, candles, dtappendix, "signals")
_store_backtest_analysis_data(Path(recordfilename), trades, dtappendix, "rejected") _store_backtest_analysis_data(recordfilename, trades, dtappendix, "rejected")
def _get_line_floatfmt(stake_currency: str) -> List[str]: def _get_line_floatfmt(stake_currency: str) -> List[str]: