investing-algorithm-framework 6.9.1__py3-none-any.whl → 7.19.15__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.

Potentially problematic release.


This version of investing-algorithm-framework might be problematic. Click here for more details.

Files changed (192) hide show
  1. investing_algorithm_framework/__init__.py +147 -44
  2. investing_algorithm_framework/app/__init__.py +23 -6
  3. investing_algorithm_framework/app/algorithm/algorithm.py +5 -41
  4. investing_algorithm_framework/app/algorithm/algorithm_factory.py +17 -10
  5. investing_algorithm_framework/app/analysis/__init__.py +15 -0
  6. investing_algorithm_framework/app/analysis/backtest_data_ranges.py +121 -0
  7. investing_algorithm_framework/app/analysis/backtest_utils.py +107 -0
  8. investing_algorithm_framework/app/analysis/permutation.py +116 -0
  9. investing_algorithm_framework/app/analysis/ranking.py +297 -0
  10. investing_algorithm_framework/app/app.py +1322 -707
  11. investing_algorithm_framework/app/context.py +196 -88
  12. investing_algorithm_framework/app/eventloop.py +590 -0
  13. investing_algorithm_framework/app/reporting/__init__.py +16 -5
  14. investing_algorithm_framework/app/reporting/ascii.py +57 -202
  15. investing_algorithm_framework/app/reporting/backtest_report.py +284 -170
  16. investing_algorithm_framework/app/reporting/charts/__init__.py +10 -2
  17. investing_algorithm_framework/app/reporting/charts/entry_exist_signals.py +66 -0
  18. investing_algorithm_framework/app/reporting/charts/equity_curve.py +37 -0
  19. investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py +11 -26
  20. investing_algorithm_framework/app/reporting/charts/line_chart.py +11 -0
  21. investing_algorithm_framework/app/reporting/charts/ohlcv_data_completeness.py +51 -0
  22. investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py +1 -1
  23. investing_algorithm_framework/app/reporting/generate.py +100 -114
  24. investing_algorithm_framework/app/reporting/tables/key_metrics_table.py +40 -32
  25. investing_algorithm_framework/app/reporting/tables/time_metrics_table.py +34 -27
  26. investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py +23 -19
  27. investing_algorithm_framework/app/reporting/tables/trades_table.py +1 -1
  28. investing_algorithm_framework/app/reporting/tables/utils.py +1 -0
  29. investing_algorithm_framework/app/reporting/templates/report_template.html.j2 +10 -16
  30. investing_algorithm_framework/app/strategy.py +315 -175
  31. investing_algorithm_framework/app/task.py +5 -3
  32. investing_algorithm_framework/cli/cli.py +30 -12
  33. investing_algorithm_framework/cli/deploy_to_aws_lambda.py +131 -34
  34. investing_algorithm_framework/cli/initialize_app.py +20 -1
  35. investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template +18 -6
  36. investing_algorithm_framework/cli/templates/aws_lambda_dockerfile.template +22 -0
  37. investing_algorithm_framework/cli/templates/aws_lambda_dockerignore.template +92 -0
  38. investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template +2 -2
  39. investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template +1 -1
  40. investing_algorithm_framework/create_app.py +3 -5
  41. investing_algorithm_framework/dependency_container.py +25 -39
  42. investing_algorithm_framework/domain/__init__.py +45 -38
  43. investing_algorithm_framework/domain/backtesting/__init__.py +21 -0
  44. investing_algorithm_framework/domain/backtesting/backtest.py +503 -0
  45. investing_algorithm_framework/domain/backtesting/backtest_date_range.py +96 -0
  46. investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py +242 -0
  47. investing_algorithm_framework/domain/backtesting/backtest_metrics.py +459 -0
  48. investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py +275 -0
  49. investing_algorithm_framework/domain/backtesting/backtest_run.py +605 -0
  50. investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py +162 -0
  51. investing_algorithm_framework/domain/backtesting/combine_backtests.py +280 -0
  52. investing_algorithm_framework/domain/config.py +27 -0
  53. investing_algorithm_framework/domain/constants.py +6 -34
  54. investing_algorithm_framework/domain/data_provider.py +200 -56
  55. investing_algorithm_framework/domain/exceptions.py +34 -1
  56. investing_algorithm_framework/domain/models/__init__.py +10 -19
  57. investing_algorithm_framework/domain/models/base_model.py +0 -6
  58. investing_algorithm_framework/domain/models/data/__init__.py +7 -0
  59. investing_algorithm_framework/domain/models/data/data_source.py +214 -0
  60. investing_algorithm_framework/domain/models/{market_data_type.py → data/data_type.py} +7 -7
  61. investing_algorithm_framework/domain/models/market/market_credential.py +6 -0
  62. investing_algorithm_framework/domain/models/order/order.py +34 -13
  63. investing_algorithm_framework/domain/models/order/order_status.py +1 -1
  64. investing_algorithm_framework/domain/models/order/order_type.py +1 -1
  65. investing_algorithm_framework/domain/models/portfolio/portfolio.py +14 -1
  66. investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py +5 -1
  67. investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py +51 -11
  68. investing_algorithm_framework/domain/models/position/__init__.py +2 -1
  69. investing_algorithm_framework/domain/models/position/position.py +9 -0
  70. investing_algorithm_framework/domain/models/position/position_size.py +41 -0
  71. investing_algorithm_framework/domain/models/risk_rules/__init__.py +7 -0
  72. investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py +51 -0
  73. investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py +55 -0
  74. investing_algorithm_framework/domain/models/snapshot_interval.py +0 -1
  75. investing_algorithm_framework/domain/models/strategy_profile.py +19 -151
  76. investing_algorithm_framework/domain/models/time_frame.py +7 -0
  77. investing_algorithm_framework/domain/models/time_interval.py +33 -0
  78. investing_algorithm_framework/domain/models/time_unit.py +63 -1
  79. investing_algorithm_framework/domain/models/trade/__init__.py +0 -2
  80. investing_algorithm_framework/domain/models/trade/trade.py +56 -32
  81. investing_algorithm_framework/domain/models/trade/trade_status.py +8 -2
  82. investing_algorithm_framework/domain/models/trade/trade_stop_loss.py +106 -41
  83. investing_algorithm_framework/domain/models/trade/trade_take_profit.py +161 -99
  84. investing_algorithm_framework/domain/order_executor.py +19 -0
  85. investing_algorithm_framework/domain/portfolio_provider.py +20 -1
  86. investing_algorithm_framework/domain/services/__init__.py +0 -13
  87. investing_algorithm_framework/domain/strategy.py +1 -29
  88. investing_algorithm_framework/domain/utils/__init__.py +5 -1
  89. investing_algorithm_framework/domain/utils/custom_tqdm.py +22 -0
  90. investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py +19 -0
  91. investing_algorithm_framework/domain/utils/polars.py +17 -14
  92. investing_algorithm_framework/download_data.py +40 -10
  93. investing_algorithm_framework/infrastructure/__init__.py +13 -25
  94. investing_algorithm_framework/infrastructure/data_providers/__init__.py +7 -4
  95. investing_algorithm_framework/infrastructure/data_providers/ccxt.py +811 -546
  96. investing_algorithm_framework/infrastructure/data_providers/csv.py +433 -122
  97. investing_algorithm_framework/infrastructure/data_providers/pandas.py +599 -0
  98. investing_algorithm_framework/infrastructure/database/__init__.py +6 -2
  99. investing_algorithm_framework/infrastructure/database/sql_alchemy.py +81 -0
  100. investing_algorithm_framework/infrastructure/models/__init__.py +0 -13
  101. investing_algorithm_framework/infrastructure/models/order/order.py +9 -3
  102. investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py +27 -8
  103. investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py +21 -7
  104. investing_algorithm_framework/infrastructure/order_executors/__init__.py +2 -0
  105. investing_algorithm_framework/infrastructure/order_executors/backtest_oder_executor.py +28 -0
  106. investing_algorithm_framework/infrastructure/repositories/repository.py +16 -2
  107. investing_algorithm_framework/infrastructure/repositories/trade_repository.py +2 -2
  108. investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py +6 -0
  109. investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py +6 -0
  110. investing_algorithm_framework/infrastructure/services/__init__.py +0 -4
  111. investing_algorithm_framework/services/__init__.py +105 -8
  112. investing_algorithm_framework/services/backtesting/backtest_service.py +536 -476
  113. investing_algorithm_framework/services/configuration_service.py +14 -4
  114. investing_algorithm_framework/services/data_providers/__init__.py +5 -0
  115. investing_algorithm_framework/services/data_providers/data_provider_service.py +850 -0
  116. investing_algorithm_framework/{app/reporting → services}/metrics/__init__.py +48 -17
  117. investing_algorithm_framework/{app/reporting → services}/metrics/drawdown.py +10 -10
  118. investing_algorithm_framework/{app/reporting → services}/metrics/equity_curve.py +2 -2
  119. investing_algorithm_framework/{app/reporting → services}/metrics/exposure.py +60 -2
  120. investing_algorithm_framework/services/metrics/generate.py +358 -0
  121. investing_algorithm_framework/{app/reporting → services}/metrics/profit_factor.py +36 -0
  122. investing_algorithm_framework/{app/reporting → services}/metrics/recovery.py +2 -2
  123. investing_algorithm_framework/{app/reporting → services}/metrics/returns.py +146 -147
  124. investing_algorithm_framework/services/metrics/risk_free_rate.py +28 -0
  125. investing_algorithm_framework/{app/reporting/metrics/sharp_ratio.py → services/metrics/sharpe_ratio.py} +6 -10
  126. investing_algorithm_framework/{app/reporting → services}/metrics/sortino_ratio.py +3 -7
  127. investing_algorithm_framework/services/metrics/trades.py +500 -0
  128. investing_algorithm_framework/services/metrics/volatility.py +97 -0
  129. investing_algorithm_framework/{app/reporting → services}/metrics/win_rate.py +70 -3
  130. investing_algorithm_framework/services/order_service/order_backtest_service.py +21 -31
  131. investing_algorithm_framework/services/order_service/order_service.py +9 -71
  132. investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py +0 -2
  133. investing_algorithm_framework/services/portfolios/portfolio_service.py +3 -13
  134. investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py +62 -96
  135. investing_algorithm_framework/services/portfolios/portfolio_sync_service.py +0 -3
  136. investing_algorithm_framework/services/repository_service.py +5 -2
  137. investing_algorithm_framework/services/trade_order_evaluator/__init__.py +9 -0
  138. investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py +113 -0
  139. investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py +51 -0
  140. investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py +80 -0
  141. investing_algorithm_framework/services/trade_service/__init__.py +7 -1
  142. investing_algorithm_framework/services/trade_service/trade_service.py +51 -29
  143. investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py +39 -0
  144. investing_algorithm_framework/services/trade_service/trade_take_profit_service.py +41 -0
  145. investing_algorithm_framework-7.19.15.dist-info/METADATA +537 -0
  146. {investing_algorithm_framework-6.9.1.dist-info → investing_algorithm_framework-7.19.15.dist-info}/RECORD +159 -148
  147. investing_algorithm_framework/app/reporting/evaluation.py +0 -243
  148. investing_algorithm_framework/app/reporting/metrics/risk_free_rate.py +0 -8
  149. investing_algorithm_framework/app/reporting/metrics/volatility.py +0 -69
  150. investing_algorithm_framework/cli/templates/requirements_azure_function.txt.template +0 -3
  151. investing_algorithm_framework/domain/models/backtesting/__init__.py +0 -9
  152. investing_algorithm_framework/domain/models/backtesting/backtest_date_range.py +0 -47
  153. investing_algorithm_framework/domain/models/backtesting/backtest_position.py +0 -120
  154. investing_algorithm_framework/domain/models/backtesting/backtest_reports_evaluation.py +0 -0
  155. investing_algorithm_framework/domain/models/backtesting/backtest_results.py +0 -440
  156. investing_algorithm_framework/domain/models/data_source.py +0 -21
  157. investing_algorithm_framework/domain/models/date_range.py +0 -64
  158. investing_algorithm_framework/domain/models/trade/trade_risk_type.py +0 -34
  159. investing_algorithm_framework/domain/models/trading_data_types.py +0 -48
  160. investing_algorithm_framework/domain/models/trading_time_frame.py +0 -223
  161. investing_algorithm_framework/domain/services/market_data_sources.py +0 -543
  162. investing_algorithm_framework/domain/services/market_service.py +0 -153
  163. investing_algorithm_framework/domain/services/observable.py +0 -51
  164. investing_algorithm_framework/domain/services/observer.py +0 -19
  165. investing_algorithm_framework/infrastructure/models/market_data_sources/__init__.py +0 -16
  166. investing_algorithm_framework/infrastructure/models/market_data_sources/ccxt.py +0 -746
  167. investing_algorithm_framework/infrastructure/models/market_data_sources/csv.py +0 -270
  168. investing_algorithm_framework/infrastructure/models/market_data_sources/pandas.py +0 -312
  169. investing_algorithm_framework/infrastructure/services/market_service/__init__.py +0 -5
  170. investing_algorithm_framework/infrastructure/services/market_service/ccxt_market_service.py +0 -471
  171. investing_algorithm_framework/infrastructure/services/performance_service/__init__.py +0 -7
  172. investing_algorithm_framework/infrastructure/services/performance_service/backtest_performance_service.py +0 -2
  173. investing_algorithm_framework/infrastructure/services/performance_service/performance_service.py +0 -322
  174. investing_algorithm_framework/services/market_data_source_service/__init__.py +0 -10
  175. investing_algorithm_framework/services/market_data_source_service/backtest_market_data_source_service.py +0 -269
  176. investing_algorithm_framework/services/market_data_source_service/data_provider_service.py +0 -350
  177. investing_algorithm_framework/services/market_data_source_service/market_data_source_service.py +0 -377
  178. investing_algorithm_framework/services/strategy_orchestrator_service.py +0 -296
  179. investing_algorithm_framework-6.9.1.dist-info/METADATA +0 -440
  180. /investing_algorithm_framework/{app/reporting → services}/metrics/alpha.py +0 -0
  181. /investing_algorithm_framework/{app/reporting → services}/metrics/beta.py +0 -0
  182. /investing_algorithm_framework/{app/reporting → services}/metrics/cagr.py +0 -0
  183. /investing_algorithm_framework/{app/reporting → services}/metrics/calmar_ratio.py +0 -0
  184. /investing_algorithm_framework/{app/reporting → services}/metrics/mean_daily_return.py +0 -0
  185. /investing_algorithm_framework/{app/reporting → services}/metrics/price_efficiency.py +0 -0
  186. /investing_algorithm_framework/{app/reporting → services}/metrics/standard_deviation.py +0 -0
  187. /investing_algorithm_framework/{app/reporting → services}/metrics/treynor_ratio.py +0 -0
  188. /investing_algorithm_framework/{app/reporting → services}/metrics/ulcer.py +0 -0
  189. /investing_algorithm_framework/{app/reporting → services}/metrics/value_at_risk.py +0 -0
  190. {investing_algorithm_framework-6.9.1.dist-info → investing_algorithm_framework-7.19.15.dist-info}/LICENSE +0 -0
  191. {investing_algorithm_framework-6.9.1.dist-info → investing_algorithm_framework-7.19.15.dist-info}/WHEEL +0 -0
  192. {investing_algorithm_framework-6.9.1.dist-info → investing_algorithm_framework-7.19.15.dist-info}/entry_points.txt +0 -0
@@ -1,59 +1,46 @@
1
- investing_algorithm_framework/__init__.py,sha256=zY9Gsp0POSdn2M9f-ytCFgHpSpNHBRK-QEaaYqUrYCQ,3122
2
- investing_algorithm_framework/app/__init__.py,sha256=pqG1TW73UDv3mLF6_o0jPBqc-4ioYDgqS5zYcFdpxCQ,952
1
+ investing_algorithm_framework/__init__.py,sha256=07MV5OqtjhQIZHRNdjWnhpC_C6ibFn6Wx73HwxKA5S0,7177
2
+ investing_algorithm_framework/app/__init__.py,sha256=BjVkBQvVuI7ovTpR2Bn8YOHL2p5vsX-LRqpe-aS3ImM,1671
3
3
  investing_algorithm_framework/app/algorithm/__init__.py,sha256=-a9o9bTfAhW9qSW-bKvlLQuMCf-YXxIztudo2TxMjCI,136
4
- investing_algorithm_framework/app/algorithm/algorithm.py,sha256=TildoJIq_Jf-cDVc9-3sNxqKoxK7CP1EMAJlzbweZds,7923
5
- investing_algorithm_framework/app/algorithm/algorithm_factory.py,sha256=UjiUVP5sJMKS-RG5TcnuBiOMuFonDKwygNJ2OFgVvr8,3170
6
- investing_algorithm_framework/app/app.py,sha256=ilaZPbNegTTXalO7_qcx31LoI7EYh8K3DNiCCopw5E0,60169
4
+ investing_algorithm_framework/app/algorithm/algorithm.py,sha256=v8AZZ7hr5ZKJbavk242xCUpGHv3mKZ4sqfGV7BwPgdU,6854
5
+ investing_algorithm_framework/app/algorithm/algorithm_factory.py,sha256=Z6El6ErAEEljVGEM0Hkd2VXSMM9qkSCfkp-Ht-WEy3w,3549
6
+ investing_algorithm_framework/app/analysis/__init__.py,sha256=hISKshN-FQchLBasWX5raMG-IXVJP43t5fXEdrL6M9U,508
7
+ investing_algorithm_framework/app/analysis/backtest_data_ranges.py,sha256=pt8vUjhyqCN5JspihlzMWW4n5BULWcy0E9SlkEM2Fo4,3960
8
+ investing_algorithm_framework/app/analysis/backtest_utils.py,sha256=IBIqrjW_wiMQUUMrjMBrCKFn_weBTRFcbxfytGuXmDo,3429
9
+ investing_algorithm_framework/app/analysis/permutation.py,sha256=NHzyMQ9aCqLiLXyw1CpRZfITLzsRwHmMn8Uj8oV5_1E,3941
10
+ investing_algorithm_framework/app/analysis/ranking.py,sha256=-XEWmU3rxLvkC9GOW6Zci7E3Y7H2xKwU3id8ljf0n9k,10888
11
+ investing_algorithm_framework/app/app.py,sha256=ZokykTQAOLx42utnH6ufixSIn6MbLQ_qsAPW4FmltRs,87718
7
12
  investing_algorithm_framework/app/app_hook.py,sha256=cDiY4x2n06tljpx-fcbIM1oPnjTnEthibvqxUvfEppo,834
8
- investing_algorithm_framework/app/context.py,sha256=7uYdloV44zmhWQT_tWE1MXgYka5bfvZN5nhtDx5AGHQ,57131
9
- investing_algorithm_framework/app/reporting/__init__.py,sha256=hNb0SBrthv1iLSY-zTEd7jFf9dWsMu3Rof3Payz899A,482
10
- investing_algorithm_framework/app/reporting/ascii.py,sha256=UT-X2yt7roCv6ffsn4ywud06jjGm_ndxBqbpB5XBJrI,42108
11
- investing_algorithm_framework/app/reporting/backtest_report.py,sha256=CfnzdxKQEbpmvHFzmwvC41KTtUyPyiDoi45cS_gC_G8,8942
12
- investing_algorithm_framework/app/reporting/charts/__init__.py,sha256=d96Cqw-mBdGLScTv7UDf72yfJ_EooZs3ETqQekPAiXQ,445
13
- investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py,sha256=lvx_wABFsSB6ddkD7Zf8LdlnkMd1GbgEYj7XvrU092E,2443
13
+ investing_algorithm_framework/app/context.py,sha256=JgyldY7BoD6fAXxSe7sIrimwrIqM6Xo6YRkNpdU35Jg,60896
14
+ investing_algorithm_framework/app/eventloop.py,sha256=kNOu515jsawWLyuf5hZPoJlyHCqgjd16cpg4zD6L_QI,21742
15
+ investing_algorithm_framework/app/reporting/__init__.py,sha256=BnOZXT-nTvJ2ZvW0-TSz0PKk51_snoR5IbsC2eyIapw,908
16
+ investing_algorithm_framework/app/reporting/ascii.py,sha256=XotqFB6cQHsTJ-HXnKCC7mGN3Tne9QgSXjJaMQJcges,35665
17
+ investing_algorithm_framework/app/reporting/backtest_report.py,sha256=laz4NzGaJXFFsfDolLOsTmRFHldNh9vYFT_mogwAqUE,12474
18
+ investing_algorithm_framework/app/reporting/charts/__init__.py,sha256=JJgZn1t-I8y8R8uP5E2RHJXJOMGHD78LAbrdd3AcDDc,802
19
+ investing_algorithm_framework/app/reporting/charts/entry_exist_signals.py,sha256=i18NlZtwiUeqRrcrn-YnEmSd9KuoxVI4_900xKY6qzs,1781
20
+ investing_algorithm_framework/app/reporting/charts/equity_curve.py,sha256=Ir44Xk-e3vhs81ztSk3BKjh1_DONvSDG9-75rK2H9EU,1050
21
+ investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py,sha256=gNEhsjggjcpsnL9Soo3mBaFbcYAbsLqy_ym4cmLzAfU,2018
22
+ investing_algorithm_framework/app/reporting/charts/line_chart.py,sha256=IqnV8u86c_gTIi5JUp1Fc9o2nnrEQcGwRKk0GhkBa7A,218
14
23
  investing_algorithm_framework/app/reporting/charts/monthly_returns_heatmap.py,sha256=erSkbMH1LpVbCfrAUFlzieboZ1SL4j3fvso5EyD80E8,2215
15
- investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py,sha256=fTNGqFsXjML6MN_IrMxAahy032vS1UFXelgGsGOLG40,2345
24
+ investing_algorithm_framework/app/reporting/charts/ohlcv_data_completeness.py,sha256=L0Q9Gpk9cOHkMrjtS52U-fh-Bp0YavkTeaKQtHHfANk,1398
25
+ investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py,sha256=zgAZUMGINPaD8u4gG5303MJVaXAZAcjYjc7Ok5hrTFc,2346
16
26
  investing_algorithm_framework/app/reporting/charts/yearly_returns_barchart.py,sha256=YECtrEUGGgmmUWk_PKI1HGZv9ZOGPLW-URgBS-9Bhco,1630
17
- investing_algorithm_framework/app/reporting/evaluation.py,sha256=03BdF0Ts7tkBANjI8np0zgUoxu45-gfIwEt7YKgZq-A,8303
18
- investing_algorithm_framework/app/reporting/generate.py,sha256=eaTKmfMZdVdKvSbVcyjn_BIZaN_KE9l2GyTbjjf-q74,8797
19
- investing_algorithm_framework/app/reporting/metrics/__init__.py,sha256=DJyeZg1XFcqKECbFGo3jrumRIkRKIWvmuiRA68dMCfs,3078
20
- investing_algorithm_framework/app/reporting/metrics/alpha.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- investing_algorithm_framework/app/reporting/metrics/beta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- investing_algorithm_framework/app/reporting/metrics/cagr.py,sha256=I3GVZWeC4ybfpSOFws69O3GbWeSn2p8nasDUYI6PqyI,2091
23
- investing_algorithm_framework/app/reporting/metrics/calmar_ratio.py,sha256=clZTkG6bjZsjq3ANPwMaGkV09akDN1DMlUCfHU89c58,1402
24
- investing_algorithm_framework/app/reporting/metrics/drawdown.py,sha256=ogVoIBU0EhwyHEYleADUC1xqt-C4CAIZPC9OS3hhqBU,6185
25
- investing_algorithm_framework/app/reporting/metrics/equity_curve.py,sha256=JFx3wPKKwcO2w3fZ8eOpEqbSz4RE3MZ8hGrSjQQN6js,702
26
- investing_algorithm_framework/app/reporting/metrics/exposure.py,sha256=DEOa03u6PsNBLxKkf-wV-hdu4PuWpfp4LkVCKMKrUhc,4417
27
- investing_algorithm_framework/app/reporting/metrics/mean_daily_return.py,sha256=_e5GCD5xppa_GrYMEeQB9or1WLkJIF-mdmDfes8CRjQ,2384
28
- investing_algorithm_framework/app/reporting/metrics/price_efficiency.py,sha256=hpt1Nyk7s_jxFeqEVeQV9FH5N4RzJx6SP072L4z9fYw,1844
29
- investing_algorithm_framework/app/reporting/metrics/profit_factor.py,sha256=1x506HgZ0GRSgzyFjopH0Vf4V6fa_VHtZ6x8J2ooDiA,4291
30
- investing_algorithm_framework/app/reporting/metrics/recovery.py,sha256=s6-95DMMeF3pOMeM1jgtgK47KUOyeeOpvWT9I10nCfk,4374
31
- investing_algorithm_framework/app/reporting/metrics/returns.py,sha256=wA-LuGOaQlMhirN7ijYYgHgVbz5oDlWoNa1iwyn0b1c,12986
32
- investing_algorithm_framework/app/reporting/metrics/risk_free_rate.py,sha256=EXxfPOQDKcHS5_7wkRa7E9XqaV-9zWmODRuUWl2fDgE,199
33
- investing_algorithm_framework/app/reporting/metrics/sharp_ratio.py,sha256=pXA8hDFPucnUFsXeSXnwSUoAKZX9Hrn8XB5bMKqCRYs,5679
34
- investing_algorithm_framework/app/reporting/metrics/sortino_ratio.py,sha256=97hesdrdtYLZp9F19QupeE-6eNceoYlculuFwebGzy4,3166
35
- investing_algorithm_framework/app/reporting/metrics/standard_deviation.py,sha256=oObshTljORuE3x1cS0wej8QCqmDzAwHQgOA5u_HdfbU,4533
36
- investing_algorithm_framework/app/reporting/metrics/treynor_ratio.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- investing_algorithm_framework/app/reporting/metrics/ulcer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- investing_algorithm_framework/app/reporting/metrics/value_at_risk.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- investing_algorithm_framework/app/reporting/metrics/volatility.py,sha256=LzeNEkjXrUzzYSWlO8MffJKgFAXY3aaxIH9w4QQKYsc,3275
40
- investing_algorithm_framework/app/reporting/metrics/win_rate.py,sha256=Zl76iQjB0JUKowFg6thTB5gjEujLCeFkpluNOvp3JcY,3770
27
+ investing_algorithm_framework/app/reporting/generate.py,sha256=jfN3GEd43GpYWstJOOBu-df2v32CJ9lYkP3xgkfoTdc,6405
41
28
  investing_algorithm_framework/app/reporting/tables/__init__.py,sha256=ptilDH_mFbnfgOeSAtPEA2BMQqWxjnUen4ITCu5IieU,400
42
- investing_algorithm_framework/app/reporting/tables/key_metrics_table.py,sha256=WxdeJ12wHCP7hcv52j97J-lhUbnGcKF-U3P1UBV-eFM,11635
29
+ investing_algorithm_framework/app/reporting/tables/key_metrics_table.py,sha256=TGQNIOp5u3m6Bzpy5fvtu9OC3A3rQTi2S5r0YMSTm-o,10978
43
30
  investing_algorithm_framework/app/reporting/tables/stop_loss_table.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- investing_algorithm_framework/app/reporting/tables/time_metrics_table.py,sha256=9PIEvJ7W_jgcNKrCA08bDbxfIIMs_wWLV0O_PZIRIBg,3069
45
- investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py,sha256=3bprrW02YP37f-ABsWO9vrETi3BwAj1yDqlqwuYO1W0,6673
46
- investing_algorithm_framework/app/reporting/tables/trades_table.py,sha256=F0CO9YRHS8ZBV901YBwx56QY9dL4avJOmpTkve8pYpQ,2887
47
- investing_algorithm_framework/app/reporting/tables/utils.py,sha256=Qllf5mZpxctnxwcyu-rfW14zckknvwwIASW5P4uFOzU,668
48
- investing_algorithm_framework/app/reporting/templates/report_template.html.j2,sha256=4dck7Gu6PqXIFd0IJsZOmgaEy8GsLa35nl_4BtzDH2A,5386
31
+ investing_algorithm_framework/app/reporting/tables/time_metrics_table.py,sha256=7uRB9CecjaC3DPCkHwCBIKn1-wm5pArZrz_R646s2Qw,3701
32
+ investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py,sha256=Y-d3vWC8Fxzi9qSb4E2R21YPxrw5SannOaBp2fddKv0,6956
33
+ investing_algorithm_framework/app/reporting/tables/trades_table.py,sha256=Qq-YdgzsQw7gvcIMfsUrVe7on3h_vseEPj-MdoQII2I,2883
34
+ investing_algorithm_framework/app/reporting/tables/utils.py,sha256=_54mUPIuy_o6K7t_EhuRGQspMlLlFAAXWfDDpaP6vyA,669
35
+ investing_algorithm_framework/app/reporting/templates/report_template.html.j2,sha256=f-lZo5OY79CAKtDED4nb-qk_sGcfo7JHCF8k8p5w4pk,5089
49
36
  investing_algorithm_framework/app/stateless/__init__.py,sha256=VuEfb7QqDsfpFCnZdpvw8vvpNMRqOb-3w0yOpHiYlWg,1092
50
37
  investing_algorithm_framework/app/stateless/action_handlers/__init__.py,sha256=4D0olzRDBHteCILwevXdhb-9qoaJUvr7zBZvIbfzteA,2424
51
38
  investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py,sha256=lXxouu8j7Uc0W-tN0V_10SMvRCDFhVc5-fFY2UoK3m4,183
52
39
  investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py,sha256=Nb0ZQJlbK24wzOcCQwLO8U7rGSRb1pTp1YEzuSyrBOg,481
53
40
  investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py,sha256=zu30hGPD0YkRnRXWRzR4X-v-3saCJa9p3mJZUUOM_WY,1243
54
41
  investing_algorithm_framework/app/stateless/exception_handler.py,sha256=EoujrXd_TJ0cXLsEukRgdT7bw_kAH6OiCpZGcV8bVhc,1085
55
- investing_algorithm_framework/app/strategy.py,sha256=nbLIXw5L5hlx5zawNdJGY-eqbddfwnYGT6Q5Hdw6qwE,22420
56
- investing_algorithm_framework/app/task.py,sha256=O8CnJT-cJfQVvC0ZG_w489KLLAemSrkyihHvQsuDvoE,963
42
+ investing_algorithm_framework/app/strategy.py,sha256=t9HQG4g4mtNmfwT6KMXdqorVgbr4wh9F2lKmU248uOI,29125
43
+ investing_algorithm_framework/app/task.py,sha256=80t7t_HGTEqs9gI4_GgFpD4nwlLbC5VAyz5Tt_bJYoQ,1000
57
44
  investing_algorithm_framework/app/web/__init__.py,sha256=NdQpQHJzz_qCq3tGbXKCeZuZf80XyJJpYRdJG-mhlMk,190
58
45
  investing_algorithm_framework/app/web/controllers/__init__.py,sha256=qTw0_R49TYrSsmGGodeFd_f9EaJZn0cOjK6hIiwKo9g,587
59
46
  investing_algorithm_framework/app/web/controllers/orders.py,sha256=aCqS58I7ClNHIapimYFJYzQh7JGM_SW0nTMKB1V6-0A,694
@@ -69,118 +56,119 @@ investing_algorithm_framework/app/web/schemas/portfolio.py,sha256=COXC_kpBUgPOBW
69
56
  investing_algorithm_framework/app/web/schemas/position.py,sha256=vLAFaXlPtlhmMaB_Jai9xRCvCM_5lLuiaDQ_2Z39TfE,438
70
57
  investing_algorithm_framework/app/web/setup_cors.py,sha256=ASCon0U0d7cedI-s37fdztDJozVvbNiYWYDLTHDydv8,80
71
58
  investing_algorithm_framework/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- investing_algorithm_framework/cli/cli.py,sha256=6FpM9qiFxYXjEGLZ6eHVJLF7ouFHqA0_pP26pn8pZj8,5958
73
- investing_algorithm_framework/cli/deploy_to_aws_lambda.py,sha256=VFvrcaj1WO9H0iLWdjL0VY5LeykDp4kC4Nets8koZF8,12705
59
+ investing_algorithm_framework/cli/cli.py,sha256=Eo9kunTZskzjdcQCyZJTYdAps1t8NAzwr8XkEAdPFRE,6407
60
+ investing_algorithm_framework/cli/deploy_to_aws_lambda.py,sha256=FIQwdQWzzaEw_2raKnlvd0QcsyRe4LPjC4mjWq8Dh-8,15853
74
61
  investing_algorithm_framework/cli/deploy_to_azure_function.py,sha256=-rfyNoxV5i0wVQH3Lat5XTDpbFj2gL4T-CzwUjzx4Z4,22903
75
- investing_algorithm_framework/cli/initialize_app.py,sha256=RHlOKgwPTPE-IVGbEylThIPl7YJE3RfVz0PJsCfy1pI,17089
62
+ investing_algorithm_framework/cli/initialize_app.py,sha256=DMI-48LOm3CYD-sIV4k2k1XrzbdNy0cTbRAq8Qj4AKM,17651
76
63
  investing_algorithm_framework/cli/templates/.gitignore.template,sha256=rDgjdjPUzcdKRcOfo5ApKKJiP3L8BCarGGjpe3CAOXk,3553
77
64
  investing_algorithm_framework/cli/templates/app.py.template,sha256=0ctfPAUdJPZW4yqljBfD8aPJJorKPU4YBpGK_VsZYeo,540
78
- investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template,sha256=y_Queu5UG2HVINFU2vEeUHknSO-913C9wQQFZMoOtjE,1176
65
+ investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template,sha256=tORCgj773R2YCGBaZ8szQfgPKNvVquxv5QwUgC5isKs,1687
79
66
  investing_algorithm_framework/cli/templates/app_azure_function.py.template,sha256=TADjSXMZpcqu-p-rpREwiiQNBbEk5z-HV5oNjAePqMQ,521
80
67
  investing_algorithm_framework/cli/templates/app_web.py.template,sha256=Tse-xD6WSnz8JkcPn4i-apKlsGNA1RfC58gMNrVej9M,524
68
+ investing_algorithm_framework/cli/templates/aws_lambda_dockerfile.template,sha256=Uahth3nk_dO1btN6d1eQ-cdZT-l_EILOzNLo5YsCyss,423
69
+ investing_algorithm_framework/cli/templates/aws_lambda_dockerignore.template,sha256=gIHvUxoZp5yXAgyTGltV4i54CvZzFHgWbuNQT9hiGWA,1039
81
70
  investing_algorithm_framework/cli/templates/aws_lambda_readme.md.template,sha256=zFRkI97ebsWOaQLmmK2Zqn88GymDDnwqr2JihSEbggU,4161
82
- investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template,sha256=RegFgiPIfC-tCj6rTNXhZR3DPKHY-kPuPHDGAeCWcmo,57
71
+ investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template,sha256=5D1Ftx6yAKU0lLTjt5oaxucU22j1R4a4oKhk1ML_S80,56
83
72
  investing_algorithm_framework/cli/templates/azure_function_function_app.py.template,sha256=9RA1nKeWmt8dbKvR2gUgpoqKve6wX61yPjzZN33TP-s,2053
84
73
  investing_algorithm_framework/cli/templates/azure_function_host.json.template,sha256=3Sr5FqJEHZ6X8bSyP_a5QlOnRSYfMPI6BABTQw54ql8,288
85
74
  investing_algorithm_framework/cli/templates/azure_function_local.settings.json.template,sha256=VBplTqQ4xoiw_jDmLzxs9RY94Xg67BBRTlGiYn80YsA,173
86
- investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template,sha256=yyrPYWOJHkaKRhduRzhk4W8sy6LuZRRgLpdcyrgFA4M,80
75
+ investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template,sha256=oCbPbfWJGQzSUoTWreDEN0kFcIZNMeSRaVc1wQP5XQ0,80
87
76
  investing_algorithm_framework/cli/templates/data_providers.py.template,sha256=1_9P16ZQZJ4x1_8iMwogXd-q7mb-JAnIh9lHM8RfLtc,426
88
77
  investing_algorithm_framework/cli/templates/env.example.template,sha256=TKSglupUUG5E4TmVUGDMPi8iWhrbV7DUWo0MFDMFag8,65
89
78
  investing_algorithm_framework/cli/templates/env_azure_function.example.template,sha256=iLJ6Gkg97-cdDNVJccSTUtCqP7d0gDPobpXp42xbmPU,219
90
79
  investing_algorithm_framework/cli/templates/market_data_providers.py.template,sha256=ahKd6yV3Rj4SCTy_8ZixnN0twv297f-Jy9F4fWZdO_E,234
91
80
  investing_algorithm_framework/cli/templates/readme.md.template,sha256=0qJLEGvzu2sJUyojK9x0QiukfYHXlQVR-2W6QrzYSjo,5729
92
81
  investing_algorithm_framework/cli/templates/requirements.txt.template,sha256=RegFgiPIfC-tCj6rTNXhZR3DPKHY-kPuPHDGAeCWcmo,57
93
- investing_algorithm_framework/cli/templates/requirements_azure_function.txt.template,sha256=yyrPYWOJHkaKRhduRzhk4W8sy6LuZRRgLpdcyrgFA4M,80
94
82
  investing_algorithm_framework/cli/templates/run_backtest.py.template,sha256=mHwKLxMp-rhj_NLUgVzxYRt0zaelvNR3NqJPLdDFQp8,591
95
83
  investing_algorithm_framework/cli/templates/strategy.py.template,sha256=Ox8IZ6XlPDCCgq9T8KO3NazR2UXJs3FgkjbgfPqoad8,4603
96
- investing_algorithm_framework/create_app.py,sha256=cM5zV5wWhpKaYNIVFmvAesHWsgXDYWR_yvr9hWTnyWs,1453
97
- investing_algorithm_framework/dependency_container.py,sha256=DqnHs3OL0t108DdsiwIwmFX10PiXqog-JtoUgXLQWhY,7770
98
- investing_algorithm_framework/domain/__init__.py,sha256=Icfq8H04Ji3RsZ9v3C433FgAzhj80ieq7TsIP-kHeOM,4665
99
- investing_algorithm_framework/domain/config.py,sha256=VegbZhxj97aY8UuTQwPLrG6K2Y6laQLohNdWyMe7r0Q,2191
100
- investing_algorithm_framework/domain/constants.py,sha256=Xn06uqgbmSk4c1u9x9QT0UTnDQ68mxyrmL2mPgiGET8,2451
101
- investing_algorithm_framework/domain/data_provider.py,sha256=bguHjlTMmnLyT9H82D4VQTTmrnxVgX1hWniYWYP9LDE,6197
84
+ investing_algorithm_framework/create_app.py,sha256=HN_45Bza5Ro3o-v364m2mjSVjjZnyESOGHn3dcPDfQ4,1372
85
+ investing_algorithm_framework/dependency_container.py,sha256=oVj_u6ysBOE3eE4sP00IVN0iQ_qfIFtfyZ1vel5WM9I,7133
86
+ investing_algorithm_framework/domain/__init__.py,sha256=RvZqUpt1pqLegWcTVKxhc763Ag1aw5HLJN7rRVFwJs8,4883
87
+ investing_algorithm_framework/domain/backtesting/__init__.py,sha256=q-NejGHzE233w5jXPhSsuLpBZ_yl3m-qb2g6FnxZaps,699
88
+ investing_algorithm_framework/domain/backtesting/backtest.py,sha256=oo95ectus8BGZcf4JOATYWxUC9gYrpEshoM_CnYsrmw,18023
89
+ investing_algorithm_framework/domain/backtesting/backtest_date_range.py,sha256=e_V7HMdtln4uu87jwwa_Yr7ZesgrpFqsEqtr0e0DTto,3186
90
+ investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py,sha256=D__3I_TSxDVnGtlddmWt4wHcqut8MGyYMf1IfQZXYJ0,7547
91
+ investing_algorithm_framework/domain/backtesting/backtest_metrics.py,sha256=gfiuNhT15UpY5l02onknf7D5wHJfeUKodlnG9FV5I1E,20120
92
+ investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py,sha256=1bIZwdG6Sf0D0FliwS0QGY3gOunZ40F9E2nHnkZyIhY,9059
93
+ investing_algorithm_framework/domain/backtesting/backtest_run.py,sha256=d6ksOD-pXBMTzb_CZ3xEcDBXRWxadxXa3gQJCycsRgU,21181
94
+ investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py,sha256=Dt3gFz-MNmxtOhYxVPN8lI_7rXtE9PK10lULDFuCHlU,7131
95
+ investing_algorithm_framework/domain/backtesting/combine_backtests.py,sha256=cZTbXzN1NgRASLXehupFajEguyth0A225xtSYf-F8CA,10309
96
+ investing_algorithm_framework/domain/config.py,sha256=_VkaJvrdqIKAT3_l-Y8XTEKNEaw5uVIwQ7vxomuCpUw,3003
97
+ investing_algorithm_framework/domain/constants.py,sha256=BWNzhfv4mme69y1VmhpINA8dHpXYc03LAmi9jGuXEYE,1702
98
+ investing_algorithm_framework/domain/data_provider.py,sha256=oMGxj3dj6l8DiXmlMqohMla2yLHQM2pHGIBWU1Ele9Q,12691
102
99
  investing_algorithm_framework/domain/data_structures.py,sha256=ePtdGhVaB16QLUvKQn5MiWM_TBOcBBTj5M0llW8tGEE,989
103
100
  investing_algorithm_framework/domain/decimal_parsing.py,sha256=NtMNkxZyWrFHxGKd6gLIDmWF88BYcTl8tYaAaKO1tlg,823
104
- investing_algorithm_framework/domain/exceptions.py,sha256=GN-XbuGjoR_Uz1PlNcmlmvtyEk_qgNztceoajudLSSc,2041
105
- investing_algorithm_framework/domain/models/__init__.py,sha256=Rf0cvGqDKToxs4oASuShiO4vVVcJYx9iHHg5O2UZ668,1513
101
+ investing_algorithm_framework/domain/exceptions.py,sha256=_KiUaD9BIITFMev0GRGF6632uAdBL_37c4lKAqGMhoA,3139
102
+ investing_algorithm_framework/domain/models/__init__.py,sha256=47wRhb7GnDc83x-DWuyk3AwGkU2WmMB6n5mtytikXDs,1203
106
103
  investing_algorithm_framework/domain/models/app_mode.py,sha256=V1p9QMSNLlz6KjPib8d1J2EaSZh7jmXjZ1V2DFOrIaU,812
107
- investing_algorithm_framework/domain/models/backtesting/__init__.py,sha256=6r1P0AC4ezMyhtYe0lDulm5QZA5ZtDishxeU6rnu84E,229
108
- investing_algorithm_framework/domain/models/backtesting/backtest_date_range.py,sha256=yq8mJKnB6ml14adrAcK-Yc7pk5H55u-GrI1fDyxuNAU,1175
109
- investing_algorithm_framework/domain/models/backtesting/backtest_position.py,sha256=sevPiTwWlUI0hd1MfBYuX933rPcqQTC79pEKhBw1LjE,2860
110
- investing_algorithm_framework/domain/models/backtesting/backtest_reports_evaluation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
- investing_algorithm_framework/domain/models/backtesting/backtest_results.py,sha256=kTGuQLXa-sFLNXqNMHFAh_pl5GIErUvF66hgBxdKvIY,16851
112
- investing_algorithm_framework/domain/models/base_model.py,sha256=XQtjwsK7c-E7-06f8TBIC-BTx9v8MIQYnLXz4oXktjo,788
113
- investing_algorithm_framework/domain/models/data_source.py,sha256=Yuer6obMibPx-hkurNBj3zyzV2Bdos1oXaLGqI3YMHE,469
114
- investing_algorithm_framework/domain/models/date_range.py,sha256=q0HuYQX_ePwTZigl4OH7PZD5XrOpToiXPdIf2BqS404,1690
104
+ investing_algorithm_framework/domain/models/base_model.py,sha256=1_DMaDR13gc6l5yWpMgKaAK7OJstc4lmvZV5DhwYM6o,659
105
+ investing_algorithm_framework/domain/models/data/__init__.py,sha256=C6lM_DzDpuI_ZtKfCUYrYs5aNUH5YLLkbxVTZJMEGvs,117
106
+ investing_algorithm_framework/domain/models/data/data_source.py,sha256=bdk7BrYtKVzSwxjIUHE3rKLXBdNQBr0yNSzCoJR6v2s,7442
107
+ investing_algorithm_framework/domain/models/data/data_type.py,sha256=s6Y5VXam7eUyIR7GCWiwd44kwBm27TmXrdhBIwmeAAo,996
115
108
  investing_algorithm_framework/domain/models/event.py,sha256=57a0kLrOKYYTvQMXRqkd5wTcB2S0NlO7fjaVKoNlk0o,876
116
109
  investing_algorithm_framework/domain/models/market/__init__.py,sha256=FUZOmpJgtCn7IM-5Kn464kY-_JLJQGCtwv5HLjlOrvk,87
117
- investing_algorithm_framework/domain/models/market/market_credential.py,sha256=P30RnILR89dJaH4KAia2EYknjUo1dD1iBDmcRoZEDFI,2352
118
- investing_algorithm_framework/domain/models/market_data_type.py,sha256=bnZxXgcFI7jKnRyGQ22AqEuXcP_Qn9NpqJp3xEgBnrI,1038
110
+ investing_algorithm_framework/domain/models/market/market_credential.py,sha256=NlBbNVXriBtoSBxluNbwS_llojASl6KA4mQjY2kLgo8,2535
119
111
  investing_algorithm_framework/domain/models/order/__init__.py,sha256=ELj0kT4YAhBOECQJBMTZzQ80yatrbbPf_A5iNAMN4X8,193
120
- investing_algorithm_framework/domain/models/order/order.py,sha256=rBaEtBSeFbn_VieFovVYrBaQYug-6bFO4YJ2s2fdpyg,10972
112
+ investing_algorithm_framework/domain/models/order/order.py,sha256=MLZh4avo_xLqqbxPvQAsBnvUfkx9FbAsHPs42lG51pg,11820
121
113
  investing_algorithm_framework/domain/models/order/order_side.py,sha256=lMSTM8rb_Q3qgApryI0RXKiAAeGKDDlyu3q9bbuAQ-w,814
122
- investing_algorithm_framework/domain/models/order/order_status.py,sha256=hI-qKdc4cZPZF3KgLCdJnCqEALdLDT_slq51neGvjP0,946
123
- investing_algorithm_framework/domain/models/order/order_type.py,sha256=rhzKuhFIl4rpd-xNWPkTJGAC9ysumB130ag6nX0LvGU,689
114
+ investing_algorithm_framework/domain/models/order/order_status.py,sha256=DjAmVZy7npXr7P77iILH3INGrRdt_QXzKLrpqI1DSqY,956
115
+ investing_algorithm_framework/domain/models/order/order_type.py,sha256=d0TkR5hjZEIT2ZTYHj8yjZS-zV9OP_iFjw2e0etyDgg,699
124
116
  investing_algorithm_framework/domain/models/portfolio/__init__.py,sha256=gMMZG6Owvbsq7jL9PhhRbqV8tM9oebGUY8Yc6zedHj4,230
125
- investing_algorithm_framework/domain/models/portfolio/portfolio.py,sha256=fZYtkpOZqOE9ikRnWs9GH9I0TLC4HwdxIHFcravtvgM,5257
126
- investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py,sha256=o9pP6EL8JNXeaP2lHglfv5lOvFbypPCgIvguaOEZlqY,2650
127
- investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py,sha256=ci_J3FM6yC4BboDouykOnmNMEklHgL9CyUQnN_cMYRk,4926
128
- investing_algorithm_framework/domain/models/position/__init__.py,sha256=Iv4-DUwgwf521P5qCu6R3WSVZxPeEtGoHP8WsS3qNUU,123
129
- investing_algorithm_framework/domain/models/position/position.py,sha256=hu1gH-fuYdftrkhFIY-9YlFRLPvQ2wXwBIRDV5JYLj0,1320
117
+ investing_algorithm_framework/domain/models/portfolio/portfolio.py,sha256=xUUk9mEwuJLhDPpA6nVmY6AZtFjA1bHrye0mTbAmgUs,5503
118
+ investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py,sha256=8KrR-lad1LA-s5loTetAfL1AYoaU-usCpL0ilKEMNEY,2685
119
+ investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py,sha256=YQnTwrjF8dnF4tkpL-XTid_TvXedN3RNIqBcaLmJTWY,6895
120
+ investing_algorithm_framework/domain/models/position/__init__.py,sha256=cdM5nkyAsNbL860Dj8oYG4onPHXA0507xoNfEzGvdUw,179
121
+ investing_algorithm_framework/domain/models/position/position.py,sha256=MSE1hHowJEUF9ljjSeUnvMLU0eLy1gdL6P7cwExzwZM,1575
122
+ investing_algorithm_framework/domain/models/position/position_size.py,sha256=J1YvTOm-0gPpGCoICqY7tvaCdm5l7vplnxNwf3J0eGg,1349
130
123
  investing_algorithm_framework/domain/models/position/position_snapshot.py,sha256=BpMhUTn--oUVXQHi62uOb4Ac7yuBwHW3iUCFpBPOtW0,1131
131
- investing_algorithm_framework/domain/models/snapshot_interval.py,sha256=FYaFKhBPJ1zB3nWCB2GXbJatD_yb2vdRaFLWAKkJVhM,1083
132
- investing_algorithm_framework/domain/models/strategy_profile.py,sha256=7-dmzr4YbStntIPz5SEPddThAGsLJH_Fo_jRexAnFTQ,4598
133
- investing_algorithm_framework/domain/models/time_frame.py,sha256=cPSxMDPo4-M4LXvZ62bt05TloN60VdsYuVRFR6SmqNs,3836
134
- investing_algorithm_framework/domain/models/time_interval.py,sha256=PyA0JeGgV51kf0sZ1yeQ52BCLsrJqlqD1FxGm53qioY,2798
135
- investing_algorithm_framework/domain/models/time_unit.py,sha256=Jm8vQB3drdmhpkcYaXzjKfeqjiwHAOqEJWSCvn6Z7Tc,2150
124
+ investing_algorithm_framework/domain/models/risk_rules/__init__.py,sha256=Gp_2sKiwcy5tUD09fX4hBL8lDsx8zpgoEvhl1aEgwLg,143
125
+ investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py,sha256=BHn5vTfD9UbPAN9c8ZA7OK7hrSAdz9nzYALteiZHJ5s,2151
126
+ investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py,sha256=SZe8PwKom0KqIGmnG24tJnlRluOXaH5QEn62oKDrLQY,2252
127
+ investing_algorithm_framework/domain/models/snapshot_interval.py,sha256=lfdBG2fzWj4fKkDFNhGbk21WlMM7t44n4NKM5Vh5toc,1051
128
+ investing_algorithm_framework/domain/models/strategy_profile.py,sha256=d2Sa47NH8gxAObkMJ-Qo4utmzAqIznpaTf7jCPxTbYs,933
129
+ investing_algorithm_framework/domain/models/time_frame.py,sha256=SzQs_lUFYSiuhJvU-IAZP67hz5NdCLHK843C48DdOlI,4014
130
+ investing_algorithm_framework/domain/models/time_interval.py,sha256=M7HNe-QjBUmCaySomMxPuDAzPiBc0FbAwYOuTkPUqzk,3919
131
+ investing_algorithm_framework/domain/models/time_unit.py,sha256=dCi1lcVK-QGlOt6yRclL7n_PbXRcDbJ8pPaB_KMg8y0,4033
136
132
  investing_algorithm_framework/domain/models/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
133
  investing_algorithm_framework/domain/models/tracing/trace.py,sha256=iAVEN102-y_7Wj9Qg7kdti8-2I63Y8UG0SF3V2pkHj8,699
138
- investing_algorithm_framework/domain/models/trade/__init__.py,sha256=2hX5zmAodsEuFeFghsQhinNobXVuc4oYcMeczY2sbsc,308
139
- investing_algorithm_framework/domain/models/trade/trade.py,sha256=YgGISCwFZTuHHDV_PHPTchZNZ1nrCPS1EpKxqVvY0wk,12092
140
- investing_algorithm_framework/domain/models/trade/trade_risk_type.py,sha256=f-1bOc2GkdphPL3ewPzgsZ5OLX2_fc2e1DVARDl1RRc,839
141
- investing_algorithm_framework/domain/models/trade/trade_status.py,sha256=FLBmGIednOXqRraV_aLa8qZ_-v7UtkQdky__Tj16Qtk,831
142
- investing_algorithm_framework/domain/models/trade/trade_stop_loss.py,sha256=YbX5cQinGhWyl8k_KDSDjvsNui_xcxvelamDyLkleJw,10367
143
- investing_algorithm_framework/domain/models/trade/trade_take_profit.py,sha256=ywySHVh_l0-YzfrhoFHyi7-uDlrUTD67X-ndEySKURY,11856
144
- investing_algorithm_framework/domain/models/trading_data_types.py,sha256=c_BS2Ut2MNTvr5yz9S9icW0wOJitnAoATSXFcIsekJc,1141
145
- investing_algorithm_framework/domain/models/trading_time_frame.py,sha256=DrFDjxJ1K5LgCnSi5q4ZrDCugfq6n_ETbxhaCbYVf1o,6791
146
- investing_algorithm_framework/domain/order_executor.py,sha256=-v7UO3mVf6ZanTYS-4_kSshjskMW3-3wEUX5yeB93Qw,3209
147
- investing_algorithm_framework/domain/portfolio_provider.py,sha256=PHsArukeZo5B-8sk4e6AmeoEYA7KCegVVMToz0q3_pg,3295
148
- investing_algorithm_framework/domain/services/__init__.py,sha256=AYKg9JiKg4bw-gr_sIqxZm-tJg4p6WBiIghiDuiGJsM,793
134
+ investing_algorithm_framework/domain/models/trade/__init__.py,sha256=HZ46zE1MAJiZDzl-4LzjDcGU0vP72L6Z6E90ewKZtcc,244
135
+ investing_algorithm_framework/domain/models/trade/trade.py,sha256=98unP3da6CFvW0nz2zsjjDHiY_RT0cTGXVJrpmKHlEk,13109
136
+ investing_algorithm_framework/domain/models/trade/trade_status.py,sha256=9b5QDwg8vsu_iRtGWatJ1rJFubjIWslKHTG3cK0zVQ4,1004
137
+ investing_algorithm_framework/domain/models/trade/trade_stop_loss.py,sha256=rEWME9upMeNal5IC2EilsJdyThDBQ6ZXvbVJ4aFUDyw,13011
138
+ investing_algorithm_framework/domain/models/trade/trade_take_profit.py,sha256=fj36ZtkSX7-YC5wNfhPC151DiGdfsWVYcCjqS49FGsE,15320
139
+ investing_algorithm_framework/domain/order_executor.py,sha256=Ila0yfsZ46eDLWqVcrFrHjOSoFEFuHMmiAxs3N8Ba2M,3792
140
+ investing_algorithm_framework/domain/portfolio_provider.py,sha256=8KWH8uXdRbU6C1fyvWkYL_ZfdgiUZhvyiAR_V2mBMfY,3879
141
+ investing_algorithm_framework/domain/services/__init__.py,sha256=kmGPiLaZTpypWFZPVMzb9dtfsLdvHuFo1rRDp_f4H9g,327
149
142
  investing_algorithm_framework/domain/services/market_credential_service.py,sha256=Ib_lFd0R7oumtuEf4YR8nX8oAH1pKa0AOk4WKPbiU0c,1047
150
- investing_algorithm_framework/domain/services/market_data_sources.py,sha256=uEGVoJwtXuBHtdr44tWrEVqTj6ZUvauSxW-XBZ1TXnM,14574
151
- investing_algorithm_framework/domain/services/market_service.py,sha256=3OmAzLM5wt9hO6YgGC8OQM0UPshDJ6TL5C-RPddd9Xo,3693
152
- investing_algorithm_framework/domain/services/observable.py,sha256=_Iy_HSWluEahSvXz4bRHbP32BIhWvGUt7pI_8q-6blI,1490
153
- investing_algorithm_framework/domain/services/observer.py,sha256=nh1LGyiG320F06PEtfXJzFRE2OwowVJFPhMfs55_2yU,536
154
143
  investing_algorithm_framework/domain/services/portfolios/__init__.py,sha256=8N1Dh9GESzE7AN776F8Duql5yblKf9SjcwZAX0C6RaE,115
155
144
  investing_algorithm_framework/domain/services/portfolios/portfolio_sync_service.py,sha256=8Cp9bFhkKFjPcYJB39wY5v9gFetj2lVovDxJJRvHlHE,213
156
145
  investing_algorithm_framework/domain/services/rounding_service.py,sha256=aY2H5nNVxAsc1JRdA2Qwoe8LmGVjf1UaQ0R-hqYgXu8,699
157
146
  investing_algorithm_framework/domain/services/state_handler.py,sha256=L1OcRKpaxw1CqTh71Y0rDWR5fk3pvNKVwaxE9b9Jlqs,839
158
147
  investing_algorithm_framework/domain/stateless_actions.py,sha256=DHhuI_3oL6JqWWucsZNvB3a9vFthZAk20Rg89_lc9o8,156
159
- investing_algorithm_framework/domain/strategy.py,sha256=bLiMll_hoOjCjgeSnTN5a9sriPgL8N4qULqDxD9zsQk,1805
160
- investing_algorithm_framework/domain/utils/__init__.py,sha256=kgq00I_oxinwm_QsJ84jp9yZPkBxKIL2M2CYdcidJD0,722
148
+ investing_algorithm_framework/domain/strategy.py,sha256=F4GWyz3DmccPP0oc4uLl7tS30eqRXW2Inh5Rras3J9Q,850
149
+ investing_algorithm_framework/domain/utils/__init__.py,sha256=YrJrQ2ZBKeMcuCKv0qRck71_H6NMOTP5TBshL1MHYzQ,851
161
150
  investing_algorithm_framework/domain/utils/csv.py,sha256=QK7EC_jY4u9s97OFOcoxwZsBPGTnO79Z4qx07ms4MWI,2746
151
+ investing_algorithm_framework/domain/utils/custom_tqdm.py,sha256=LwPiuYedzujtV-kp4Uq_Pe8CqjH6zFvvCuSWCharOP8,583
162
152
  investing_algorithm_framework/domain/utils/dates.py,sha256=T3ZwN6UXKZmcqSjrdH5j2Ielq2PB4fm12QXSy-wdrZw,1541
163
- investing_algorithm_framework/domain/utils/polars.py,sha256=XvjknkvbmzJcHhmjA_HPm2pCdx3hgO5gWwhXaQzlsHA,1619
153
+ investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py,sha256=Al0T72bhvmyYFGEYDVPbIBOpXtIfgmn8_Tq1KKJYyig,624
154
+ investing_algorithm_framework/domain/utils/polars.py,sha256=1oqlZbNgOvIUyoJTRuwxdzZhlSqYF7R1SDjdhgb0Reg,1828
164
155
  investing_algorithm_framework/domain/utils/random.py,sha256=25PQSDuTmMd32sN7H3LQejUO73hQW5FCHGOpKYfdXI0,945
165
156
  investing_algorithm_framework/domain/utils/signatures.py,sha256=MO2hCrrnQjbsT6guX4AdeJfcAP55pRXtjJ73uX1cjaI,417
166
157
  investing_algorithm_framework/domain/utils/stoppable_thread.py,sha256=z3-OGZ-wrygfYn4zhB3COHdB43qQYa65TeShyVokSp0,608
167
158
  investing_algorithm_framework/domain/utils/synchronized.py,sha256=YjvutHxMh5r1WEpOYPAXm7_xHRaDzj5YTj7HqfKqJm0,253
168
- investing_algorithm_framework/download_data.py,sha256=eXFcFLe77iQW2Lg_Li6q5Yg57HVgROMzj-UgJc12eBs,2762
169
- investing_algorithm_framework/infrastructure/__init__.py,sha256=rGNefdmnRdgHMVZcWRnxmWW0JqmohPlIx9p88aouR_w,2291
170
- investing_algorithm_framework/infrastructure/data_providers/__init__.py,sha256=0T7D7RKXerEMGQsZogMFQc4iotgn3GzKoK1LsMoYs9I,637
171
- investing_algorithm_framework/infrastructure/data_providers/ccxt.py,sha256=-yUUhpmTwYtWKJ84uPE6q66LHCulBInl1-OdakymVE0,28004
172
- investing_algorithm_framework/infrastructure/data_providers/csv.py,sha256=UX6TBB2hv7joPC9eO2DSfWO3GELSh6g_8rwOz7qhFG0,7532
173
- investing_algorithm_framework/infrastructure/database/__init__.py,sha256=6t-_-w0RuQLRkbUIN1lL0N4MzJePmcjRuV96Kzo3_n4,176
174
- investing_algorithm_framework/infrastructure/database/sql_alchemy.py,sha256=4dcYurl5zEHdAnqbsoCFTBxITgESeEtc1wEDXuvwziQ,1175
175
- investing_algorithm_framework/infrastructure/models/__init__.py,sha256=0-uCdxmmcBch0oHe0JwXT8izJbSspFh-PCZ3or7yAqk,1024
159
+ investing_algorithm_framework/download_data.py,sha256=VSnXiHOSyIXwUrFuXHlvJb-YMUrXBTQN2P2r4qcQsCI,3956
160
+ investing_algorithm_framework/infrastructure/__init__.py,sha256=-ekyHXcQzGSIp3HYOxqV2W2Wt5JiLxazmkEE-jOV7qA,1774
161
+ investing_algorithm_framework/infrastructure/data_providers/__init__.py,sha256=7uhvfzs5eAoARD_f36d7xmns9JSpQX843pyplQF6f0A,742
162
+ investing_algorithm_framework/infrastructure/data_providers/ccxt.py,sha256=4POw4jjwnhqhVpmalSybrYD9kUePMvtBWyPV-ln54NQ,42715
163
+ investing_algorithm_framework/infrastructure/data_providers/csv.py,sha256=Tn7w-udpePWKw5Mf6P9ZfMxpGWqFjiuqbSETRzWWrI0,20248
164
+ investing_algorithm_framework/infrastructure/data_providers/pandas.py,sha256=DFCeDBIUWuIfPqFZb1NE2JJqC4GFAuIbcllQbxyuhqY,21661
165
+ investing_algorithm_framework/infrastructure/database/__init__.py,sha256=Zf986kazO5O-NPC2nF0dmy0EAkwi93P-R_Amun-ig3w,214
166
+ investing_algorithm_framework/infrastructure/database/sql_alchemy.py,sha256=0daXErJeXh-mtvqQj6fjyp70WkramTry1qopD4YVf2c,3816
167
+ investing_algorithm_framework/infrastructure/models/__init__.py,sha256=Xtcy4dHqrItaTpSfPfD0ztz3rH56yE_viFEzrtV79H0,441
176
168
  investing_algorithm_framework/infrastructure/models/decimal_parser.py,sha256=s19k4gUh5qhZg-PcPzGFKqQ8xK4Z9OtefnTT2YgRojY,327
177
- investing_algorithm_framework/infrastructure/models/market_data_sources/__init__.py,sha256=OjyJjR5yGTOW8R0mqC0xvX3vyOvxCmQKZ1dzJCnaJo8,606
178
- investing_algorithm_framework/infrastructure/models/market_data_sources/ccxt.py,sha256=U1Oxdbd1yOj5naZGVtvmj2ch5uqQIdzXJ2pewRXfHtQ,24941
179
- investing_algorithm_framework/infrastructure/models/market_data_sources/csv.py,sha256=z2eYxphBTv31LyW2wydy6r8ezRwK1y625gVMiN728lE,8604
180
- investing_algorithm_framework/infrastructure/models/market_data_sources/pandas.py,sha256=kkoeNj2QEbmjSLpAHM6o7raK5hgroDjLIHLFI-CBO3A,10449
181
169
  investing_algorithm_framework/infrastructure/models/model_extension.py,sha256=EiSSs-Jq27gBhLnlIKvEjDoJz7iMPFxkFBg5cesU694,142
182
170
  investing_algorithm_framework/infrastructure/models/order/__init__.py,sha256=3s-yIwCU_glQ_rk7WkZE4L44WoeW0i5Ksbd_FEoWaRQ,117
183
- investing_algorithm_framework/infrastructure/models/order/order.py,sha256=oitFdfxMfR6KApfKxrzY-Eg2XY20LOCsuKOo5alk8us,4475
171
+ investing_algorithm_framework/infrastructure/models/order/order.py,sha256=xo5puh51xH3PQBioTf0OyVvVOOjSGF2d4Im3QNbQe5Y,4585
184
172
  investing_algorithm_framework/infrastructure/models/order/order_metadata.py,sha256=nr04CGukn7ZcB61yE_Vgg8faq1zh8Mwb4mhuR1Qaieo,1544
185
173
  investing_algorithm_framework/infrastructure/models/order_trade_association.py,sha256=rgnY8QiWwkRBQlz7lOwxGAv8P0UAYBYrZGN-ILsz6AE,404
186
174
  investing_algorithm_framework/infrastructure/models/portfolio/__init__.py,sha256=4CNIMzv6k_99XiFGJX-OlkwnyiiOdAMcKL0KML8Ltno,145
@@ -191,9 +179,10 @@ investing_algorithm_framework/infrastructure/models/position/position.py,sha256=
191
179
  investing_algorithm_framework/infrastructure/models/position/position_snapshot.py,sha256=F8pcpppTIH89JAPSqDlp7zCVRvElUKcH3odGELlh1w8,842
192
180
  investing_algorithm_framework/infrastructure/models/trades/__init__.py,sha256=XW_wUHejOc9saYllAWy0nrMBAXl_aGNCqTDMTSSznCQ,205
193
181
  investing_algorithm_framework/infrastructure/models/trades/trade.py,sha256=xaZ6dQCRqRrZw0JxOgDWOxa3-E-Wyr4afotBb7TG6_0,4928
194
- investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py,sha256=15gdpoHCVEq_ArU1-KbWjS8-9FWixwMIUqb_aEFJ7aM,1483
195
- investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py,sha256=m1nHQRyZpwWP00DAFc6-chaeyG9Sh4GV5pzFXJHbI4I,1504
196
- investing_algorithm_framework/infrastructure/order_executors/__init__.py,sha256=stMwMXZ0oYcMU2_gzh-Wxmi_BjO-uhL1-OlERoskXok,338
182
+ investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py,sha256=sKMSo2R4d1iU6fWrnZIa5KKnDNatd8GrXMaf60LFz5I,2468
183
+ investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py,sha256=iaZW4PSviVJw1BYPOjvbsk_U4AydNtzY_rskWzYPIlA,2211
184
+ investing_algorithm_framework/infrastructure/order_executors/__init__.py,sha256=G1F1Vf-taT6_ieKB3qXIjU2QGVg08JoBKcVMGB9ZuIM,425
185
+ investing_algorithm_framework/infrastructure/order_executors/backtest_oder_executor.py,sha256=ZuV9K77RuzYjVPUjN2uEjgp76xK443No-HpQyqmMmrA,991
197
186
  investing_algorithm_framework/infrastructure/order_executors/ccxt_order_executor.py,sha256=-4rbSvvOSnN3ICHPMzn4BbG_XJz-PKOAC0CfN8SlEzc,7042
198
187
  investing_algorithm_framework/infrastructure/portfolio_providers/__init__.py,sha256=7SaQOI54fwJ9Y8B4Jy-1OFstlb2pAfuIgX_xq0ToD8A,370
199
188
  investing_algorithm_framework/infrastructure/portfolio_providers/ccxt_portfolio_provider.py,sha256=Aeftdy-P_FsJJ8wGkJ0gvTH3rnupx9VrzNhuuwfpgbA,6484
@@ -204,49 +193,71 @@ investing_algorithm_framework/infrastructure/repositories/portfolio_repository.p
204
193
  investing_algorithm_framework/infrastructure/repositories/portfolio_snapshot_repository.py,sha256=K24hMQQpryLnnKE5YPqLBuj5cMaLdAr-O6vS6wdwECU,1967
205
194
  investing_algorithm_framework/infrastructure/repositories/position_repository.py,sha256=BQC2iBdRTiU5VmYdW9H-rZtaBVr56sxXhV43CKVk3lg,2459
206
195
  investing_algorithm_framework/infrastructure/repositories/position_snapshot_repository.py,sha256=GT1TkoHdy1L7ZNspDsMqWY8R2tjINz7XBYunuebzLAg,680
207
- investing_algorithm_framework/infrastructure/repositories/repository.py,sha256=YCerj37sOn_4qX5g0HmmQSvv4FxugE-EJ16aXTEz10o,8996
208
- investing_algorithm_framework/infrastructure/repositories/trade_repository.py,sha256=nyAmNwSZubYQptzB9U33NHw55RbcEpdSzoue10r-uBE,2692
209
- investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py,sha256=lHE5KF4D4-a_tAuvIZkjKoeAMwoJQVznU8RaPZsAUjM,660
210
- investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py,sha256=kRki1Q3Q8GNUTTs1bHIWJp5EPqxdo7D_U6SoMYDXOBw,670
211
- investing_algorithm_framework/infrastructure/services/__init__.py,sha256=wYDNh1zZpLrmk1kuN7UZLsXk0i3drLa5u68UxD9i-cE,321
196
+ investing_algorithm_framework/infrastructure/repositories/repository.py,sha256=D78YcbVmz7J-ipna3BuOHPq5taPbC1oRAMYBIoWcSAE,9564
197
+ investing_algorithm_framework/infrastructure/repositories/trade_repository.py,sha256=SxVfk8Ib-Np5cTGztwfetpw0nOmIH6evsCkJGwYSbg0,2692
198
+ investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py,sha256=1RUDLffC5oNpQYFCbOx_Fvkn3JOIYk2U9-dextA-8Do,878
199
+ investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py,sha256=JyMXsdG4A6EXACM3dfNTc6kllSjetFYMLjI9R_r2mu8,888
200
+ investing_algorithm_framework/infrastructure/services/__init__.py,sha256=zDVLnN3DTeGqJ9EgBUMWJgsMWpJe5G0BlWEDPRC8hPk,172
212
201
  investing_algorithm_framework/infrastructure/services/aws/__init__.py,sha256=kIWIu7q6lKyOa7gFIjv2HflbR_PUUgsFmnCe_SFPMlc,100
213
202
  investing_algorithm_framework/infrastructure/services/aws/state_handler.py,sha256=HgqkgX6tuq50d7gKA1csQQZtqWFjCprZU0G06FQRTVA,3738
214
203
  investing_algorithm_framework/infrastructure/services/azure/__init__.py,sha256=PWNpC9jPwc4ctukiSuNM9NDSfvGULFTH9gaTLFVyRBI,106
215
204
  investing_algorithm_framework/infrastructure/services/azure/state_handler.py,sha256=EUk4PdVl6RQ19DuWdrC4DzgOhGcL3qiZKWgWh_obT4E,5240
216
- investing_algorithm_framework/infrastructure/services/market_service/__init__.py,sha256=9FfnY6mZBqQpN0dC0PH4IpzW1D1daoGBQGOhxuqAqUA,91
217
- investing_algorithm_framework/infrastructure/services/market_service/ccxt_market_service.py,sha256=qWSnqMQUKQzPQB9ypGmzbo1BYRnwMtUmCmucZSeFfZ8,16168
218
- investing_algorithm_framework/infrastructure/services/performance_service/__init__.py,sha256=9xmu6jE4umF8MUTfCGr5ZZzDkqpKpDTLiERV1Aals3E,195
219
- investing_algorithm_framework/infrastructure/services/performance_service/backtest_performance_service.py,sha256=ZnhrkRUPKbVimBvbhFl8yBDINIEFkqSoylYHMxI1kG8,43
220
- investing_algorithm_framework/infrastructure/services/performance_service/performance_service.py,sha256=IgAmf6BAK6KTZi7cI_StHixjwcBgSap2fuibGYpHE04,11077
221
- investing_algorithm_framework/services/__init__.py,sha256=UgmMq29POHxnMc7fGQQkohZ8LAT3Dh0is3ACnXFt7_I,1394
205
+ investing_algorithm_framework/services/__init__.py,sha256=glATMnt8VhGJlDbF9A3LPMFSbRlPBwNBb4Xbg9fhOK8,5190
222
206
  investing_algorithm_framework/services/backtesting/__init__.py,sha256=sD6JMQVuUT8NRKV77VC9jyGnHcGox0W2n9eA-4ydeHY,84
223
- investing_algorithm_framework/services/backtesting/backtest_service.py,sha256=1iTEUtPKlLsnL5Etp5IAZER7txL2YBOSffwzJRKxcwk,22299
224
- investing_algorithm_framework/services/configuration_service.py,sha256=W5pHKd1czo6v2sCiYT7O97SOcXr2x7Jg1pgWG3IVuXs,2402
207
+ investing_algorithm_framework/services/backtesting/backtest_service.py,sha256=rWxOxAXhuywb0jx_j0XVChKBPU3CUV4vYF0T7oTtG2E,24841
208
+ investing_algorithm_framework/services/configuration_service.py,sha256=5HN4KaDJ2Yrl9MtkTYRpLTYhIn1qOmkSLDyWsXprJZs,2820
209
+ investing_algorithm_framework/services/data_providers/__init__.py,sha256=OHVccpIYGc-1B2AkCI_2Nhsb9KMaAUrng4DHhIbFD8Y,96
210
+ investing_algorithm_framework/services/data_providers/data_provider_service.py,sha256=7gUzwGD2E1e4IEAFRBoSnksAyMzVof6rZwDLsNm3tZE,30239
225
211
  investing_algorithm_framework/services/market_credential_service.py,sha256=syitQ61sECzK0i0Wd-Hc8xaTv4tpRYRFbCjyw9pWMeA,1197
226
- investing_algorithm_framework/services/market_data_source_service/__init__.py,sha256=pPA104gZFYbxQpIsl359WywacNOwdhSDqrVo2XXABXQ,317
227
- investing_algorithm_framework/services/market_data_source_service/backtest_market_data_source_service.py,sha256=PCQP-xcLI_sipQoc-xMdvribXeJVxpqrzTdYxeep-Bc,10297
228
- investing_algorithm_framework/services/market_data_source_service/data_provider_service.py,sha256=WoEhdQ2JSngSaJ8RTuy23_EhRmvbAiGNQrfTeGF7YA0,11634
229
- investing_algorithm_framework/services/market_data_source_service/market_data_source_service.py,sha256=By3PkigK0utbd3M8lYvqxnLAcX7ruudR3Hg6cV5YIII,14682
212
+ investing_algorithm_framework/services/metrics/__init__.py,sha256=F63CltHaI1iieNJBP7b_XPBouNrxaZmNYvPLJ1_yqBM,4409
213
+ investing_algorithm_framework/services/metrics/alpha.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ investing_algorithm_framework/services/metrics/beta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ investing_algorithm_framework/services/metrics/cagr.py,sha256=I3GVZWeC4ybfpSOFws69O3GbWeSn2p8nasDUYI6PqyI,2091
216
+ investing_algorithm_framework/services/metrics/calmar_ratio.py,sha256=clZTkG6bjZsjq3ANPwMaGkV09akDN1DMlUCfHU89c58,1402
217
+ investing_algorithm_framework/services/metrics/drawdown.py,sha256=VWkPXOm9CSdq6LHL6Pa9JnDObsu-1OOqgC4XRZqZO3Q,6193
218
+ investing_algorithm_framework/services/metrics/equity_curve.py,sha256=Z3YdqEJ7x9N-RKOC4bt-1LuiKAYTCxhuE6Fx1lJyAS0,702
219
+ investing_algorithm_framework/services/metrics/exposure.py,sha256=kQPreO5RR72DgTRdSdMPiG6onZTAWvyYTrp3hsI6vYw,6234
220
+ investing_algorithm_framework/services/metrics/generate.py,sha256=Vxi-t2cDXdZlTcmdHPQu6XDeR3GrsFXMUcZgi65kTtQ,17394
221
+ investing_algorithm_framework/services/metrics/mean_daily_return.py,sha256=_e5GCD5xppa_GrYMEeQB9or1WLkJIF-mdmDfes8CRjQ,2384
222
+ investing_algorithm_framework/services/metrics/price_efficiency.py,sha256=hpt1Nyk7s_jxFeqEVeQV9FH5N4RzJx6SP072L4z9fYw,1844
223
+ investing_algorithm_framework/services/metrics/profit_factor.py,sha256=6OMC2yx1stMrJKaVSCMWyVbVMgfurYTiue7P7QeCEHs,5178
224
+ investing_algorithm_framework/services/metrics/recovery.py,sha256=lkc0OUKDPBJjG_NeGWElPY3i3ZrAvWS8mjQgUeNvQXs,4373
225
+ investing_algorithm_framework/services/metrics/returns.py,sha256=_fi7-9te_82o3tdgsiOm6UC96_ckfPqhn20LZ9OTNWg,13329
226
+ investing_algorithm_framework/services/metrics/risk_free_rate.py,sha256=bATheWxyqSZG7-Q5Oz_iM5xXl05SOINYTt19ejJG6YM,780
227
+ investing_algorithm_framework/services/metrics/sharpe_ratio.py,sha256=XDEiTUBoK-qpoeqmbhrcy1v-AuNagWhTWx_Myn0g8-A,5497
228
+ investing_algorithm_framework/services/metrics/sortino_ratio.py,sha256=WA8uTkyk8RMG6uMplCvV8okAlKG_aeTP4ZAX2VyNkpA,2993
229
+ investing_algorithm_framework/services/metrics/standard_deviation.py,sha256=oObshTljORuE3x1cS0wej8QCqmDzAwHQgOA5u_HdfbU,4533
230
+ investing_algorithm_framework/services/metrics/trades.py,sha256=SFp3Zc71xzjux06dNUm9H352OGO2XBXk8W_WrQ8-kd4,14052
231
+ investing_algorithm_framework/services/metrics/treynor_ratio.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
+ investing_algorithm_framework/services/metrics/ulcer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
+ investing_algorithm_framework/services/metrics/value_at_risk.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
+ investing_algorithm_framework/services/metrics/volatility.py,sha256=Kv7vHfjQMGTcM4DzQlkeVs3v2JS__E5WNAFwuuDr2jE,3955
235
+ investing_algorithm_framework/services/metrics/win_rate.py,sha256=9SXI6E7JS7XQY3qVwARhr-Wti2ZKfd1n3yNXxGL1hIY,5794
230
236
  investing_algorithm_framework/services/order_service/__init__.py,sha256=B-9kb7AWnMHCYkT3C7lvUADPWC8uP8cg6ymj3Ngabf0,242
231
- investing_algorithm_framework/services/order_service/order_backtest_service.py,sha256=4kvApEPcJjfN8-8pGBGi9CNeK3Fx6A6JstSwXGbuFRU,7147
237
+ investing_algorithm_framework/services/order_service/order_backtest_service.py,sha256=20rVRGSX1IRVRrjCgnM3H7gg4MGZdQconJ9tEE_pZzg,6534
232
238
  investing_algorithm_framework/services/order_service/order_executor_lookup.py,sha256=QNZr-EiKofPGgYHHBESfxdMXGuLOAT8BlufHx92LkoM,3601
233
- investing_algorithm_framework/services/order_service/order_service.py,sha256=h7BatU5Dw2U48v5XUuMUXQ1vw1vAKisqqKgCm8mB9Dw,32125
239
+ investing_algorithm_framework/services/order_service/order_service.py,sha256=eje1BSQDjJXijbHNkDpymA8QW-UKx_8P1nmx9GXcy1I,30165
234
240
  investing_algorithm_framework/services/portfolios/__init__.py,sha256=fCBlgYbD_9S-boHPSmSNzu0ZYBHcXSZ6QGG68qkj4-k,603
235
241
  investing_algorithm_framework/services/portfolios/backtest_portfolio_service.py,sha256=xlh9xPBxYo5e7_Dlb4genkHlC0UfyvvbPubBy54Pkvo,1979
236
242
  investing_algorithm_framework/services/portfolios/portfolio_configuration_service.py,sha256=h-Jng3O8hFF4G2trXktp2CuJFHr5ZysvrSHis4vPP1U,2551
237
- investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py,sha256=Mk2KNCp1icXcXHN64jFDvdDd0-lvvql4ZK2C4WT04wU,3606
238
- investing_algorithm_framework/services/portfolios/portfolio_service.py,sha256=2kVkhqN3ESwrpmx-gamlJNPB9TLBd2If-pz2-kB148g,7043
239
- investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py,sha256=ZSasmLJVoGnDL2ap0VQG-iMPCZ2hk_29CsfBgWLnqX4,6863
240
- investing_algorithm_framework/services/portfolios/portfolio_sync_service.py,sha256=F_8BMk6AgErv5u-fAinhpxGCN2Q1EPKcWAwG2S61qTM,7519
243
+ investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py,sha256=UYKWnLdm7Fwsm1Y3ifen-6iROahofcjfQluowB2KGa4,3604
244
+ investing_algorithm_framework/services/portfolios/portfolio_service.py,sha256=sckTNcbKVFwVwE7JNYm8tptGplIGXRaeCGJn0PIyOqo,6772
245
+ investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py,sha256=2XFMgH_O0iRSjIJxsF1xjkxY_r3ikSZj9T7fVAfxjVw,5214
246
+ investing_algorithm_framework/services/portfolios/portfolio_sync_service.py,sha256=npIBdN1r5ys5xVQDadPxNXiTigvazYwjSbbpz631MqU,7405
241
247
  investing_algorithm_framework/services/positions/__init__.py,sha256=3fwOf-5x0BO3FErW76naRcpW-mESkl7WUHRfj3No-HA,177
242
248
  investing_algorithm_framework/services/positions/position_service.py,sha256=IB_Lxxq469GWcrXbSfjKCn1E8WeMRJT_XK8-41Tj9Y8,6366
243
249
  investing_algorithm_framework/services/positions/position_snapshot_service.py,sha256=QPY0xp3ky5rJgGev3PBpIalvS2xKlRLGXr-3TyA2zng,525
244
- investing_algorithm_framework/services/repository_service.py,sha256=y6ySjcw5gOF15kojz4pqr5pkt9O4aHD-vyjCJkKwTGI,1068
245
- investing_algorithm_framework/services/strategy_orchestrator_service.py,sha256=ANGY4GoreeoJY7NgpufCQ6ZxalbaG--mtkwJ2lGk_Cg,8984
246
- investing_algorithm_framework/services/trade_service/__init__.py,sha256=AcwPyJjDRdiREnl_MWMkDSc-V-ZjXtvpHD6eQT9mc1o,68
247
- investing_algorithm_framework/services/trade_service/trade_service.py,sha256=ri5L8doz004BfdWgGSh7J3Dx2wyyZJBi7hrpgdIOVNE,40748
248
- investing_algorithm_framework-6.9.1.dist-info/LICENSE,sha256=wbVEDvoZiMPHufRY3sLEffvAr7GH5hOIngHF8y4HFQg,11343
249
- investing_algorithm_framework-6.9.1.dist-info/METADATA,sha256=5oHu3s5Z8zqNYbI_EG4IC3wkqEjNTpcB8uV_4HMs5WE,45161
250
- investing_algorithm_framework-6.9.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
251
- investing_algorithm_framework-6.9.1.dist-info/entry_points.txt,sha256=jrPF0YksDs27vYzEvj3tXLe3OGWU24EJA05z5xHqmq8,91
252
- investing_algorithm_framework-6.9.1.dist-info/RECORD,,
250
+ investing_algorithm_framework/services/repository_service.py,sha256=9_KYyuRU3Mhjn-oQv1yh0b54bh4zN1upFQqpkNgP7HA,1177
251
+ investing_algorithm_framework/services/trade_order_evaluator/__init__.py,sha256=r9bvjkiVy4fLAsKg_0_SZY0w798bJTKZI5TI7f1o4IU,306
252
+ investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py,sha256=KG26UZ6oQ3HyftJg_3NxrhphmGBdomdgIO464G3XzYg,3964
253
+ investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py,sha256=1_xJy-Cd4LdHI2IMJNelc_iD8QYiUmSWWU7cTQxJgWA,1710
254
+ investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py,sha256=GDfifqRVawALnxZ8FaW2BUD3p_luOhkbs-M7lmwfmYY,2914
255
+ investing_algorithm_framework/services/trade_service/__init__.py,sha256=qD-38oHflxwEOO-hzvFrwSv-ZoH2UjOqAnUnTlSTO5w,252
256
+ investing_algorithm_framework/services/trade_service/trade_service.py,sha256=G3IWrpAe3TW2GM-bWIgGkc0vc4ZYoEvCzbE0dR2RdAE,42045
257
+ investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py,sha256=6eJfPY0PgdatTU9PIQtfO14bvXKIGE93JaGFw5YlyAk,1001
258
+ investing_algorithm_framework/services/trade_service/trade_take_profit_service.py,sha256=mKOVrhuGiAEUTafwoTMkCt1HuHd6a6E6DKGfpPtXsNM,1064
259
+ investing_algorithm_framework-7.19.15.dist-info/LICENSE,sha256=wbVEDvoZiMPHufRY3sLEffvAr7GH5hOIngHF8y4HFQg,11343
260
+ investing_algorithm_framework-7.19.15.dist-info/METADATA,sha256=YLuwZiZ1JSsfRXE0-335asmRMSVqfvptr3P08YqqXpY,20265
261
+ investing_algorithm_framework-7.19.15.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
262
+ investing_algorithm_framework-7.19.15.dist-info/entry_points.txt,sha256=jrPF0YksDs27vYzEvj3tXLe3OGWU24EJA05z5xHqmq8,91
263
+ investing_algorithm_framework-7.19.15.dist-info/RECORD,,