investing-algorithm-framework 1.5__py3-none-any.whl → 7.25.6__py3-none-any.whl
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/__init__.py +192 -16
- investing_algorithm_framework/analysis/__init__.py +16 -0
- investing_algorithm_framework/analysis/backtest_data_ranges.py +202 -0
- investing_algorithm_framework/analysis/data.py +170 -0
- investing_algorithm_framework/analysis/markdown.py +91 -0
- investing_algorithm_framework/analysis/ranking.py +298 -0
- investing_algorithm_framework/app/__init__.py +29 -4
- investing_algorithm_framework/app/algorithm/__init__.py +7 -0
- investing_algorithm_framework/app/algorithm/algorithm.py +193 -0
- investing_algorithm_framework/app/algorithm/algorithm_factory.py +118 -0
- investing_algorithm_framework/app/app.py +2220 -379
- investing_algorithm_framework/app/app_hook.py +28 -0
- investing_algorithm_framework/app/context.py +1724 -0
- investing_algorithm_framework/app/eventloop.py +620 -0
- investing_algorithm_framework/app/reporting/__init__.py +27 -0
- investing_algorithm_framework/app/reporting/ascii.py +921 -0
- investing_algorithm_framework/app/reporting/backtest_report.py +349 -0
- investing_algorithm_framework/app/reporting/charts/__init__.py +19 -0
- investing_algorithm_framework/app/reporting/charts/entry_exist_signals.py +66 -0
- investing_algorithm_framework/app/reporting/charts/equity_curve.py +37 -0
- investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py +74 -0
- investing_algorithm_framework/app/reporting/charts/line_chart.py +11 -0
- investing_algorithm_framework/app/reporting/charts/monthly_returns_heatmap.py +70 -0
- investing_algorithm_framework/app/reporting/charts/ohlcv_data_completeness.py +51 -0
- investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py +79 -0
- investing_algorithm_framework/app/reporting/charts/yearly_returns_barchart.py +55 -0
- investing_algorithm_framework/app/reporting/generate.py +185 -0
- investing_algorithm_framework/app/reporting/tables/__init__.py +11 -0
- investing_algorithm_framework/app/reporting/tables/key_metrics_table.py +217 -0
- investing_algorithm_framework/app/reporting/tables/time_metrics_table.py +80 -0
- investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py +147 -0
- investing_algorithm_framework/app/reporting/tables/trades_table.py +75 -0
- investing_algorithm_framework/app/reporting/tables/utils.py +29 -0
- investing_algorithm_framework/app/reporting/templates/report_template.html.j2 +154 -0
- investing_algorithm_framework/app/stateless/action_handlers/__init__.py +6 -3
- investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py +1 -1
- investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py +2 -1
- investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py +14 -7
- investing_algorithm_framework/app/strategy.py +867 -60
- investing_algorithm_framework/app/task.py +5 -3
- investing_algorithm_framework/app/web/__init__.py +2 -1
- investing_algorithm_framework/app/web/controllers/__init__.py +2 -2
- investing_algorithm_framework/app/web/controllers/orders.py +3 -2
- investing_algorithm_framework/app/web/controllers/positions.py +2 -2
- investing_algorithm_framework/app/web/create_app.py +4 -2
- investing_algorithm_framework/app/web/schemas/position.py +1 -0
- investing_algorithm_framework/cli/__init__.py +0 -0
- investing_algorithm_framework/cli/cli.py +231 -0
- investing_algorithm_framework/cli/deploy_to_aws_lambda.py +501 -0
- investing_algorithm_framework/cli/deploy_to_azure_function.py +718 -0
- investing_algorithm_framework/cli/initialize_app.py +603 -0
- investing_algorithm_framework/cli/templates/.gitignore.template +178 -0
- investing_algorithm_framework/cli/templates/app.py.template +18 -0
- investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template +48 -0
- investing_algorithm_framework/cli/templates/app_azure_function.py.template +14 -0
- investing_algorithm_framework/cli/templates/app_web.py.template +18 -0
- investing_algorithm_framework/cli/templates/aws_lambda_dockerfile.template +22 -0
- investing_algorithm_framework/cli/templates/aws_lambda_dockerignore.template +92 -0
- investing_algorithm_framework/cli/templates/aws_lambda_readme.md.template +110 -0
- investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template +2 -0
- investing_algorithm_framework/cli/templates/azure_function_function_app.py.template +65 -0
- investing_algorithm_framework/cli/templates/azure_function_host.json.template +15 -0
- investing_algorithm_framework/cli/templates/azure_function_local.settings.json.template +8 -0
- investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template +3 -0
- investing_algorithm_framework/cli/templates/data_providers.py.template +17 -0
- investing_algorithm_framework/cli/templates/env.example.template +2 -0
- investing_algorithm_framework/cli/templates/env_azure_function.example.template +4 -0
- investing_algorithm_framework/cli/templates/market_data_providers.py.template +9 -0
- investing_algorithm_framework/cli/templates/readme.md.template +135 -0
- investing_algorithm_framework/cli/templates/requirements.txt.template +2 -0
- investing_algorithm_framework/cli/templates/run_backtest.py.template +20 -0
- investing_algorithm_framework/cli/templates/strategy.py.template +124 -0
- investing_algorithm_framework/cli/validate_backtest_checkpoints.py +197 -0
- investing_algorithm_framework/create_app.py +40 -7
- investing_algorithm_framework/dependency_container.py +100 -47
- investing_algorithm_framework/domain/__init__.py +97 -30
- investing_algorithm_framework/domain/algorithm_id.py +69 -0
- investing_algorithm_framework/domain/backtesting/__init__.py +25 -0
- investing_algorithm_framework/domain/backtesting/backtest.py +548 -0
- investing_algorithm_framework/domain/backtesting/backtest_date_range.py +113 -0
- investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py +241 -0
- investing_algorithm_framework/domain/backtesting/backtest_metrics.py +470 -0
- investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py +275 -0
- investing_algorithm_framework/domain/backtesting/backtest_run.py +663 -0
- investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py +162 -0
- investing_algorithm_framework/domain/backtesting/backtest_utils.py +198 -0
- investing_algorithm_framework/domain/backtesting/combine_backtests.py +392 -0
- investing_algorithm_framework/domain/config.py +59 -136
- investing_algorithm_framework/domain/constants.py +18 -37
- investing_algorithm_framework/domain/data_provider.py +334 -0
- investing_algorithm_framework/domain/data_structures.py +42 -0
- investing_algorithm_framework/domain/exceptions.py +51 -1
- investing_algorithm_framework/domain/models/__init__.py +26 -19
- investing_algorithm_framework/domain/models/app_mode.py +34 -0
- investing_algorithm_framework/domain/models/data/__init__.py +7 -0
- investing_algorithm_framework/domain/models/data/data_source.py +222 -0
- investing_algorithm_framework/domain/models/data/data_type.py +46 -0
- investing_algorithm_framework/domain/models/event.py +35 -0
- investing_algorithm_framework/domain/models/market/__init__.py +5 -0
- investing_algorithm_framework/domain/models/market/market_credential.py +88 -0
- investing_algorithm_framework/domain/models/order/__init__.py +3 -4
- investing_algorithm_framework/domain/models/order/order.py +198 -65
- investing_algorithm_framework/domain/models/order/order_status.py +2 -2
- investing_algorithm_framework/domain/models/order/order_type.py +1 -3
- investing_algorithm_framework/domain/models/portfolio/__init__.py +6 -2
- investing_algorithm_framework/domain/models/portfolio/portfolio.py +98 -3
- investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py +37 -43
- investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py +108 -11
- investing_algorithm_framework/domain/models/position/__init__.py +2 -1
- investing_algorithm_framework/domain/models/position/position.py +20 -0
- investing_algorithm_framework/domain/models/position/position_size.py +41 -0
- investing_algorithm_framework/domain/models/position/position_snapshot.py +0 -2
- investing_algorithm_framework/domain/models/risk_rules/__init__.py +7 -0
- investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py +51 -0
- investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py +55 -0
- investing_algorithm_framework/domain/models/snapshot_interval.py +45 -0
- investing_algorithm_framework/domain/models/strategy_profile.py +19 -141
- investing_algorithm_framework/domain/models/time_frame.py +94 -98
- investing_algorithm_framework/domain/models/time_interval.py +33 -0
- investing_algorithm_framework/domain/models/time_unit.py +66 -2
- investing_algorithm_framework/domain/models/tracing/__init__.py +0 -0
- investing_algorithm_framework/domain/models/tracing/trace.py +23 -0
- investing_algorithm_framework/domain/models/trade/__init__.py +11 -0
- investing_algorithm_framework/domain/models/trade/trade.py +389 -0
- investing_algorithm_framework/domain/models/trade/trade_status.py +40 -0
- investing_algorithm_framework/domain/models/trade/trade_stop_loss.py +332 -0
- investing_algorithm_framework/domain/models/trade/trade_take_profit.py +365 -0
- investing_algorithm_framework/domain/order_executor.py +112 -0
- investing_algorithm_framework/domain/portfolio_provider.py +118 -0
- investing_algorithm_framework/domain/services/__init__.py +11 -0
- investing_algorithm_framework/domain/services/market_credential_service.py +37 -0
- investing_algorithm_framework/domain/services/portfolios/__init__.py +5 -0
- investing_algorithm_framework/domain/services/portfolios/portfolio_sync_service.py +9 -0
- investing_algorithm_framework/domain/services/rounding_service.py +27 -0
- investing_algorithm_framework/domain/services/state_handler.py +38 -0
- investing_algorithm_framework/domain/strategy.py +1 -29
- investing_algorithm_framework/domain/utils/__init__.py +15 -5
- investing_algorithm_framework/domain/utils/csv.py +22 -0
- investing_algorithm_framework/domain/utils/custom_tqdm.py +22 -0
- investing_algorithm_framework/domain/utils/dates.py +57 -0
- investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py +19 -0
- investing_algorithm_framework/domain/utils/polars.py +53 -0
- investing_algorithm_framework/domain/utils/random.py +29 -0
- investing_algorithm_framework/download_data.py +244 -0
- investing_algorithm_framework/infrastructure/__init__.py +37 -11
- investing_algorithm_framework/infrastructure/data_providers/__init__.py +36 -0
- investing_algorithm_framework/infrastructure/data_providers/ccxt.py +1152 -0
- investing_algorithm_framework/infrastructure/data_providers/csv.py +568 -0
- investing_algorithm_framework/infrastructure/data_providers/pandas.py +599 -0
- investing_algorithm_framework/infrastructure/database/__init__.py +6 -2
- investing_algorithm_framework/infrastructure/database/sql_alchemy.py +86 -12
- investing_algorithm_framework/infrastructure/models/__init__.py +7 -3
- investing_algorithm_framework/infrastructure/models/order/__init__.py +2 -2
- investing_algorithm_framework/infrastructure/models/order/order.py +53 -53
- investing_algorithm_framework/infrastructure/models/order/order_metadata.py +44 -0
- investing_algorithm_framework/infrastructure/models/order_trade_association.py +10 -0
- investing_algorithm_framework/infrastructure/models/portfolio/__init__.py +1 -1
- investing_algorithm_framework/infrastructure/models/portfolio/portfolio_snapshot.py +8 -2
- investing_algorithm_framework/infrastructure/models/portfolio/{portfolio.py → sql_portfolio.py} +17 -6
- investing_algorithm_framework/infrastructure/models/position/position_snapshot.py +3 -1
- investing_algorithm_framework/infrastructure/models/trades/__init__.py +9 -0
- investing_algorithm_framework/infrastructure/models/trades/trade.py +130 -0
- investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py +59 -0
- investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py +55 -0
- investing_algorithm_framework/infrastructure/order_executors/__init__.py +21 -0
- investing_algorithm_framework/infrastructure/order_executors/backtest_oder_executor.py +28 -0
- investing_algorithm_framework/infrastructure/order_executors/ccxt_order_executor.py +200 -0
- investing_algorithm_framework/infrastructure/portfolio_providers/__init__.py +19 -0
- investing_algorithm_framework/infrastructure/portfolio_providers/ccxt_portfolio_provider.py +199 -0
- investing_algorithm_framework/infrastructure/repositories/__init__.py +10 -4
- investing_algorithm_framework/infrastructure/repositories/order_metadata_repository.py +17 -0
- investing_algorithm_framework/infrastructure/repositories/order_repository.py +16 -5
- investing_algorithm_framework/infrastructure/repositories/portfolio_repository.py +2 -2
- investing_algorithm_framework/infrastructure/repositories/position_repository.py +11 -0
- investing_algorithm_framework/infrastructure/repositories/repository.py +84 -30
- investing_algorithm_framework/infrastructure/repositories/trade_repository.py +71 -0
- investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py +29 -0
- investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py +29 -0
- investing_algorithm_framework/infrastructure/services/__init__.py +9 -4
- investing_algorithm_framework/infrastructure/services/aws/__init__.py +6 -0
- investing_algorithm_framework/infrastructure/services/aws/state_handler.py +193 -0
- investing_algorithm_framework/infrastructure/services/azure/__init__.py +5 -0
- investing_algorithm_framework/infrastructure/services/azure/state_handler.py +158 -0
- investing_algorithm_framework/infrastructure/services/backtesting/__init__.py +9 -0
- investing_algorithm_framework/infrastructure/services/backtesting/backtest_service.py +2596 -0
- investing_algorithm_framework/infrastructure/services/backtesting/event_backtest_service.py +285 -0
- investing_algorithm_framework/infrastructure/services/backtesting/vector_backtest_service.py +468 -0
- investing_algorithm_framework/services/__init__.py +123 -15
- investing_algorithm_framework/services/configuration_service.py +77 -11
- investing_algorithm_framework/services/data_providers/__init__.py +5 -0
- investing_algorithm_framework/services/data_providers/data_provider_service.py +1058 -0
- investing_algorithm_framework/services/market_credential_service.py +40 -0
- investing_algorithm_framework/services/metrics/__init__.py +119 -0
- investing_algorithm_framework/services/metrics/alpha.py +0 -0
- investing_algorithm_framework/services/metrics/beta.py +0 -0
- investing_algorithm_framework/services/metrics/cagr.py +60 -0
- investing_algorithm_framework/services/metrics/calmar_ratio.py +40 -0
- investing_algorithm_framework/services/metrics/drawdown.py +218 -0
- investing_algorithm_framework/services/metrics/equity_curve.py +24 -0
- investing_algorithm_framework/services/metrics/exposure.py +210 -0
- investing_algorithm_framework/services/metrics/generate.py +358 -0
- investing_algorithm_framework/services/metrics/mean_daily_return.py +84 -0
- investing_algorithm_framework/services/metrics/price_efficiency.py +57 -0
- investing_algorithm_framework/services/metrics/profit_factor.py +165 -0
- investing_algorithm_framework/services/metrics/recovery.py +113 -0
- investing_algorithm_framework/services/metrics/returns.py +452 -0
- investing_algorithm_framework/services/metrics/risk_free_rate.py +28 -0
- investing_algorithm_framework/services/metrics/sharpe_ratio.py +137 -0
- investing_algorithm_framework/services/metrics/sortino_ratio.py +74 -0
- investing_algorithm_framework/services/metrics/standard_deviation.py +156 -0
- investing_algorithm_framework/services/metrics/trades.py +473 -0
- investing_algorithm_framework/services/metrics/treynor_ratio.py +0 -0
- investing_algorithm_framework/services/metrics/ulcer.py +0 -0
- investing_algorithm_framework/services/metrics/value_at_risk.py +0 -0
- investing_algorithm_framework/services/metrics/volatility.py +118 -0
- investing_algorithm_framework/services/metrics/win_rate.py +177 -0
- investing_algorithm_framework/services/order_service/__init__.py +9 -0
- investing_algorithm_framework/services/order_service/order_backtest_service.py +178 -0
- investing_algorithm_framework/services/order_service/order_executor_lookup.py +110 -0
- investing_algorithm_framework/services/order_service/order_service.py +826 -0
- investing_algorithm_framework/services/portfolios/__init__.py +16 -0
- investing_algorithm_framework/services/portfolios/backtest_portfolio_service.py +54 -0
- investing_algorithm_framework/services/{portfolio_configuration_service.py → portfolios/portfolio_configuration_service.py} +27 -12
- investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py +106 -0
- investing_algorithm_framework/services/portfolios/portfolio_service.py +188 -0
- investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py +136 -0
- investing_algorithm_framework/services/portfolios/portfolio_sync_service.py +182 -0
- investing_algorithm_framework/services/positions/__init__.py +7 -0
- investing_algorithm_framework/services/positions/position_service.py +210 -0
- investing_algorithm_framework/services/repository_service.py +8 -2
- investing_algorithm_framework/services/trade_order_evaluator/__init__.py +9 -0
- investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py +117 -0
- investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py +51 -0
- investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py +80 -0
- investing_algorithm_framework/services/trade_service/__init__.py +9 -0
- investing_algorithm_framework/services/trade_service/trade_service.py +1099 -0
- investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py +39 -0
- investing_algorithm_framework/services/trade_service/trade_take_profit_service.py +41 -0
- investing_algorithm_framework-7.25.6.dist-info/METADATA +535 -0
- investing_algorithm_framework-7.25.6.dist-info/RECORD +268 -0
- {investing_algorithm_framework-1.5.dist-info → investing_algorithm_framework-7.25.6.dist-info}/WHEEL +1 -2
- investing_algorithm_framework-7.25.6.dist-info/entry_points.txt +3 -0
- investing_algorithm_framework/app/algorithm.py +0 -630
- investing_algorithm_framework/domain/models/backtest_profile.py +0 -414
- investing_algorithm_framework/domain/models/market_data/__init__.py +0 -11
- investing_algorithm_framework/domain/models/market_data/asset_price.py +0 -50
- investing_algorithm_framework/domain/models/market_data/ohlcv.py +0 -105
- investing_algorithm_framework/domain/models/market_data/order_book.py +0 -63
- investing_algorithm_framework/domain/models/market_data/ticker.py +0 -92
- investing_algorithm_framework/domain/models/order/order_fee.py +0 -45
- investing_algorithm_framework/domain/models/trade.py +0 -78
- investing_algorithm_framework/domain/models/trading_data_types.py +0 -47
- investing_algorithm_framework/domain/models/trading_time_frame.py +0 -223
- investing_algorithm_framework/domain/singleton.py +0 -9
- investing_algorithm_framework/domain/utils/backtesting.py +0 -82
- investing_algorithm_framework/infrastructure/models/order/order_fee.py +0 -21
- investing_algorithm_framework/infrastructure/repositories/order_fee_repository.py +0 -15
- investing_algorithm_framework/infrastructure/services/market_backtest_service.py +0 -360
- investing_algorithm_framework/infrastructure/services/market_service.py +0 -410
- investing_algorithm_framework/infrastructure/services/performance_service.py +0 -192
- investing_algorithm_framework/services/backtest_service.py +0 -268
- investing_algorithm_framework/services/market_data_service.py +0 -77
- investing_algorithm_framework/services/order_backtest_service.py +0 -122
- investing_algorithm_framework/services/order_service.py +0 -752
- investing_algorithm_framework/services/portfolio_service.py +0 -164
- investing_algorithm_framework/services/portfolio_snapshot_service.py +0 -68
- investing_algorithm_framework/services/position_cost_service.py +0 -5
- investing_algorithm_framework/services/position_service.py +0 -63
- investing_algorithm_framework/services/strategy_orchestrator_service.py +0 -225
- investing_algorithm_framework-1.5.dist-info/AUTHORS.md +0 -8
- investing_algorithm_framework-1.5.dist-info/METADATA +0 -230
- investing_algorithm_framework-1.5.dist-info/RECORD +0 -119
- investing_algorithm_framework-1.5.dist-info/top_level.txt +0 -1
- /investing_algorithm_framework/{infrastructure/services/performance_backtest_service.py → app/reporting/tables/stop_loss_table.py} +0 -0
- /investing_algorithm_framework/services/{position_snapshot_service.py → positions/position_snapshot_service.py} +0 -0
- {investing_algorithm_framework-1.5.dist-info → investing_algorithm_framework-7.25.6.dist-info}/LICENSE +0 -0
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
from typing import List
|
|
2
|
-
from datetime import datetime, timedelta
|
|
3
|
-
import pandas as pd
|
|
4
|
-
from tqdm import tqdm
|
|
5
|
-
|
|
6
|
-
from investing_algorithm_framework.domain import BacktestProfile, \
|
|
7
|
-
BACKTESTING_INDEX_DATETIME, TimeUnit, StrategyProfile, BacktestPosition, \
|
|
8
|
-
TradingDataType
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class BackTestService:
|
|
12
|
-
|
|
13
|
-
def __init__(
|
|
14
|
-
self,
|
|
15
|
-
market_data_service,
|
|
16
|
-
market_service,
|
|
17
|
-
order_service,
|
|
18
|
-
portfolio_repository,
|
|
19
|
-
position_repository,
|
|
20
|
-
performance_service,
|
|
21
|
-
):
|
|
22
|
-
self._market_data_service = market_data_service
|
|
23
|
-
self._resource_directory = None
|
|
24
|
-
self._order_service = order_service
|
|
25
|
-
self._portfolio_repository = portfolio_repository
|
|
26
|
-
self._data_index = {
|
|
27
|
-
TradingDataType.OHLCV: {},
|
|
28
|
-
TradingDataType.TICKER: {}
|
|
29
|
-
}
|
|
30
|
-
self._performance_service = performance_service
|
|
31
|
-
self._position_repository = position_repository
|
|
32
|
-
self._market_service = market_service
|
|
33
|
-
|
|
34
|
-
@property
|
|
35
|
-
def resource_directory(self):
|
|
36
|
-
return self._resource_directory
|
|
37
|
-
|
|
38
|
-
@resource_directory.setter
|
|
39
|
-
def resource_directory(self, resource_directory):
|
|
40
|
-
self._resource_directory = resource_directory
|
|
41
|
-
|
|
42
|
-
def backtest(self, algorithm, start_date=None, end_date=None):
|
|
43
|
-
strategy_profiles = []
|
|
44
|
-
|
|
45
|
-
if start_date is None:
|
|
46
|
-
start_date = datetime.utcnow()
|
|
47
|
-
|
|
48
|
-
for strategy in algorithm.strategies:
|
|
49
|
-
strategy_profiles.append(
|
|
50
|
-
self.create_strategy_profile(strategy, start_date)
|
|
51
|
-
)
|
|
52
|
-
|
|
53
|
-
backtest_profile = self.create_backtest_profile(
|
|
54
|
-
start_date=start_date, end_date=end_date
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
for strategy_profile in tqdm(strategy_profiles,
|
|
58
|
-
total=len(strategy_profiles),
|
|
59
|
-
desc="Preparing backtest market data",
|
|
60
|
-
colour="GREEN"):
|
|
61
|
-
self._market_service.create_backtest_data(
|
|
62
|
-
backtest_profile, strategy_profile,
|
|
63
|
-
)
|
|
64
|
-
|
|
65
|
-
schedule = self.generate_schedule(
|
|
66
|
-
strategy_profiles, start_date, end_date
|
|
67
|
-
)
|
|
68
|
-
backtest_profile.number_of_runs = len(schedule)
|
|
69
|
-
backtest_profile.number_of_days = (end_date - start_date).days
|
|
70
|
-
|
|
71
|
-
for index, row in tqdm(schedule.iterrows(), total=len(schedule),
|
|
72
|
-
desc="Running backtests", colour="GREEN"):
|
|
73
|
-
strategy_profile = self.get_strategy_from_strateg_profiles(
|
|
74
|
-
strategy_profiles, row['id']
|
|
75
|
-
)
|
|
76
|
-
|
|
77
|
-
self.run_backtest_for_profile(
|
|
78
|
-
backtest_profile,
|
|
79
|
-
strategy_profile,
|
|
80
|
-
algorithm,
|
|
81
|
-
algorithm.get_strategy(strategy_profile.strategy_id),
|
|
82
|
-
index,
|
|
83
|
-
row['ohlcv_data_index_date']
|
|
84
|
-
)
|
|
85
|
-
|
|
86
|
-
portfolio = self._portfolio_repository.find({"identifier": "backtest"})
|
|
87
|
-
backtest_profile.number_of_orders = self._order_service.count({
|
|
88
|
-
"portfolio": portfolio.id
|
|
89
|
-
})
|
|
90
|
-
backtest_profile.number_of_positions = self._position_repository.count({
|
|
91
|
-
"portfolio": portfolio.id,
|
|
92
|
-
"amount_gt": 0
|
|
93
|
-
})
|
|
94
|
-
backtest_profile.percentage_negative_trades = self._performance_service \
|
|
95
|
-
.get_percentage_negative_trades(portfolio.id)
|
|
96
|
-
backtest_profile.percentage_positive_trades = self._performance_service \
|
|
97
|
-
.get_percentage_positive_trades(portfolio.id)
|
|
98
|
-
backtest_profile.number_of_trades_closed = self._performance_service \
|
|
99
|
-
.get_number_of_trades_closed(portfolio.id)
|
|
100
|
-
backtest_profile.number_of_trades_open = self._performance_service \
|
|
101
|
-
.get_number_of_trades_open(portfolio.id)
|
|
102
|
-
backtest_profile.total_cost = portfolio.total_cost
|
|
103
|
-
backtest_profile.total_net_gain = portfolio.total_net_gain
|
|
104
|
-
backtest_profile.total_net_gain_percentage = self._performance_service \
|
|
105
|
-
.get_total_net_gain_percentage_of_backtest(
|
|
106
|
-
portfolio.id, backtest_profile
|
|
107
|
-
)
|
|
108
|
-
positions = self._position_repository.get_all({
|
|
109
|
-
"portfolio": portfolio.id
|
|
110
|
-
})
|
|
111
|
-
tickers = {}
|
|
112
|
-
|
|
113
|
-
for position in positions:
|
|
114
|
-
|
|
115
|
-
if position.symbol != portfolio.trading_symbol:
|
|
116
|
-
tickers[position.symbol] = self._market_service.get_ticker(
|
|
117
|
-
f"{position.symbol}/{portfolio.trading_symbol}"
|
|
118
|
-
)
|
|
119
|
-
|
|
120
|
-
backtest_profile.growth_rate = self._performance_service\
|
|
121
|
-
.get_growth_rate_of_backtest(
|
|
122
|
-
portfolio.id, tickers, backtest_profile
|
|
123
|
-
)
|
|
124
|
-
backtest_profile.growth = self._performance_service\
|
|
125
|
-
.get_growth_of_backtest(portfolio.id, tickers, backtest_profile)
|
|
126
|
-
backtest_profile.total_value = self._performance_service\
|
|
127
|
-
.get_total_value(portfolio.id, tickers, backtest_profile)
|
|
128
|
-
backtest_profile.average_trade_duration = \
|
|
129
|
-
self._performance_service.get_average_trade_duration(portfolio.id)
|
|
130
|
-
backtest_profile.average_trade_size= \
|
|
131
|
-
self._performance_service.get_average_trade_size(portfolio.id)
|
|
132
|
-
|
|
133
|
-
positions = self._position_repository.get_all({
|
|
134
|
-
"portfolio": portfolio.id
|
|
135
|
-
})
|
|
136
|
-
backtest_positions = []
|
|
137
|
-
|
|
138
|
-
for position in positions:
|
|
139
|
-
|
|
140
|
-
if position.symbol == portfolio.trading_symbol:
|
|
141
|
-
backtest_position = BacktestPosition(
|
|
142
|
-
position, trading_symbol=True
|
|
143
|
-
)
|
|
144
|
-
backtest_position.price = 1
|
|
145
|
-
else:
|
|
146
|
-
backtest_position = BacktestPosition(position)
|
|
147
|
-
ticker = self._market_service.get_ticker(
|
|
148
|
-
f"{position.symbol}/{portfolio.trading_symbol}"
|
|
149
|
-
)
|
|
150
|
-
backtest_position.price = ticker["bid"]
|
|
151
|
-
backtest_positions.append(backtest_position)
|
|
152
|
-
backtest_profile.positions = backtest_positions
|
|
153
|
-
backtest_profile.trades = algorithm.get_trades()
|
|
154
|
-
return backtest_profile
|
|
155
|
-
|
|
156
|
-
def run_backtest_for_profile(
|
|
157
|
-
self,
|
|
158
|
-
backtest_profile: BacktestProfile,
|
|
159
|
-
strategy_profile: StrategyProfile,
|
|
160
|
-
algorithm,
|
|
161
|
-
strategy,
|
|
162
|
-
index_date,
|
|
163
|
-
ohlcv_data_index_date
|
|
164
|
-
):
|
|
165
|
-
data = {TradingDataType.OHLCV: {}, TradingDataType.TICKER: {}}
|
|
166
|
-
backtest_profile.backtest_index_date = index_date
|
|
167
|
-
algorithm.config[BACKTESTING_INDEX_DATETIME] = index_date
|
|
168
|
-
|
|
169
|
-
for symbol in strategy_profile.symbols:
|
|
170
|
-
|
|
171
|
-
if TradingDataType.OHLCV in strategy_profile.trading_data_types:
|
|
172
|
-
data[TradingDataType.OHLCV][symbol] = \
|
|
173
|
-
self._market_service.get_ohclv(
|
|
174
|
-
symbol,
|
|
175
|
-
strategy_profile.trading_time_frame,
|
|
176
|
-
ohlcv_data_index_date,
|
|
177
|
-
backtest_profile.backtest_index_date
|
|
178
|
-
)
|
|
179
|
-
|
|
180
|
-
if TradingDataType.TICKER in strategy_profile.trading_data_types:
|
|
181
|
-
data[TradingDataType.TICKER][symbol] = \
|
|
182
|
-
self._market_service.get_ticker(symbol)
|
|
183
|
-
|
|
184
|
-
self._order_service.check_pending_orders(data[TradingDataType.OHLCV])
|
|
185
|
-
strategy.run_strategy(data, algorithm)
|
|
186
|
-
|
|
187
|
-
def create_backtest_profile(self, start_date, end_date):
|
|
188
|
-
portfolio = self._portfolio_repository.find(
|
|
189
|
-
{"identifier": "backtest"}
|
|
190
|
-
)
|
|
191
|
-
return BacktestProfile(
|
|
192
|
-
backtest_index_date=start_date,
|
|
193
|
-
backtest_start_date=start_date,
|
|
194
|
-
backtest_end_date=end_date,
|
|
195
|
-
initial_unallocated=portfolio.get_unallocated(),
|
|
196
|
-
trading_symbol=portfolio.trading_symbol,
|
|
197
|
-
)
|
|
198
|
-
|
|
199
|
-
def create_strategy_profile(self, strategy, backtest_start_date):
|
|
200
|
-
strategy_profile = strategy.profile
|
|
201
|
-
|
|
202
|
-
# Calculating the backtest data start date
|
|
203
|
-
difference = datetime.utcnow() - strategy_profile \
|
|
204
|
-
.trading_time_frame_start_date
|
|
205
|
-
|
|
206
|
-
total_minutes = 0
|
|
207
|
-
|
|
208
|
-
if difference.days > 0:
|
|
209
|
-
total_minutes += difference.days * 24 * 60
|
|
210
|
-
if difference.seconds > 0:
|
|
211
|
-
total_minutes += difference.seconds / 60
|
|
212
|
-
|
|
213
|
-
strategy_profile.backtest_start_date_data = \
|
|
214
|
-
backtest_start_date - timedelta(minutes=total_minutes)
|
|
215
|
-
strategy_profile.backtest_data_index_date = \
|
|
216
|
-
strategy_profile.backtest_start_date_data
|
|
217
|
-
return strategy_profile
|
|
218
|
-
|
|
219
|
-
def generate_schedule(
|
|
220
|
-
self,
|
|
221
|
-
strategy_profiles: List[StrategyProfile],
|
|
222
|
-
start_date,
|
|
223
|
-
end_date
|
|
224
|
-
):
|
|
225
|
-
data = []
|
|
226
|
-
|
|
227
|
-
for profile in strategy_profiles:
|
|
228
|
-
id = profile.strategy_id
|
|
229
|
-
time_unit = profile.time_unit
|
|
230
|
-
interval = profile.interval
|
|
231
|
-
current_time = start_date
|
|
232
|
-
ohlcv_data_index_date = profile.backtest_data_index_date
|
|
233
|
-
|
|
234
|
-
while current_time <= end_date:
|
|
235
|
-
data.append({
|
|
236
|
-
"id": id,
|
|
237
|
-
'run_time': current_time,
|
|
238
|
-
'ohlcv_data_index_date': ohlcv_data_index_date
|
|
239
|
-
})
|
|
240
|
-
|
|
241
|
-
if TimeUnit.SECOND.equals(time_unit):
|
|
242
|
-
current_time += timedelta(seconds=interval)
|
|
243
|
-
ohlcv_data_index_date += timedelta(seconds=interval)
|
|
244
|
-
elif TimeUnit.MINUTE.equals(time_unit):
|
|
245
|
-
current_time += timedelta(minutes=interval)
|
|
246
|
-
ohlcv_data_index_date += timedelta(minutes=interval)
|
|
247
|
-
elif TimeUnit.HOUR.equals(time_unit):
|
|
248
|
-
current_time += timedelta(hours=interval)
|
|
249
|
-
ohlcv_data_index_date += timedelta(hours=interval)
|
|
250
|
-
elif TimeUnit.DAY.equals(time_unit):
|
|
251
|
-
current_time += timedelta(days=interval)
|
|
252
|
-
ohlcv_data_index_date += timedelta(days=interval)
|
|
253
|
-
else:
|
|
254
|
-
raise ValueError(f"Unsupported time unit: {time_unit}")
|
|
255
|
-
|
|
256
|
-
schedule_df = pd.DataFrame(data)
|
|
257
|
-
schedule_df.sort_values(by='run_time', inplace=True)
|
|
258
|
-
schedule_df.set_index('run_time', inplace=True)
|
|
259
|
-
return schedule_df
|
|
260
|
-
|
|
261
|
-
def get_strategy_from_strateg_profiles(self, strategy_profiles, id):
|
|
262
|
-
|
|
263
|
-
for strategy_profile in strategy_profiles:
|
|
264
|
-
|
|
265
|
-
if strategy_profile.strategy_id == id:
|
|
266
|
-
return strategy_profile
|
|
267
|
-
|
|
268
|
-
raise ValueError(f"Strategy profile with id {id} not found.")
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
from datetime import datetime, timedelta
|
|
2
|
-
|
|
3
|
-
from investing_algorithm_framework.domain import TradingDataType, \
|
|
4
|
-
OperationalException, TradingTimeFrame, DATETIME_FORMAT
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class MarketDataService:
|
|
8
|
-
|
|
9
|
-
def __init__(self, market_service):
|
|
10
|
-
self.market_service = market_service
|
|
11
|
-
|
|
12
|
-
def get_data_for_strategy(self, strategy, start_date=None, end_date=None):
|
|
13
|
-
data = {}
|
|
14
|
-
|
|
15
|
-
if strategy.market and \
|
|
16
|
-
(strategy.trading_data_types or strategy.trading_data_type):
|
|
17
|
-
self.market_service.market = strategy.market
|
|
18
|
-
|
|
19
|
-
if not strategy.trading_data_types:
|
|
20
|
-
strategy.trading_data_types = [strategy.trading_data_type]
|
|
21
|
-
|
|
22
|
-
for trading_data_type in strategy.trading_data_types:
|
|
23
|
-
|
|
24
|
-
if TradingDataType.TICKER.equals(trading_data_type):
|
|
25
|
-
data[TradingDataType.TICKER] = self.market_service.get_tickers(
|
|
26
|
-
symbols=strategy.symbols
|
|
27
|
-
)
|
|
28
|
-
|
|
29
|
-
elif TradingDataType.ORDER_BOOK.equals(trading_data_type):
|
|
30
|
-
data[TradingDataType.ORDER_BOOK] = self.market_service.get_order_books(
|
|
31
|
-
symbols=strategy.symbols
|
|
32
|
-
)
|
|
33
|
-
elif TradingDataType.OHLCV.equals(trading_data_type):
|
|
34
|
-
|
|
35
|
-
if strategy.trading_time_frame is None:
|
|
36
|
-
raise OperationalException(
|
|
37
|
-
"'trading_time_frame' attribute is not specified "
|
|
38
|
-
"for OHLCV data"
|
|
39
|
-
)
|
|
40
|
-
|
|
41
|
-
trading_time_frame_start_date = \
|
|
42
|
-
strategy.trading_time_frame_start_date
|
|
43
|
-
|
|
44
|
-
if strategy.trading_time_frame_start_date is not None:
|
|
45
|
-
|
|
46
|
-
if isinstance(
|
|
47
|
-
strategy.trading_time_frame_start_date, str
|
|
48
|
-
):
|
|
49
|
-
trading_time_frame_start_date = \
|
|
50
|
-
datetime.strptime(
|
|
51
|
-
strategy.trading_time_frame_start_date,
|
|
52
|
-
DATETIME_FORMAT
|
|
53
|
-
)
|
|
54
|
-
elif not isinstance(
|
|
55
|
-
trading_time_frame_start_date, datetime
|
|
56
|
-
):
|
|
57
|
-
raise OperationalException(
|
|
58
|
-
"Invalid type for 'trading_time_"
|
|
59
|
-
"frame_start_date' attribute"
|
|
60
|
-
)
|
|
61
|
-
else:
|
|
62
|
-
trading_time_frame = TradingTimeFrame\
|
|
63
|
-
.from_value(strategy.trading_time_frame)
|
|
64
|
-
trading_time_frame_start_date = \
|
|
65
|
-
datetime.utcnow() - timedelta(
|
|
66
|
-
minutes=trading_time_frame.minutes
|
|
67
|
-
)
|
|
68
|
-
|
|
69
|
-
data[TradingDataType.OHLCV] = self.market_service.get_ohclvs(
|
|
70
|
-
strategy.symbols,
|
|
71
|
-
time_frame=TradingTimeFrame
|
|
72
|
-
.from_value(strategy.trading_time_frame),
|
|
73
|
-
from_timestamp=trading_time_frame_start_date
|
|
74
|
-
)
|
|
75
|
-
|
|
76
|
-
return data
|
|
77
|
-
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import logging
|
|
2
|
-
|
|
3
|
-
from investing_algorithm_framework.domain import BACKTESTING_INDEX_DATETIME, \
|
|
4
|
-
OrderStatus
|
|
5
|
-
from .order_service import OrderService
|
|
6
|
-
|
|
7
|
-
logger = logging.getLogger("investing_algorithm_framework")
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class OrderBacktestService(OrderService):
|
|
11
|
-
|
|
12
|
-
def __init__(
|
|
13
|
-
self,
|
|
14
|
-
order_repository,
|
|
15
|
-
order_fee_repository,
|
|
16
|
-
market_service,
|
|
17
|
-
position_repository,
|
|
18
|
-
portfolio_repository,
|
|
19
|
-
portfolio_configuration_service,
|
|
20
|
-
portfolio_snapshot_service,
|
|
21
|
-
configuration_service,
|
|
22
|
-
):
|
|
23
|
-
super(OrderService, self).__init__(order_repository)
|
|
24
|
-
self.order_repository = order_repository
|
|
25
|
-
self.order_fee_repository = order_fee_repository
|
|
26
|
-
self.market_service = market_service
|
|
27
|
-
self.position_repository = position_repository
|
|
28
|
-
self.portfolio_repository = portfolio_repository
|
|
29
|
-
self.portfolio_configuration_service = portfolio_configuration_service
|
|
30
|
-
self.portfolio_snapshot_service = portfolio_snapshot_service
|
|
31
|
-
self.configuration_service = configuration_service
|
|
32
|
-
|
|
33
|
-
def execute_order(self, order_id, portfolio):
|
|
34
|
-
order = self.get(order_id)
|
|
35
|
-
order = self.update(
|
|
36
|
-
order_id,
|
|
37
|
-
{
|
|
38
|
-
"status": OrderStatus.OPEN.value,
|
|
39
|
-
"remaining": order.remaining,
|
|
40
|
-
"updated_at": self.configuration_service
|
|
41
|
-
.config[BACKTESTING_INDEX_DATETIME]
|
|
42
|
-
}
|
|
43
|
-
)
|
|
44
|
-
return order
|
|
45
|
-
|
|
46
|
-
def check_pending_orders(self, ohlcvs=None):
|
|
47
|
-
pending_orders = self.get_all({"status": OrderStatus.OPEN.value})
|
|
48
|
-
logger.info(f"Checking {len(pending_orders)} open orders")
|
|
49
|
-
|
|
50
|
-
for order in pending_orders:
|
|
51
|
-
symbol = f"{order.target_symbol.upper()}" \
|
|
52
|
-
f"/{order.trading_symbol.upper()}"
|
|
53
|
-
|
|
54
|
-
if symbol in ohlcvs:
|
|
55
|
-
data_slice = [
|
|
56
|
-
ohclv for ohclv in ohlcvs[symbol]
|
|
57
|
-
if ohclv[0] >= order.get_created_at()
|
|
58
|
-
]
|
|
59
|
-
|
|
60
|
-
if self.has_executed(order, data_slice):
|
|
61
|
-
self.update(
|
|
62
|
-
order.id,
|
|
63
|
-
{
|
|
64
|
-
"status": OrderStatus.CLOSED.value,
|
|
65
|
-
"filled": order.get_amount(),
|
|
66
|
-
"remaining": 0,
|
|
67
|
-
"updated_at": self.configuration_service
|
|
68
|
-
.config[BACKTESTING_INDEX_DATETIME]
|
|
69
|
-
}
|
|
70
|
-
)
|
|
71
|
-
|
|
72
|
-
def cancel_order(self, order_id):
|
|
73
|
-
self.check_pending_orders(ohlcvs={})
|
|
74
|
-
order = self.order_repository.get(order_id)
|
|
75
|
-
|
|
76
|
-
if order is not None:
|
|
77
|
-
|
|
78
|
-
if OrderStatus.OPEN.equals(order.status):
|
|
79
|
-
portfolio = self.portfolio_repository\
|
|
80
|
-
.find({"position": order.position_id})
|
|
81
|
-
portfolio_configuration = self.portfolio_configuration_service\
|
|
82
|
-
.get(portfolio.identifier)
|
|
83
|
-
self.market_service.initialize(portfolio_configuration)
|
|
84
|
-
self.market_service.cancel_order(order_id)
|
|
85
|
-
|
|
86
|
-
def check_ohclv(self, order, ohclv):
|
|
87
|
-
data = ohclv
|
|
88
|
-
|
|
89
|
-
if len(data) == 0:
|
|
90
|
-
return False
|
|
91
|
-
|
|
92
|
-
lowest_price = None
|
|
93
|
-
highest_price = None
|
|
94
|
-
|
|
95
|
-
for ohclv in data:
|
|
96
|
-
|
|
97
|
-
if lowest_price is None:
|
|
98
|
-
lowest_price = ohclv[3]
|
|
99
|
-
else:
|
|
100
|
-
lowest_price = min(lowest_price, ohclv[3])
|
|
101
|
-
|
|
102
|
-
if highest_price is None:
|
|
103
|
-
highest_price = ohclv[2]
|
|
104
|
-
else:
|
|
105
|
-
highest_price = max(highest_price, ohclv[2])
|
|
106
|
-
|
|
107
|
-
if highest_price >= order.get_price() >= lowest_price:
|
|
108
|
-
return True
|
|
109
|
-
|
|
110
|
-
return False
|
|
111
|
-
|
|
112
|
-
def has_executed(self, order, ohclv):
|
|
113
|
-
return self.check_ohclv(order, ohclv)
|
|
114
|
-
|
|
115
|
-
def create_snapshot(self, portfolio_id, created_at=None):
|
|
116
|
-
|
|
117
|
-
if created_at is None:
|
|
118
|
-
created_at = self.configuration_service \
|
|
119
|
-
.config[BACKTESTING_INDEX_DATETIME]
|
|
120
|
-
|
|
121
|
-
super(OrderBacktestService, self)\
|
|
122
|
-
.create_snapshot(portfolio_id, created_at=created_at)
|