We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
``During backtesting there should be an option to save the strategy as part of the backtest.
This should look like this for in memory strategies
app = create_app() end_date = datetime(2023, 12, 2) start_date = end_date - timedelta(days=100) date_range = BacktestDateRange( start_date=start_date, end_date=end_date ) backtest_report = app.run_backtest( backtest_date_range=date_range, save_strategy=True )
and for a strategies directory:
app = create_app() end_date = datetime(2023, 12, 2) start_date = end_date - timedelta(days=100) date_range = BacktestDateRange( start_date=start_date, end_date=end_date ) backtest_report = app.run_backtest( backtest_date_range=date_range, save_strategies_directory=True ) # or backtest_report = app.run_backtest( backtest_date_range=date_range, save_strategies_directory=True, strategies_directory_name="" )
The text was updated successfully, but these errors were encountered:
MDUYN
Successfully merging a pull request may close this issue.
``During backtesting there should be an option to save the strategy as part of the backtest.
This should look like this for in memory strategies
and for a strategies directory:
The text was updated successfully, but these errors were encountered: