Skip to content

Commit

Permalink
Remove full_reports parameter from backtest_mode.py function signatur…
Browse files Browse the repository at this point in the history
…es and calls to streamline backtesting process
  • Loading branch information
saleh-mir committed Jan 6, 2025
1 parent 91e0db3 commit 00d6c24
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions jesse/modes/backtest_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def run(
candles: dict = None,
chart: bool = False,
tradingview: bool = False,
full_reports: bool = False,
csv: bool = False,
json: bool = False,
fast_mode: bool = False,
Expand All @@ -65,7 +64,7 @@ def handle_time():

_execute_backtest(
client_id, debug_mode, user_config, exchange, routes, data_routes, start_date, finish_date, candles, chart,
tradingview, full_reports, csv, json, fast_mode, benchmark
tradingview, csv, json, fast_mode, benchmark
)


Expand All @@ -81,7 +80,6 @@ def _execute_backtest(
candles: dict = None,
chart: bool = False,
tradingview: bool = False,
full_reports: bool = False,
csv: bool = False,
json: bool = False,
fast_mode: bool = False,
Expand Down Expand Up @@ -182,7 +180,7 @@ def _execute_backtest(
# retry the backtest simulation
_execute_backtest(
client_id, debug_mode, user_config, exchange, routes, data_routes, start_date, finish_date, candles,
chart, tradingview, full_reports, csv, json, fast_mode, benchmark
chart, tradingview, csv, json, fast_mode, benchmark
)
else:
raise e
Expand Down

0 comments on commit 00d6c24

Please sign in to comment.