investing-algorithm-framework 8.7.0__tar.gz → 8.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/PKG-INFO +1 -1
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/__init__.py +7 -2
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/__init__.py +2 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/__init__.py +2 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_utils.py +201 -47
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/__init__.py +3 -1
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/__init__.py +2 -1
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/generate.py +361 -45
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/pyproject.toml +1 -1
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/LICENSE +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/README.md +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/analysis/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/analysis/backtest_data_ranges.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/analysis/markdown.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/analysis/ranking.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/algorithm/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/algorithm/algorithm.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/algorithm/algorithm_factory.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/app.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/app_hook.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/context.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/eventloop.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/ascii.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/backtest_report.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/backtest_report_old.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/entry_exist_signals.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/equity_curve.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/line_chart.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/monthly_returns_heatmap.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/ohlcv_data_completeness.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/charts/yearly_returns_barchart.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/generate.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/key_metrics_table.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/stop_loss_table.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/time_metrics_table.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/trades_table.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/tables/utils.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/templates/dashboard.css +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/templates/dashboard.js +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/templates/dashboard_template.html.j2 +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/reporting/templates/report_template.html.j2 +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/action_handlers/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/stateless/exception_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/strategy.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/task.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/controllers/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/controllers/orders.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/controllers/portfolio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/controllers/positions.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/create_app.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/error_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/responses.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/run_strategies.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/schemas/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/schemas/order.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/schemas/portfolio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/schemas/position.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/app/web/setup_cors.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/cli.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/deploy_to_aws_lambda.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/deploy_to_azure_function.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/initialize_app.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/mcp_server.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/.gitignore.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/app.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/app_azure_function.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/app_web.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/aws_lambda_dockerfile.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/aws_lambda_dockerignore.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/aws_lambda_readme.md.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/azure_function_function_app.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/azure_function_host.json.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/azure_function_local.settings.json.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/data_providers.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/env.example.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/env_azure_function.example.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/market_data_providers.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/readme.md.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/requirements.txt.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/run_backtest.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/templates/strategy.py.template +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/cli/validate_backtest_checkpoints.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/create_app.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/dependency_container.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/algorithm_id.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_date_range.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_metrics.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_run.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/bundle.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/combine_backtests.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/consistency.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/templates/backtest.html +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/templates/finterion-dark.png +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/backtesting/templates/finterion-light.png +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/blotter.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/config.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/constants.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/data_provider.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/data_structures.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/datetime_parsing.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/decimal_parsing.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/exceptions.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/fx.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/app_mode.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/base_model.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/data/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/data/data_source.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/data/data_type.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/event.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/market/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/market/market_credential.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/order/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/order/order.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/order/order_side.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/order/order_status.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/order/order_type.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/portfolio/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/portfolio/portfolio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/position/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/position/position.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/position/position_size.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/position/position_snapshot.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/risk_rules/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/risk_rules/scaling_rule.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/risk_rules/trading_cost.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/snapshot_interval.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/strategy_profile.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/time_frame.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/time_interval.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/time_unit.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/tracing/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/tracing/trace.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/trade/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/trade/trade.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/trade/trade_status.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/trade/trade_stop_loss.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/models/trade/trade_take_profit.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/order_executor.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/custom_factor.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/factor.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/factors/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/factors/builtin.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/filter.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/pipeline/pipeline.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/portfolio_provider.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/market_credential_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/portfolios/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/portfolios/portfolio_sync_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/rounding_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/services/state_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/stateless_actions.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/strategy.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/csv.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/custom_tqdm.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/dates.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/polars.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/random.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/signatures.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/stoppable_thread.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/domain/utils/synchronized.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/download_data.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/alpha_vantage.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/base_url.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/ccxt.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/csv.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/csv_url.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/json_url.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/ohlcv_base.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/pandas.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/parquet_url.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/polygon.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/data_providers/yahoo.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/database/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/database/sql_alchemy.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/decimal_parser.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/model_extension.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/order/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/order/order.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/order/trade_allocation.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/order_trade_association.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/portfolio/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/portfolio/portfolio_snapshot.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/portfolio/sql_portfolio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/position/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/position/position.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/position/position_snapshot.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/trades/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/trades/trade.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/order_executors/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/order_executors/ccxt_order_executor.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/portfolio_providers/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/portfolio_providers/ccxt_portfolio_provider.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/order_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/portfolio_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/portfolio_snapshot_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/position_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/position_snapshot_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/trade_allocation_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/trade_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/aws/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/aws/state_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/azure/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/azure/state_handler.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/backtesting/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/backtesting/backtest_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/backtesting/checkpoint_manifest.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/backtesting/event_backtest_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/infrastructure/services/backtesting/vector_backtest_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/notebook/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/notebook/magic.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/configuration_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/data_providers/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/data_providers/data.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/data_providers/data_provider_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/market_credential_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/alpha.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/beta.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/cagr.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/calmar_ratio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/consistency.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/drawdown.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/equity_curve.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/exposure.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/mean_daily_return.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/price_efficiency.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/profit_factor.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/recovery.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/returns.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/risk_free_rate.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/sharpe_ratio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/sortino_ratio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/standard_deviation.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/trades.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/treynor_ratio.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/ulcer.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/value_at_risk.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/volatility.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/metrics/win_rate.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/order_service/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/order_service/order_backtest_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/order_service/order_executor_lookup.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/order_service/order_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/pipeline/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/pipeline/pipeline_engine.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/pipeline/vector_pipeline_engine.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/backtest_portfolio_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/portfolio_configuration_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/portfolio_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/portfolios/portfolio_sync_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/positions/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/positions/position_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/positions/position_snapshot_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/repository_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_order_evaluator/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_service/__init__.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_service/trade_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py +0 -0
- {investing_algorithm_framework-8.7.0 → investing_algorithm_framework-8.7.2}/investing_algorithm_framework/services/trade_service/trade_take_profit_service.py +0 -0
|
@@ -17,6 +17,7 @@ from .domain import ApiException, combine_backtests, PositionSize, \
|
|
|
17
17
|
Position, TimeFrame, INDEX_DATETIME, MarketCredential, TakeProfitRule, \
|
|
18
18
|
PortfolioConfiguration, RESOURCE_DIRECTORY, AWS_LAMBDA_LOGGING_CONFIG, \
|
|
19
19
|
Trade, APP_MODE, AppMode, DATETIME_FORMAT, load_backtests_from_directory, \
|
|
20
|
+
iter_backtests_from_directory, \
|
|
20
21
|
BacktestDateRange, convert_polars_to_pandas, BacktestRun, \
|
|
21
22
|
DEFAULT_LOGGING_CONFIG, DataType, DataProvider, StopLossRule, \
|
|
22
23
|
ScalingRule, TradingCost, \
|
|
@@ -24,7 +25,7 @@ from .domain import ApiException, combine_backtests, PositionSize, \
|
|
|
24
25
|
APPLICATION_DIRECTORY, DataSource, OrderExecutor, PortfolioProvider, \
|
|
25
26
|
SnapshotInterval, AWS_S3_STATE_BUCKET_NAME, BacktestEvaluationFocus, \
|
|
26
27
|
save_backtests_to_directory, BacktestMetrics, DATA_DIRECTORY, \
|
|
27
|
-
retag_backtests, \
|
|
28
|
+
retag_backtests, migrate_backtests, \
|
|
28
29
|
Blotter, DefaultBlotter, SimulationBlotter, Transaction, \
|
|
29
30
|
SlippageModel, NoSlippage, PercentageSlippage, FixedSlippage, \
|
|
30
31
|
VolumeImpactSlippage, \
|
|
@@ -71,7 +72,8 @@ from .services import get_annual_volatility, get_sortino_ratio, \
|
|
|
71
72
|
get_current_average_trade_loss, get_negative_trades, \
|
|
72
73
|
get_positive_trades, get_number_of_trades, get_current_win_rate, \
|
|
73
74
|
get_current_win_loss_ratio, create_backtest_metrics_for_backtest, \
|
|
74
|
-
recalculate_backtests,
|
|
75
|
+
recalculate_backtests, recalculate_backtests_in_directory, \
|
|
76
|
+
TradeTakeProfitService, TradeStopLossService, \
|
|
75
77
|
get_cv_consistency, get_normalized_stability, \
|
|
76
78
|
get_consistency_score, get_stability_score
|
|
77
79
|
|
|
@@ -220,11 +222,14 @@ __all__ = [
|
|
|
220
222
|
"get_number_of_trades",
|
|
221
223
|
"BacktestRun",
|
|
222
224
|
"load_backtests_from_directory",
|
|
225
|
+
"iter_backtests_from_directory",
|
|
223
226
|
"save_backtests_to_directory",
|
|
224
227
|
"retag_backtests",
|
|
228
|
+
"migrate_backtests",
|
|
225
229
|
"DataError",
|
|
226
230
|
"create_backtest_metrics_for_backtest",
|
|
227
231
|
"recalculate_backtests",
|
|
232
|
+
"recalculate_backtests_in_directory",
|
|
228
233
|
"TakeProfitRule",
|
|
229
234
|
"StopLossRule",
|
|
230
235
|
"ScalingRule",
|
|
@@ -44,6 +44,7 @@ from .backtesting import BacktestRun, BacktestSummaryMetrics, \
|
|
|
44
44
|
BacktestDateRange, Backtest, BacktestMetrics, combine_backtests, \
|
|
45
45
|
BacktestPermutationTest, BacktestEvaluationFocus, \
|
|
46
46
|
generate_backtest_summary_metrics, load_backtests_from_directory, \
|
|
47
|
+
iter_backtests_from_directory, \
|
|
47
48
|
save_backtests_to_directory, retag_backtests, migrate_backtests, \
|
|
48
49
|
BacktestIndex, save_bundle, open_bundle, BUNDLE_EXT, \
|
|
49
50
|
BUNDLE_FORMAT_VERSION
|
|
@@ -174,6 +175,7 @@ __all__ = [
|
|
|
174
175
|
'ScalingRule',
|
|
175
176
|
'TradingCost',
|
|
176
177
|
"load_backtests_from_directory",
|
|
178
|
+
"iter_backtests_from_directory",
|
|
177
179
|
"save_backtests_to_directory",
|
|
178
180
|
"retag_backtests",
|
|
179
181
|
"migrate_backtests",
|
|
@@ -9,6 +9,7 @@ from .combine_backtests import combine_backtests, \
|
|
|
9
9
|
generate_backtest_summary_metrics
|
|
10
10
|
from .backtest_utils import (
|
|
11
11
|
load_backtests_from_directory,
|
|
12
|
+
iter_backtests_from_directory,
|
|
12
13
|
save_backtests_to_directory,
|
|
13
14
|
retag_backtests,
|
|
14
15
|
migrate_backtests,
|
|
@@ -33,6 +34,7 @@ __all__ = [
|
|
|
33
34
|
"combine_backtests",
|
|
34
35
|
"generate_backtest_summary_metrics",
|
|
35
36
|
"load_backtests_from_directory",
|
|
37
|
+
"iter_backtests_from_directory",
|
|
36
38
|
"save_backtests_to_directory",
|
|
37
39
|
"retag_backtests",
|
|
38
40
|
"migrate_backtests",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import os
|
|
3
|
-
from concurrent.futures import ProcessPoolExecutor, as_completed
|
|
3
|
+
from concurrent.futures import ProcessPoolExecutor, as_completed, \
|
|
4
|
+
wait, FIRST_COMPLETED
|
|
4
5
|
from logging import getLogger
|
|
5
6
|
from pathlib import Path
|
|
6
7
|
from random import Random
|
|
@@ -409,22 +410,47 @@ def load_backtests_from_directory(
|
|
|
409
410
|
else:
|
|
410
411
|
# Process pool only handles bundle loads efficiently; loading
|
|
411
412
|
# legacy directories from workers also works but the win is
|
|
412
|
-
# smaller. We still parallelise both for simplicity.
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
413
|
+
# smaller. We still parallelise both for simplicity. Submission
|
|
414
|
+
# is bounded to ``n_workers`` in flight so the executor's
|
|
415
|
+
# feeder thread does not buffer the entire source list, and
|
|
416
|
+
# workers are recycled (Python 3.11+) so RSS stays bounded.
|
|
417
|
+
import sys
|
|
418
|
+
pool_kwargs = {"max_workers": n_workers}
|
|
419
|
+
if sys.version_info >= (3, 11):
|
|
420
|
+
pool_kwargs["max_tasks_per_child"] = 16
|
|
421
|
+
|
|
422
|
+
sources_iter = iter(sources)
|
|
423
|
+
inflight = {}
|
|
424
|
+
|
|
425
|
+
with ProcessPoolExecutor(**pool_kwargs) as ex:
|
|
426
|
+
def _submit_next():
|
|
419
427
|
try:
|
|
420
|
-
|
|
421
|
-
except
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
+
it = next(sources_iter)
|
|
429
|
+
except StopIteration:
|
|
430
|
+
return False
|
|
431
|
+
inflight[ex.submit(_load_one_dispatch, it)] = it
|
|
432
|
+
return True
|
|
433
|
+
|
|
434
|
+
for _ in range(n_workers):
|
|
435
|
+
if not _submit_next():
|
|
436
|
+
break
|
|
437
|
+
|
|
438
|
+
while inflight:
|
|
439
|
+
done_set, _unused = wait(
|
|
440
|
+
inflight.keys(), return_when=FIRST_COMPLETED
|
|
441
|
+
)
|
|
442
|
+
for fut in done_set:
|
|
443
|
+
src = inflight.pop(fut)
|
|
444
|
+
try:
|
|
445
|
+
backtests.append(fut.result())
|
|
446
|
+
except Exception as e:
|
|
447
|
+
logger.error(
|
|
448
|
+
f"Failed to load backtest from {src[0]}: {e}"
|
|
449
|
+
)
|
|
450
|
+
finally:
|
|
451
|
+
if pbar is not None:
|
|
452
|
+
pbar.update(1)
|
|
453
|
+
_submit_next()
|
|
428
454
|
|
|
429
455
|
if pbar is not None:
|
|
430
456
|
pbar.close()
|
|
@@ -438,6 +464,87 @@ def load_backtests_from_directory(
|
|
|
438
464
|
return backtests
|
|
439
465
|
|
|
440
466
|
|
|
467
|
+
def iter_backtests_from_directory(
|
|
468
|
+
directory_path: Union[str, Path],
|
|
469
|
+
filter_function: Callable[[Backtest], bool] = None,
|
|
470
|
+
number_of_backtests_to_load: int = None,
|
|
471
|
+
show_progress: bool = False,
|
|
472
|
+
):
|
|
473
|
+
"""Yield :class:`Backtest` objects one at a time from *directory_path*.
|
|
474
|
+
|
|
475
|
+
Memory-stable alternative to :func:`load_backtests_from_directory`:
|
|
476
|
+
each backtest is loaded only when the caller asks for the next
|
|
477
|
+
item, so peak memory equals one backtest at a time. Use this when
|
|
478
|
+
a directory contains so many large backtests that the full list
|
|
479
|
+
would not fit in RAM.
|
|
480
|
+
|
|
481
|
+
Example:
|
|
482
|
+
>>> for bt in iter_backtests_from_directory(path):
|
|
483
|
+
... process(bt)
|
|
484
|
+
... # bt is dropped here; its memory is reclaimed before
|
|
485
|
+
... # the next one is read from disk.
|
|
486
|
+
|
|
487
|
+
Args:
|
|
488
|
+
directory_path: Source directory.
|
|
489
|
+
filter_function: Optional predicate; backtests for which it
|
|
490
|
+
returns False are skipped.
|
|
491
|
+
number_of_backtests_to_load: Optional cap on the number of
|
|
492
|
+
backtests yielded.
|
|
493
|
+
show_progress: Display a tqdm progress bar.
|
|
494
|
+
"""
|
|
495
|
+
directory_path = str(directory_path)
|
|
496
|
+
if not os.path.exists(directory_path):
|
|
497
|
+
logger.warning(
|
|
498
|
+
f"Directory {directory_path} does not exist. "
|
|
499
|
+
"No backtests loaded."
|
|
500
|
+
)
|
|
501
|
+
return
|
|
502
|
+
|
|
503
|
+
sources: List[tuple] = []
|
|
504
|
+
for entry in sorted(os.listdir(directory_path)):
|
|
505
|
+
if entry == "checkpoints.json" or entry.endswith(".py"):
|
|
506
|
+
continue
|
|
507
|
+
if entry == "index.parquet" or entry == "ohlcv":
|
|
508
|
+
continue
|
|
509
|
+
full = os.path.join(directory_path, entry)
|
|
510
|
+
if os.path.isfile(full):
|
|
511
|
+
if entry.endswith(BUNDLE_EXT) or is_bundle_file(full):
|
|
512
|
+
sources.append((full, "bundle"))
|
|
513
|
+
elif os.path.isdir(full):
|
|
514
|
+
sources.append((full, "directory"))
|
|
515
|
+
|
|
516
|
+
if number_of_backtests_to_load is not None:
|
|
517
|
+
sources = sources[: max(0, int(number_of_backtests_to_load))]
|
|
518
|
+
|
|
519
|
+
pbar = tqdm(
|
|
520
|
+
total=len(sources),
|
|
521
|
+
desc="Loading backtests",
|
|
522
|
+
disable=not show_progress,
|
|
523
|
+
)
|
|
524
|
+
try:
|
|
525
|
+
for item in sources:
|
|
526
|
+
try:
|
|
527
|
+
bt = _load_one_dispatch(item)
|
|
528
|
+
except Exception as e:
|
|
529
|
+
logger.error(
|
|
530
|
+
f"Failed to load backtest from {item[0]}: {e}"
|
|
531
|
+
)
|
|
532
|
+
pbar.update(1)
|
|
533
|
+
continue
|
|
534
|
+
try:
|
|
535
|
+
if filter_function is not None and not filter_function(bt):
|
|
536
|
+
pbar.update(1)
|
|
537
|
+
continue
|
|
538
|
+
except Exception as fe: # pragma: no cover - defensive
|
|
539
|
+
logger.error(f"Error in filter_function: {fe}")
|
|
540
|
+
pbar.update(1)
|
|
541
|
+
continue
|
|
542
|
+
yield bt
|
|
543
|
+
pbar.update(1)
|
|
544
|
+
finally:
|
|
545
|
+
pbar.close()
|
|
546
|
+
|
|
547
|
+
|
|
441
548
|
# ---------------------------------------------------------------------------
|
|
442
549
|
# Index helpers (#487 step 4)
|
|
443
550
|
# ---------------------------------------------------------------------------
|
|
@@ -570,13 +677,14 @@ class BacktestIndex:
|
|
|
570
677
|
def _migrate_one(args):
|
|
571
678
|
"""Worker entry point: open *src* (legacy dir or bundle), write
|
|
572
679
|
*dst* as a bundle, optionally delete *src*, return the
|
|
573
|
-
destination path.
|
|
680
|
+
destination path together with a flat index row.
|
|
574
681
|
|
|
575
682
|
Doing load+save (and optionally delete) in one worker call keeps
|
|
576
683
|
each backtest's data in a single process — avoiding the cost of
|
|
577
684
|
pickling fully-decoded Backtest objects back to the parent
|
|
578
|
-
process.
|
|
579
|
-
|
|
685
|
+
process. We also build the index row here, while the backtest is
|
|
686
|
+
still in memory, so the parent never has to re-open the migrated
|
|
687
|
+
bundles just to build ``index.parquet``.
|
|
580
688
|
"""
|
|
581
689
|
src, dst, include_ohlcv, ohlcv_store, delete_source = args
|
|
582
690
|
bt = _open_bundle(src) if is_bundle_file(src) else Backtest.open(src)
|
|
@@ -585,6 +693,11 @@ def _migrate_one(args):
|
|
|
585
693
|
include_ohlcv=include_ohlcv,
|
|
586
694
|
ohlcv_store=ohlcv_store,
|
|
587
695
|
))
|
|
696
|
+
rel = os.path.basename(out)
|
|
697
|
+
row = _backtest_to_index_row(bt, bundle_path=rel)
|
|
698
|
+
# Drop the heavy backtest before returning so the worker process's
|
|
699
|
+
# RSS can be reclaimed before it picks up the next task.
|
|
700
|
+
del bt
|
|
588
701
|
if delete_source and os.path.abspath(src) != os.path.abspath(out):
|
|
589
702
|
import shutil
|
|
590
703
|
if os.path.isdir(src):
|
|
@@ -594,7 +707,7 @@ def _migrate_one(args):
|
|
|
594
707
|
os.remove(src)
|
|
595
708
|
except OSError:
|
|
596
709
|
pass
|
|
597
|
-
return out
|
|
710
|
+
return out, row
|
|
598
711
|
|
|
599
712
|
|
|
600
713
|
def migrate_backtests(
|
|
@@ -681,33 +794,74 @@ def migrate_backtests(
|
|
|
681
794
|
n = len(plan)
|
|
682
795
|
resolved_workers = min(_resolve_workers(workers), n)
|
|
683
796
|
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
797
|
+
rows: List[dict] = []
|
|
798
|
+
pbar = tqdm(
|
|
799
|
+
total=n,
|
|
800
|
+
desc="Migrating backtests",
|
|
801
|
+
disable=not show_progress,
|
|
802
|
+
)
|
|
803
|
+
try:
|
|
804
|
+
if resolved_workers > 1:
|
|
805
|
+
# Bound in-flight tasks to ``resolved_workers`` so we don't
|
|
806
|
+
# buffer the full plan inside the executor's feeder, and
|
|
807
|
+
# consume results as they finish to keep memory flat.
|
|
808
|
+
# Recycle workers (3.11+) so RSS stays bounded across long
|
|
809
|
+
# migrations.
|
|
810
|
+
import sys
|
|
811
|
+
pool_kwargs = {"max_workers": resolved_workers}
|
|
812
|
+
if sys.version_info >= (3, 11):
|
|
813
|
+
pool_kwargs["max_tasks_per_child"] = 16
|
|
814
|
+
plan_iter = iter(plan)
|
|
815
|
+
with ProcessPoolExecutor(**pool_kwargs) as ex:
|
|
816
|
+
inflight = {}
|
|
817
|
+
for _ in range(resolved_workers):
|
|
818
|
+
try:
|
|
819
|
+
args = next(plan_iter)
|
|
820
|
+
except StopIteration:
|
|
821
|
+
break
|
|
822
|
+
inflight[ex.submit(_migrate_one, args)] = args
|
|
823
|
+
|
|
824
|
+
while inflight:
|
|
825
|
+
done_set, _unused = wait(
|
|
826
|
+
inflight.keys(), return_when=FIRST_COMPLETED
|
|
827
|
+
)
|
|
828
|
+
for fut in done_set:
|
|
829
|
+
args = inflight.pop(fut)
|
|
830
|
+
try:
|
|
831
|
+
_out, row = fut.result()
|
|
832
|
+
if write_index:
|
|
833
|
+
rows.append(row)
|
|
834
|
+
except Exception as e:
|
|
835
|
+
logger.error(
|
|
836
|
+
f"Failed to migrate {args[0]}: {e}"
|
|
837
|
+
)
|
|
838
|
+
finally:
|
|
839
|
+
pbar.update(1)
|
|
840
|
+
try:
|
|
841
|
+
nxt = next(plan_iter)
|
|
842
|
+
except StopIteration:
|
|
843
|
+
continue
|
|
844
|
+
inflight[ex.submit(_migrate_one, nxt)] = nxt
|
|
845
|
+
else:
|
|
846
|
+
for args in plan:
|
|
847
|
+
try:
|
|
848
|
+
_out, row = _migrate_one(args)
|
|
849
|
+
if write_index:
|
|
850
|
+
rows.append(row)
|
|
851
|
+
except Exception as e:
|
|
852
|
+
logger.error(f"Failed to migrate {args[0]}: {e}")
|
|
853
|
+
finally:
|
|
854
|
+
pbar.update(1)
|
|
855
|
+
finally:
|
|
856
|
+
pbar.close()
|
|
857
|
+
|
|
858
|
+
if write_index and rows:
|
|
859
|
+
import pandas as pd # local import keeps top of module light
|
|
860
|
+
df = pd.DataFrame(rows)
|
|
861
|
+
df.to_parquet(
|
|
862
|
+
Path(dst_dir) / "index.parquet",
|
|
863
|
+
index=False,
|
|
864
|
+
compression="zstd",
|
|
710
865
|
)
|
|
711
|
-
_write_index(dst_dir, migrated)
|
|
712
866
|
|
|
713
867
|
return n
|
|
@@ -38,7 +38,8 @@ from .metrics import get_annual_volatility, get_mean_daily_return, \
|
|
|
38
38
|
get_current_win_rate, get_current_average_trade_return, \
|
|
39
39
|
get_current_average_trade_loss, get_current_average_trade_duration, \
|
|
40
40
|
get_current_average_trade_gain, create_backtest_metrics_for_backtest, \
|
|
41
|
-
recalculate_backtests,
|
|
41
|
+
recalculate_backtests, recalculate_backtests_in_directory, \
|
|
42
|
+
get_cv_consistency, get_normalized_stability, \
|
|
42
43
|
get_consistency_score, get_stability_score
|
|
43
44
|
|
|
44
45
|
__all__ = [
|
|
@@ -133,6 +134,7 @@ __all__ = [
|
|
|
133
134
|
"get_current_average_trade_return",
|
|
134
135
|
"create_backtest_metrics_for_backtest",
|
|
135
136
|
"recalculate_backtests",
|
|
137
|
+
"recalculate_backtests_in_directory",
|
|
136
138
|
"TradeStopLossService",
|
|
137
139
|
"TradeTakeProfitService",
|
|
138
140
|
"get_mean_yearly_return",
|
|
@@ -28,7 +28,8 @@ from .win_rate import get_win_rate, get_win_loss_ratio, get_current_win_rate, \
|
|
|
28
28
|
get_current_win_loss_ratio
|
|
29
29
|
from .calmar_ratio import get_calmar_ratio
|
|
30
30
|
from .generate import create_backtest_metrics, \
|
|
31
|
-
create_backtest_metrics_for_backtest, recalculate_backtests
|
|
31
|
+
create_backtest_metrics_for_backtest, recalculate_backtests, \
|
|
32
|
+
recalculate_backtests_in_directory
|
|
32
33
|
from .risk_free_rate import get_risk_free_rate_us
|
|
33
34
|
from .trades import get_negative_trades, get_positive_trades, \
|
|
34
35
|
get_number_of_trades, get_number_of_closed_trades, \
|