fix daily profit data and daily profit curve example

This commit is contained in:
octaviusgus
2021-07-06 22:47:39 +02:00
parent dec523eef0
commit d1104bd434
2 changed files with 9 additions and 4 deletions

View File

@@ -272,7 +272,7 @@ def generate_daily_stats(results: DataFrame) -> Dict[str, Any]:
winning_days = sum(daily_profit > 0)
draw_days = sum(daily_profit == 0)
losing_days = sum(daily_profit < 0)
daily_profit_list = daily_profit.tolist()
daily_profit_list = [(str(idx.date()), val) for idx, val in daily_profit.iteritems()]
return {
'backtest_best_day': best_rel,