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.
Files changed (276) hide show
  1. investing_algorithm_framework/__init__.py +192 -16
  2. investing_algorithm_framework/analysis/__init__.py +16 -0
  3. investing_algorithm_framework/analysis/backtest_data_ranges.py +202 -0
  4. investing_algorithm_framework/analysis/data.py +170 -0
  5. investing_algorithm_framework/analysis/markdown.py +91 -0
  6. investing_algorithm_framework/analysis/ranking.py +298 -0
  7. investing_algorithm_framework/app/__init__.py +29 -4
  8. investing_algorithm_framework/app/algorithm/__init__.py +7 -0
  9. investing_algorithm_framework/app/algorithm/algorithm.py +193 -0
  10. investing_algorithm_framework/app/algorithm/algorithm_factory.py +118 -0
  11. investing_algorithm_framework/app/app.py +2220 -379
  12. investing_algorithm_framework/app/app_hook.py +28 -0
  13. investing_algorithm_framework/app/context.py +1724 -0
  14. investing_algorithm_framework/app/eventloop.py +620 -0
  15. investing_algorithm_framework/app/reporting/__init__.py +27 -0
  16. investing_algorithm_framework/app/reporting/ascii.py +921 -0
  17. investing_algorithm_framework/app/reporting/backtest_report.py +349 -0
  18. investing_algorithm_framework/app/reporting/charts/__init__.py +19 -0
  19. investing_algorithm_framework/app/reporting/charts/entry_exist_signals.py +66 -0
  20. investing_algorithm_framework/app/reporting/charts/equity_curve.py +37 -0
  21. investing_algorithm_framework/app/reporting/charts/equity_curve_drawdown.py +74 -0
  22. investing_algorithm_framework/app/reporting/charts/line_chart.py +11 -0
  23. investing_algorithm_framework/app/reporting/charts/monthly_returns_heatmap.py +70 -0
  24. investing_algorithm_framework/app/reporting/charts/ohlcv_data_completeness.py +51 -0
  25. investing_algorithm_framework/app/reporting/charts/rolling_sharp_ratio.py +79 -0
  26. investing_algorithm_framework/app/reporting/charts/yearly_returns_barchart.py +55 -0
  27. investing_algorithm_framework/app/reporting/generate.py +185 -0
  28. investing_algorithm_framework/app/reporting/tables/__init__.py +11 -0
  29. investing_algorithm_framework/app/reporting/tables/key_metrics_table.py +217 -0
  30. investing_algorithm_framework/app/reporting/tables/time_metrics_table.py +80 -0
  31. investing_algorithm_framework/app/reporting/tables/trade_metrics_table.py +147 -0
  32. investing_algorithm_framework/app/reporting/tables/trades_table.py +75 -0
  33. investing_algorithm_framework/app/reporting/tables/utils.py +29 -0
  34. investing_algorithm_framework/app/reporting/templates/report_template.html.j2 +154 -0
  35. investing_algorithm_framework/app/stateless/action_handlers/__init__.py +6 -3
  36. investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py +1 -1
  37. investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py +2 -1
  38. investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py +14 -7
  39. investing_algorithm_framework/app/strategy.py +867 -60
  40. investing_algorithm_framework/app/task.py +5 -3
  41. investing_algorithm_framework/app/web/__init__.py +2 -1
  42. investing_algorithm_framework/app/web/controllers/__init__.py +2 -2
  43. investing_algorithm_framework/app/web/controllers/orders.py +3 -2
  44. investing_algorithm_framework/app/web/controllers/positions.py +2 -2
  45. investing_algorithm_framework/app/web/create_app.py +4 -2
  46. investing_algorithm_framework/app/web/schemas/position.py +1 -0
  47. investing_algorithm_framework/cli/__init__.py +0 -0
  48. investing_algorithm_framework/cli/cli.py +231 -0
  49. investing_algorithm_framework/cli/deploy_to_aws_lambda.py +501 -0
  50. investing_algorithm_framework/cli/deploy_to_azure_function.py +718 -0
  51. investing_algorithm_framework/cli/initialize_app.py +603 -0
  52. investing_algorithm_framework/cli/templates/.gitignore.template +178 -0
  53. investing_algorithm_framework/cli/templates/app.py.template +18 -0
  54. investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template +48 -0
  55. investing_algorithm_framework/cli/templates/app_azure_function.py.template +14 -0
  56. investing_algorithm_framework/cli/templates/app_web.py.template +18 -0
  57. investing_algorithm_framework/cli/templates/aws_lambda_dockerfile.template +22 -0
  58. investing_algorithm_framework/cli/templates/aws_lambda_dockerignore.template +92 -0
  59. investing_algorithm_framework/cli/templates/aws_lambda_readme.md.template +110 -0
  60. investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template +2 -0
  61. investing_algorithm_framework/cli/templates/azure_function_function_app.py.template +65 -0
  62. investing_algorithm_framework/cli/templates/azure_function_host.json.template +15 -0
  63. investing_algorithm_framework/cli/templates/azure_function_local.settings.json.template +8 -0
  64. investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template +3 -0
  65. investing_algorithm_framework/cli/templates/data_providers.py.template +17 -0
  66. investing_algorithm_framework/cli/templates/env.example.template +2 -0
  67. investing_algorithm_framework/cli/templates/env_azure_function.example.template +4 -0
  68. investing_algorithm_framework/cli/templates/market_data_providers.py.template +9 -0
  69. investing_algorithm_framework/cli/templates/readme.md.template +135 -0
  70. investing_algorithm_framework/cli/templates/requirements.txt.template +2 -0
  71. investing_algorithm_framework/cli/templates/run_backtest.py.template +20 -0
  72. investing_algorithm_framework/cli/templates/strategy.py.template +124 -0
  73. investing_algorithm_framework/cli/validate_backtest_checkpoints.py +197 -0
  74. investing_algorithm_framework/create_app.py +40 -7
  75. investing_algorithm_framework/dependency_container.py +100 -47
  76. investing_algorithm_framework/domain/__init__.py +97 -30
  77. investing_algorithm_framework/domain/algorithm_id.py +69 -0
  78. investing_algorithm_framework/domain/backtesting/__init__.py +25 -0
  79. investing_algorithm_framework/domain/backtesting/backtest.py +548 -0
  80. investing_algorithm_framework/domain/backtesting/backtest_date_range.py +113 -0
  81. investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py +241 -0
  82. investing_algorithm_framework/domain/backtesting/backtest_metrics.py +470 -0
  83. investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py +275 -0
  84. investing_algorithm_framework/domain/backtesting/backtest_run.py +663 -0
  85. investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py +162 -0
  86. investing_algorithm_framework/domain/backtesting/backtest_utils.py +198 -0
  87. investing_algorithm_framework/domain/backtesting/combine_backtests.py +392 -0
  88. investing_algorithm_framework/domain/config.py +59 -136
  89. investing_algorithm_framework/domain/constants.py +18 -37
  90. investing_algorithm_framework/domain/data_provider.py +334 -0
  91. investing_algorithm_framework/domain/data_structures.py +42 -0
  92. investing_algorithm_framework/domain/exceptions.py +51 -1
  93. investing_algorithm_framework/domain/models/__init__.py +26 -19
  94. investing_algorithm_framework/domain/models/app_mode.py +34 -0
  95. investing_algorithm_framework/domain/models/data/__init__.py +7 -0
  96. investing_algorithm_framework/domain/models/data/data_source.py +222 -0
  97. investing_algorithm_framework/domain/models/data/data_type.py +46 -0
  98. investing_algorithm_framework/domain/models/event.py +35 -0
  99. investing_algorithm_framework/domain/models/market/__init__.py +5 -0
  100. investing_algorithm_framework/domain/models/market/market_credential.py +88 -0
  101. investing_algorithm_framework/domain/models/order/__init__.py +3 -4
  102. investing_algorithm_framework/domain/models/order/order.py +198 -65
  103. investing_algorithm_framework/domain/models/order/order_status.py +2 -2
  104. investing_algorithm_framework/domain/models/order/order_type.py +1 -3
  105. investing_algorithm_framework/domain/models/portfolio/__init__.py +6 -2
  106. investing_algorithm_framework/domain/models/portfolio/portfolio.py +98 -3
  107. investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py +37 -43
  108. investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py +108 -11
  109. investing_algorithm_framework/domain/models/position/__init__.py +2 -1
  110. investing_algorithm_framework/domain/models/position/position.py +20 -0
  111. investing_algorithm_framework/domain/models/position/position_size.py +41 -0
  112. investing_algorithm_framework/domain/models/position/position_snapshot.py +0 -2
  113. investing_algorithm_framework/domain/models/risk_rules/__init__.py +7 -0
  114. investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py +51 -0
  115. investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py +55 -0
  116. investing_algorithm_framework/domain/models/snapshot_interval.py +45 -0
  117. investing_algorithm_framework/domain/models/strategy_profile.py +19 -141
  118. investing_algorithm_framework/domain/models/time_frame.py +94 -98
  119. investing_algorithm_framework/domain/models/time_interval.py +33 -0
  120. investing_algorithm_framework/domain/models/time_unit.py +66 -2
  121. investing_algorithm_framework/domain/models/tracing/__init__.py +0 -0
  122. investing_algorithm_framework/domain/models/tracing/trace.py +23 -0
  123. investing_algorithm_framework/domain/models/trade/__init__.py +11 -0
  124. investing_algorithm_framework/domain/models/trade/trade.py +389 -0
  125. investing_algorithm_framework/domain/models/trade/trade_status.py +40 -0
  126. investing_algorithm_framework/domain/models/trade/trade_stop_loss.py +332 -0
  127. investing_algorithm_framework/domain/models/trade/trade_take_profit.py +365 -0
  128. investing_algorithm_framework/domain/order_executor.py +112 -0
  129. investing_algorithm_framework/domain/portfolio_provider.py +118 -0
  130. investing_algorithm_framework/domain/services/__init__.py +11 -0
  131. investing_algorithm_framework/domain/services/market_credential_service.py +37 -0
  132. investing_algorithm_framework/domain/services/portfolios/__init__.py +5 -0
  133. investing_algorithm_framework/domain/services/portfolios/portfolio_sync_service.py +9 -0
  134. investing_algorithm_framework/domain/services/rounding_service.py +27 -0
  135. investing_algorithm_framework/domain/services/state_handler.py +38 -0
  136. investing_algorithm_framework/domain/strategy.py +1 -29
  137. investing_algorithm_framework/domain/utils/__init__.py +15 -5
  138. investing_algorithm_framework/domain/utils/csv.py +22 -0
  139. investing_algorithm_framework/domain/utils/custom_tqdm.py +22 -0
  140. investing_algorithm_framework/domain/utils/dates.py +57 -0
  141. investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py +19 -0
  142. investing_algorithm_framework/domain/utils/polars.py +53 -0
  143. investing_algorithm_framework/domain/utils/random.py +29 -0
  144. investing_algorithm_framework/download_data.py +244 -0
  145. investing_algorithm_framework/infrastructure/__init__.py +37 -11
  146. investing_algorithm_framework/infrastructure/data_providers/__init__.py +36 -0
  147. investing_algorithm_framework/infrastructure/data_providers/ccxt.py +1152 -0
  148. investing_algorithm_framework/infrastructure/data_providers/csv.py +568 -0
  149. investing_algorithm_framework/infrastructure/data_providers/pandas.py +599 -0
  150. investing_algorithm_framework/infrastructure/database/__init__.py +6 -2
  151. investing_algorithm_framework/infrastructure/database/sql_alchemy.py +86 -12
  152. investing_algorithm_framework/infrastructure/models/__init__.py +7 -3
  153. investing_algorithm_framework/infrastructure/models/order/__init__.py +2 -2
  154. investing_algorithm_framework/infrastructure/models/order/order.py +53 -53
  155. investing_algorithm_framework/infrastructure/models/order/order_metadata.py +44 -0
  156. investing_algorithm_framework/infrastructure/models/order_trade_association.py +10 -0
  157. investing_algorithm_framework/infrastructure/models/portfolio/__init__.py +1 -1
  158. investing_algorithm_framework/infrastructure/models/portfolio/portfolio_snapshot.py +8 -2
  159. investing_algorithm_framework/infrastructure/models/portfolio/{portfolio.py → sql_portfolio.py} +17 -6
  160. investing_algorithm_framework/infrastructure/models/position/position_snapshot.py +3 -1
  161. investing_algorithm_framework/infrastructure/models/trades/__init__.py +9 -0
  162. investing_algorithm_framework/infrastructure/models/trades/trade.py +130 -0
  163. investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py +59 -0
  164. investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py +55 -0
  165. investing_algorithm_framework/infrastructure/order_executors/__init__.py +21 -0
  166. investing_algorithm_framework/infrastructure/order_executors/backtest_oder_executor.py +28 -0
  167. investing_algorithm_framework/infrastructure/order_executors/ccxt_order_executor.py +200 -0
  168. investing_algorithm_framework/infrastructure/portfolio_providers/__init__.py +19 -0
  169. investing_algorithm_framework/infrastructure/portfolio_providers/ccxt_portfolio_provider.py +199 -0
  170. investing_algorithm_framework/infrastructure/repositories/__init__.py +10 -4
  171. investing_algorithm_framework/infrastructure/repositories/order_metadata_repository.py +17 -0
  172. investing_algorithm_framework/infrastructure/repositories/order_repository.py +16 -5
  173. investing_algorithm_framework/infrastructure/repositories/portfolio_repository.py +2 -2
  174. investing_algorithm_framework/infrastructure/repositories/position_repository.py +11 -0
  175. investing_algorithm_framework/infrastructure/repositories/repository.py +84 -30
  176. investing_algorithm_framework/infrastructure/repositories/trade_repository.py +71 -0
  177. investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py +29 -0
  178. investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py +29 -0
  179. investing_algorithm_framework/infrastructure/services/__init__.py +9 -4
  180. investing_algorithm_framework/infrastructure/services/aws/__init__.py +6 -0
  181. investing_algorithm_framework/infrastructure/services/aws/state_handler.py +193 -0
  182. investing_algorithm_framework/infrastructure/services/azure/__init__.py +5 -0
  183. investing_algorithm_framework/infrastructure/services/azure/state_handler.py +158 -0
  184. investing_algorithm_framework/infrastructure/services/backtesting/__init__.py +9 -0
  185. investing_algorithm_framework/infrastructure/services/backtesting/backtest_service.py +2596 -0
  186. investing_algorithm_framework/infrastructure/services/backtesting/event_backtest_service.py +285 -0
  187. investing_algorithm_framework/infrastructure/services/backtesting/vector_backtest_service.py +468 -0
  188. investing_algorithm_framework/services/__init__.py +123 -15
  189. investing_algorithm_framework/services/configuration_service.py +77 -11
  190. investing_algorithm_framework/services/data_providers/__init__.py +5 -0
  191. investing_algorithm_framework/services/data_providers/data_provider_service.py +1058 -0
  192. investing_algorithm_framework/services/market_credential_service.py +40 -0
  193. investing_algorithm_framework/services/metrics/__init__.py +119 -0
  194. investing_algorithm_framework/services/metrics/alpha.py +0 -0
  195. investing_algorithm_framework/services/metrics/beta.py +0 -0
  196. investing_algorithm_framework/services/metrics/cagr.py +60 -0
  197. investing_algorithm_framework/services/metrics/calmar_ratio.py +40 -0
  198. investing_algorithm_framework/services/metrics/drawdown.py +218 -0
  199. investing_algorithm_framework/services/metrics/equity_curve.py +24 -0
  200. investing_algorithm_framework/services/metrics/exposure.py +210 -0
  201. investing_algorithm_framework/services/metrics/generate.py +358 -0
  202. investing_algorithm_framework/services/metrics/mean_daily_return.py +84 -0
  203. investing_algorithm_framework/services/metrics/price_efficiency.py +57 -0
  204. investing_algorithm_framework/services/metrics/profit_factor.py +165 -0
  205. investing_algorithm_framework/services/metrics/recovery.py +113 -0
  206. investing_algorithm_framework/services/metrics/returns.py +452 -0
  207. investing_algorithm_framework/services/metrics/risk_free_rate.py +28 -0
  208. investing_algorithm_framework/services/metrics/sharpe_ratio.py +137 -0
  209. investing_algorithm_framework/services/metrics/sortino_ratio.py +74 -0
  210. investing_algorithm_framework/services/metrics/standard_deviation.py +156 -0
  211. investing_algorithm_framework/services/metrics/trades.py +473 -0
  212. investing_algorithm_framework/services/metrics/treynor_ratio.py +0 -0
  213. investing_algorithm_framework/services/metrics/ulcer.py +0 -0
  214. investing_algorithm_framework/services/metrics/value_at_risk.py +0 -0
  215. investing_algorithm_framework/services/metrics/volatility.py +118 -0
  216. investing_algorithm_framework/services/metrics/win_rate.py +177 -0
  217. investing_algorithm_framework/services/order_service/__init__.py +9 -0
  218. investing_algorithm_framework/services/order_service/order_backtest_service.py +178 -0
  219. investing_algorithm_framework/services/order_service/order_executor_lookup.py +110 -0
  220. investing_algorithm_framework/services/order_service/order_service.py +826 -0
  221. investing_algorithm_framework/services/portfolios/__init__.py +16 -0
  222. investing_algorithm_framework/services/portfolios/backtest_portfolio_service.py +54 -0
  223. investing_algorithm_framework/services/{portfolio_configuration_service.py → portfolios/portfolio_configuration_service.py} +27 -12
  224. investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py +106 -0
  225. investing_algorithm_framework/services/portfolios/portfolio_service.py +188 -0
  226. investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py +136 -0
  227. investing_algorithm_framework/services/portfolios/portfolio_sync_service.py +182 -0
  228. investing_algorithm_framework/services/positions/__init__.py +7 -0
  229. investing_algorithm_framework/services/positions/position_service.py +210 -0
  230. investing_algorithm_framework/services/repository_service.py +8 -2
  231. investing_algorithm_framework/services/trade_order_evaluator/__init__.py +9 -0
  232. investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py +117 -0
  233. investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py +51 -0
  234. investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py +80 -0
  235. investing_algorithm_framework/services/trade_service/__init__.py +9 -0
  236. investing_algorithm_framework/services/trade_service/trade_service.py +1099 -0
  237. investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py +39 -0
  238. investing_algorithm_framework/services/trade_service/trade_take_profit_service.py +41 -0
  239. investing_algorithm_framework-7.25.6.dist-info/METADATA +535 -0
  240. investing_algorithm_framework-7.25.6.dist-info/RECORD +268 -0
  241. {investing_algorithm_framework-1.5.dist-info → investing_algorithm_framework-7.25.6.dist-info}/WHEEL +1 -2
  242. investing_algorithm_framework-7.25.6.dist-info/entry_points.txt +3 -0
  243. investing_algorithm_framework/app/algorithm.py +0 -630
  244. investing_algorithm_framework/domain/models/backtest_profile.py +0 -414
  245. investing_algorithm_framework/domain/models/market_data/__init__.py +0 -11
  246. investing_algorithm_framework/domain/models/market_data/asset_price.py +0 -50
  247. investing_algorithm_framework/domain/models/market_data/ohlcv.py +0 -105
  248. investing_algorithm_framework/domain/models/market_data/order_book.py +0 -63
  249. investing_algorithm_framework/domain/models/market_data/ticker.py +0 -92
  250. investing_algorithm_framework/domain/models/order/order_fee.py +0 -45
  251. investing_algorithm_framework/domain/models/trade.py +0 -78
  252. investing_algorithm_framework/domain/models/trading_data_types.py +0 -47
  253. investing_algorithm_framework/domain/models/trading_time_frame.py +0 -223
  254. investing_algorithm_framework/domain/singleton.py +0 -9
  255. investing_algorithm_framework/domain/utils/backtesting.py +0 -82
  256. investing_algorithm_framework/infrastructure/models/order/order_fee.py +0 -21
  257. investing_algorithm_framework/infrastructure/repositories/order_fee_repository.py +0 -15
  258. investing_algorithm_framework/infrastructure/services/market_backtest_service.py +0 -360
  259. investing_algorithm_framework/infrastructure/services/market_service.py +0 -410
  260. investing_algorithm_framework/infrastructure/services/performance_service.py +0 -192
  261. investing_algorithm_framework/services/backtest_service.py +0 -268
  262. investing_algorithm_framework/services/market_data_service.py +0 -77
  263. investing_algorithm_framework/services/order_backtest_service.py +0 -122
  264. investing_algorithm_framework/services/order_service.py +0 -752
  265. investing_algorithm_framework/services/portfolio_service.py +0 -164
  266. investing_algorithm_framework/services/portfolio_snapshot_service.py +0 -68
  267. investing_algorithm_framework/services/position_cost_service.py +0 -5
  268. investing_algorithm_framework/services/position_service.py +0 -63
  269. investing_algorithm_framework/services/strategy_orchestrator_service.py +0 -225
  270. investing_algorithm_framework-1.5.dist-info/AUTHORS.md +0 -8
  271. investing_algorithm_framework-1.5.dist-info/METADATA +0 -230
  272. investing_algorithm_framework-1.5.dist-info/RECORD +0 -119
  273. investing_algorithm_framework-1.5.dist-info/top_level.txt +0 -1
  274. /investing_algorithm_framework/{infrastructure/services/performance_backtest_service.py → app/reporting/tables/stop_loss_table.py} +0 -0
  275. /investing_algorithm_framework/services/{position_snapshot_service.py → positions/position_snapshot_service.py} +0 -0
  276. {investing_algorithm_framework-1.5.dist-info → investing_algorithm_framework-7.25.6.dist-info}/LICENSE +0 -0
@@ -0,0 +1,268 @@
1
+ investing_algorithm_framework/__init__.py,sha256=65SPa9WFCJfKgJrSzC6GM2xGqufO7Q8UuQMP82gX8mg,7734
2
+ investing_algorithm_framework/analysis/__init__.py,sha256=lY7Q1Jq90rsUOB0k3qNLpvuCQBrO9j5Mei2bBf9pjKA,528
3
+ investing_algorithm_framework/analysis/backtest_data_ranges.py,sha256=9br4kYud7874T6M6TP6tFEDum7B7NYzUUN_YaNURbW0,6752
4
+ investing_algorithm_framework/analysis/data.py,sha256=ROaMkGQmDdIQvIjyDLmlFR1Jh_kQaQSzsNmRxuEBnbg,6058
5
+ investing_algorithm_framework/analysis/markdown.py,sha256=7AGiQsTBf_H0fEdPwx9_Ayi50StxrUU80tdnLtF2CN8,2688
6
+ investing_algorithm_framework/analysis/ranking.py,sha256=uIoB9FtpmX7uuvjIC9URdPl4q6oxn8XSLn27yHv8mb0,10983
7
+ investing_algorithm_framework/app/__init__.py,sha256=kTk7Uh-14OLWmg1hf94ug4KQZ88ts32gUI6KnnrRf4M,1377
8
+ investing_algorithm_framework/app/algorithm/__init__.py,sha256=-a9o9bTfAhW9qSW-bKvlLQuMCf-YXxIztudo2TxMjCI,136
9
+ investing_algorithm_framework/app/algorithm/algorithm.py,sha256=sprNwh8qRS_TMRDKHjj57hISdgzDFvyv7XkB78cbCro,5658
10
+ investing_algorithm_framework/app/algorithm/algorithm_factory.py,sha256=ZBzBssT3V0lvDK6kcxGLgYebRFQe29wPzFN8COK1_sQ,4217
11
+ investing_algorithm_framework/app/app.py,sha256=I8KokBvtob-df3pR8T8KpFMPAeexgaXBU_Y8YAluDHY,97520
12
+ investing_algorithm_framework/app/app_hook.py,sha256=cDiY4x2n06tljpx-fcbIM1oPnjTnEthibvqxUvfEppo,834
13
+ investing_algorithm_framework/app/context.py,sha256=KuQRZboKWBWUtYJB71v9K78wyaxiLOU87r6jYekoLbE,60799
14
+ investing_algorithm_framework/app/eventloop.py,sha256=1p5b-lw3dJfNUgmdESGh6LQ2uJxDE2SLmxQVzYBY1e0,22766
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
23
+ investing_algorithm_framework/app/reporting/charts/monthly_returns_heatmap.py,sha256=erSkbMH1LpVbCfrAUFlzieboZ1SL4j3fvso5EyD80E8,2215
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
26
+ investing_algorithm_framework/app/reporting/charts/yearly_returns_barchart.py,sha256=YECtrEUGGgmmUWk_PKI1HGZv9ZOGPLW-URgBS-9Bhco,1630
27
+ investing_algorithm_framework/app/reporting/generate.py,sha256=jfN3GEd43GpYWstJOOBu-df2v32CJ9lYkP3xgkfoTdc,6405
28
+ investing_algorithm_framework/app/reporting/tables/__init__.py,sha256=ptilDH_mFbnfgOeSAtPEA2BMQqWxjnUen4ITCu5IieU,400
29
+ investing_algorithm_framework/app/reporting/tables/key_metrics_table.py,sha256=TGQNIOp5u3m6Bzpy5fvtu9OC3A3rQTi2S5r0YMSTm-o,10978
30
+ investing_algorithm_framework/app/reporting/tables/stop_loss_table.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
36
+ investing_algorithm_framework/app/stateless/__init__.py,sha256=VuEfb7QqDsfpFCnZdpvw8vvpNMRqOb-3w0yOpHiYlWg,1092
37
+ investing_algorithm_framework/app/stateless/action_handlers/__init__.py,sha256=4D0olzRDBHteCILwevXdhb-9qoaJUvr7zBZvIbfzteA,2424
38
+ investing_algorithm_framework/app/stateless/action_handlers/action_handler_strategy.py,sha256=lXxouu8j7Uc0W-tN0V_10SMvRCDFhVc5-fFY2UoK3m4,183
39
+ investing_algorithm_framework/app/stateless/action_handlers/check_online_handler.py,sha256=Nb0ZQJlbK24wzOcCQwLO8U7rGSRb1pTp1YEzuSyrBOg,481
40
+ investing_algorithm_framework/app/stateless/action_handlers/run_strategy_handler.py,sha256=zu30hGPD0YkRnRXWRzR4X-v-3saCJa9p3mJZUUOM_WY,1243
41
+ investing_algorithm_framework/app/stateless/exception_handler.py,sha256=EoujrXd_TJ0cXLsEukRgdT7bw_kAH6OiCpZGcV8bVhc,1085
42
+ investing_algorithm_framework/app/strategy.py,sha256=342fvay3nFYakAR_A2Tg_ofRUupbVw2PzBoGGWb7eqU,33776
43
+ investing_algorithm_framework/app/task.py,sha256=80t7t_HGTEqs9gI4_GgFpD4nwlLbC5VAyz5Tt_bJYoQ,1000
44
+ investing_algorithm_framework/app/web/__init__.py,sha256=NdQpQHJzz_qCq3tGbXKCeZuZf80XyJJpYRdJG-mhlMk,190
45
+ investing_algorithm_framework/app/web/controllers/__init__.py,sha256=qTw0_R49TYrSsmGGodeFd_f9EaJZn0cOjK6hIiwKo9g,587
46
+ investing_algorithm_framework/app/web/controllers/orders.py,sha256=aCqS58I7ClNHIapimYFJYzQh7JGM_SW0nTMKB1V6-0A,694
47
+ investing_algorithm_framework/app/web/controllers/portfolio.py,sha256=oS9NTgZR_JmEcxfcRJ4EmKe85xcx9ucdzl8tDM5UmRs,727
48
+ investing_algorithm_framework/app/web/controllers/positions.py,sha256=4NgJFPQqcootqMzJT_jUaicPp9DRGcc_TFU9V8iGxBQ,617
49
+ investing_algorithm_framework/app/web/create_app.py,sha256=hq28RLnXkUd-RnLlbtO71IkfMw3tET4bzjnvsPXcxqY,588
50
+ investing_algorithm_framework/app/web/error_handler.py,sha256=cDvJn8r9ShIEqnAsaPBVRymow_sZ3Xcpc3DUXtTbd34,2020
51
+ investing_algorithm_framework/app/web/responses.py,sha256=xbipQc0vcXHK6ouinsPdDHMHTxeLPebg-8uyeCG7zxQ,585
52
+ investing_algorithm_framework/app/web/run_strategies.py,sha256=H3EHtFORA9MX3CYc7F0csCY2dTEt48FCRP5Wp-1V28U,158
53
+ investing_algorithm_framework/app/web/schemas/__init__.py,sha256=pSkgN5AGiW48BD0vaQDdQQ6N90ryxGIimgEYJ-elSGY,361
54
+ investing_algorithm_framework/app/web/schemas/order.py,sha256=MwDJ-5vWwBEr21JqL-WuZfttAhyFP7_8qp5QMYiCyco,442
55
+ investing_algorithm_framework/app/web/schemas/portfolio.py,sha256=COXC_kpBUgPOBWy5ENtcfEs5U7lVrN8zxQYBqH9trfo,743
56
+ investing_algorithm_framework/app/web/schemas/position.py,sha256=vLAFaXlPtlhmMaB_Jai9xRCvCM_5lLuiaDQ_2Z39TfE,438
57
+ investing_algorithm_framework/app/web/setup_cors.py,sha256=ASCon0U0d7cedI-s37fdztDJozVvbNiYWYDLTHDydv8,80
58
+ investing_algorithm_framework/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ investing_algorithm_framework/cli/cli.py,sha256=4rSUnLiUBGPy3aw8KQfv-UF4ZjhnNWI-mdgyNFi3GM4,6595
60
+ investing_algorithm_framework/cli/deploy_to_aws_lambda.py,sha256=FIQwdQWzzaEw_2raKnlvd0QcsyRe4LPjC4mjWq8Dh-8,15853
61
+ investing_algorithm_framework/cli/deploy_to_azure_function.py,sha256=-rfyNoxV5i0wVQH3Lat5XTDpbFj2gL4T-CzwUjzx4Z4,22903
62
+ investing_algorithm_framework/cli/initialize_app.py,sha256=DMI-48LOm3CYD-sIV4k2k1XrzbdNy0cTbRAq8Qj4AKM,17651
63
+ investing_algorithm_framework/cli/templates/.gitignore.template,sha256=rDgjdjPUzcdKRcOfo5ApKKJiP3L8BCarGGjpe3CAOXk,3553
64
+ investing_algorithm_framework/cli/templates/app.py.template,sha256=0ctfPAUdJPZW4yqljBfD8aPJJorKPU4YBpGK_VsZYeo,540
65
+ investing_algorithm_framework/cli/templates/app_aws_lambda_function.py.template,sha256=tORCgj773R2YCGBaZ8szQfgPKNvVquxv5QwUgC5isKs,1687
66
+ investing_algorithm_framework/cli/templates/app_azure_function.py.template,sha256=TADjSXMZpcqu-p-rpREwiiQNBbEk5z-HV5oNjAePqMQ,521
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
70
+ investing_algorithm_framework/cli/templates/aws_lambda_readme.md.template,sha256=zFRkI97ebsWOaQLmmK2Zqn88GymDDnwqr2JihSEbggU,4161
71
+ investing_algorithm_framework/cli/templates/aws_lambda_requirements.txt.template,sha256=5D1Ftx6yAKU0lLTjt5oaxucU22j1R4a4oKhk1ML_S80,56
72
+ investing_algorithm_framework/cli/templates/azure_function_function_app.py.template,sha256=9RA1nKeWmt8dbKvR2gUgpoqKve6wX61yPjzZN33TP-s,2053
73
+ investing_algorithm_framework/cli/templates/azure_function_host.json.template,sha256=3Sr5FqJEHZ6X8bSyP_a5QlOnRSYfMPI6BABTQw54ql8,288
74
+ investing_algorithm_framework/cli/templates/azure_function_local.settings.json.template,sha256=VBplTqQ4xoiw_jDmLzxs9RY94Xg67BBRTlGiYn80YsA,173
75
+ investing_algorithm_framework/cli/templates/azure_function_requirements.txt.template,sha256=oCbPbfWJGQzSUoTWreDEN0kFcIZNMeSRaVc1wQP5XQ0,80
76
+ investing_algorithm_framework/cli/templates/data_providers.py.template,sha256=1_9P16ZQZJ4x1_8iMwogXd-q7mb-JAnIh9lHM8RfLtc,426
77
+ investing_algorithm_framework/cli/templates/env.example.template,sha256=TKSglupUUG5E4TmVUGDMPi8iWhrbV7DUWo0MFDMFag8,65
78
+ investing_algorithm_framework/cli/templates/env_azure_function.example.template,sha256=iLJ6Gkg97-cdDNVJccSTUtCqP7d0gDPobpXp42xbmPU,219
79
+ investing_algorithm_framework/cli/templates/market_data_providers.py.template,sha256=ahKd6yV3Rj4SCTy_8ZixnN0twv297f-Jy9F4fWZdO_E,234
80
+ investing_algorithm_framework/cli/templates/readme.md.template,sha256=0qJLEGvzu2sJUyojK9x0QiukfYHXlQVR-2W6QrzYSjo,5729
81
+ investing_algorithm_framework/cli/templates/requirements.txt.template,sha256=RegFgiPIfC-tCj6rTNXhZR3DPKHY-kPuPHDGAeCWcmo,57
82
+ investing_algorithm_framework/cli/templates/run_backtest.py.template,sha256=mHwKLxMp-rhj_NLUgVzxYRt0zaelvNR3NqJPLdDFQp8,591
83
+ investing_algorithm_framework/cli/templates/strategy.py.template,sha256=Ox8IZ6XlPDCCgq9T8KO3NazR2UXJs3FgkjbgfPqoad8,4603
84
+ investing_algorithm_framework/cli/validate_backtest_checkpoints.py,sha256=YFsXmECx_jj5tTxOeOA8l7erOAnTBKSd9hzwFgaCrZk,6255
85
+ investing_algorithm_framework/create_app.py,sha256=HN_45Bza5Ro3o-v364m2mjSVjjZnyESOGHn3dcPDfQ4,1372
86
+ investing_algorithm_framework/dependency_container.py,sha256=BhLuScYapHoCmI73gUrMPNJUUdQ3T8WJoiRSt3nYSjo,7133
87
+ investing_algorithm_framework/domain/__init__.py,sha256=NCxy8NaXtQ_Vv5VAszaqRUtmqNInFqsJxASfdqv3gxk,5099
88
+ investing_algorithm_framework/domain/algorithm_id.py,sha256=S8wBJzjhLAOUiYQzcHU4F4ElwdN9Xcjp2L8mPHrMGmE,2059
89
+ investing_algorithm_framework/domain/backtesting/__init__.py,sha256=Pl8ThjzjmE2Gvx6ZndtWkad3gEu0Xuy3rrWdAqMW_sU,865
90
+ investing_algorithm_framework/domain/backtesting/backtest.py,sha256=5Rp_2Bc4U8kMKIYjsiiiCSVleq9zfcNql7rFbA3bBOQ,19582
91
+ investing_algorithm_framework/domain/backtesting/backtest_date_range.py,sha256=ZzhcWJRBp4yMKHRJtJ16RGStvQO1tpw8-SMx4Wpuabs,3776
92
+ investing_algorithm_framework/domain/backtesting/backtest_evaluation_focuss.py,sha256=qrODx_Xv5jjkWJXbfhX2-VvVs_0CsLLXJ9WjUuJnkm4,7529
93
+ investing_algorithm_framework/domain/backtesting/backtest_metrics.py,sha256=hhBS0dRJ1uR96RecclcZsYu4cg0foLgGh_GGddxrhE4,20842
94
+ investing_algorithm_framework/domain/backtesting/backtest_permutation_test.py,sha256=1bIZwdG6Sf0D0FliwS0QGY3gOunZ40F9E2nHnkZyIhY,9059
95
+ investing_algorithm_framework/domain/backtesting/backtest_run.py,sha256=ojRpqflMPJO2qQ_viCw2rBgfIlF1llPw23XFS1e-GEM,23769
96
+ investing_algorithm_framework/domain/backtesting/backtest_summary_metrics.py,sha256=Dt3gFz-MNmxtOhYxVPN8lI_7rXtE9PK10lULDFuCHlU,7131
97
+ investing_algorithm_framework/domain/backtesting/backtest_utils.py,sha256=YNb4TkCGj3xTJjAaWkmbLaF52TGPlyNyq6-csUnCgys,7044
98
+ investing_algorithm_framework/domain/backtesting/combine_backtests.py,sha256=uYlhAcK1Lxj_NbCfF8gVVLaaXsd5Q08IVsq7NGpU2V0,14195
99
+ investing_algorithm_framework/domain/config.py,sha256=_VkaJvrdqIKAT3_l-Y8XTEKNEaw5uVIwQ7vxomuCpUw,3003
100
+ investing_algorithm_framework/domain/constants.py,sha256=BWNzhfv4mme69y1VmhpINA8dHpXYc03LAmi9jGuXEYE,1702
101
+ investing_algorithm_framework/domain/data_provider.py,sha256=oMGxj3dj6l8DiXmlMqohMla2yLHQM2pHGIBWU1Ele9Q,12691
102
+ investing_algorithm_framework/domain/data_structures.py,sha256=ePtdGhVaB16QLUvKQn5MiWM_TBOcBBTj5M0llW8tGEE,989
103
+ investing_algorithm_framework/domain/decimal_parsing.py,sha256=NtMNkxZyWrFHxGKd6gLIDmWF88BYcTl8tYaAaKO1tlg,823
104
+ investing_algorithm_framework/domain/exceptions.py,sha256=_KiUaD9BIITFMev0GRGF6632uAdBL_37c4lKAqGMhoA,3139
105
+ investing_algorithm_framework/domain/models/__init__.py,sha256=47wRhb7GnDc83x-DWuyk3AwGkU2WmMB6n5mtytikXDs,1203
106
+ investing_algorithm_framework/domain/models/app_mode.py,sha256=V1p9QMSNLlz6KjPib8d1J2EaSZh7jmXjZ1V2DFOrIaU,812
107
+ investing_algorithm_framework/domain/models/base_model.py,sha256=1_DMaDR13gc6l5yWpMgKaAK7OJstc4lmvZV5DhwYM6o,659
108
+ investing_algorithm_framework/domain/models/data/__init__.py,sha256=C6lM_DzDpuI_ZtKfCUYrYs5aNUH5YLLkbxVTZJMEGvs,117
109
+ investing_algorithm_framework/domain/models/data/data_source.py,sha256=lHMk1pmyMc1TeJZyhGDDGxq2Zz_V6ykQSZVLCYrLZsI,7683
110
+ investing_algorithm_framework/domain/models/data/data_type.py,sha256=s6Y5VXam7eUyIR7GCWiwd44kwBm27TmXrdhBIwmeAAo,996
111
+ investing_algorithm_framework/domain/models/event.py,sha256=57a0kLrOKYYTvQMXRqkd5wTcB2S0NlO7fjaVKoNlk0o,876
112
+ investing_algorithm_framework/domain/models/market/__init__.py,sha256=FUZOmpJgtCn7IM-5Kn464kY-_JLJQGCtwv5HLjlOrvk,87
113
+ investing_algorithm_framework/domain/models/market/market_credential.py,sha256=NlBbNVXriBtoSBxluNbwS_llojASl6KA4mQjY2kLgo8,2535
114
+ investing_algorithm_framework/domain/models/order/__init__.py,sha256=ELj0kT4YAhBOECQJBMTZzQ80yatrbbPf_A5iNAMN4X8,193
115
+ investing_algorithm_framework/domain/models/order/order.py,sha256=MLZh4avo_xLqqbxPvQAsBnvUfkx9FbAsHPs42lG51pg,11820
116
+ investing_algorithm_framework/domain/models/order/order_side.py,sha256=lMSTM8rb_Q3qgApryI0RXKiAAeGKDDlyu3q9bbuAQ-w,814
117
+ investing_algorithm_framework/domain/models/order/order_status.py,sha256=DjAmVZy7npXr7P77iILH3INGrRdt_QXzKLrpqI1DSqY,956
118
+ investing_algorithm_framework/domain/models/order/order_type.py,sha256=d0TkR5hjZEIT2ZTYHj8yjZS-zV9OP_iFjw2e0etyDgg,699
119
+ investing_algorithm_framework/domain/models/portfolio/__init__.py,sha256=gMMZG6Owvbsq7jL9PhhRbqV8tM9oebGUY8Yc6zedHj4,230
120
+ investing_algorithm_framework/domain/models/portfolio/portfolio.py,sha256=xUUk9mEwuJLhDPpA6nVmY6AZtFjA1bHrye0mTbAmgUs,5503
121
+ investing_algorithm_framework/domain/models/portfolio/portfolio_configuration.py,sha256=8KrR-lad1LA-s5loTetAfL1AYoaU-usCpL0ilKEMNEY,2685
122
+ investing_algorithm_framework/domain/models/portfolio/portfolio_snapshot.py,sha256=YQnTwrjF8dnF4tkpL-XTid_TvXedN3RNIqBcaLmJTWY,6895
123
+ investing_algorithm_framework/domain/models/position/__init__.py,sha256=cdM5nkyAsNbL860Dj8oYG4onPHXA0507xoNfEzGvdUw,179
124
+ investing_algorithm_framework/domain/models/position/position.py,sha256=MSE1hHowJEUF9ljjSeUnvMLU0eLy1gdL6P7cwExzwZM,1575
125
+ investing_algorithm_framework/domain/models/position/position_size.py,sha256=J1YvTOm-0gPpGCoICqY7tvaCdm5l7vplnxNwf3J0eGg,1349
126
+ investing_algorithm_framework/domain/models/position/position_snapshot.py,sha256=BpMhUTn--oUVXQHi62uOb4Ac7yuBwHW3iUCFpBPOtW0,1131
127
+ investing_algorithm_framework/domain/models/risk_rules/__init__.py,sha256=Gp_2sKiwcy5tUD09fX4hBL8lDsx8zpgoEvhl1aEgwLg,143
128
+ investing_algorithm_framework/domain/models/risk_rules/stop_loss_rule.py,sha256=BHn5vTfD9UbPAN9c8ZA7OK7hrSAdz9nzYALteiZHJ5s,2151
129
+ investing_algorithm_framework/domain/models/risk_rules/take_profit_rule.py,sha256=SZe8PwKom0KqIGmnG24tJnlRluOXaH5QEn62oKDrLQY,2252
130
+ investing_algorithm_framework/domain/models/snapshot_interval.py,sha256=lfdBG2fzWj4fKkDFNhGbk21WlMM7t44n4NKM5Vh5toc,1051
131
+ investing_algorithm_framework/domain/models/strategy_profile.py,sha256=d2Sa47NH8gxAObkMJ-Qo4utmzAqIznpaTf7jCPxTbYs,933
132
+ investing_algorithm_framework/domain/models/time_frame.py,sha256=SzQs_lUFYSiuhJvU-IAZP67hz5NdCLHK843C48DdOlI,4014
133
+ investing_algorithm_framework/domain/models/time_interval.py,sha256=M7HNe-QjBUmCaySomMxPuDAzPiBc0FbAwYOuTkPUqzk,3919
134
+ investing_algorithm_framework/domain/models/time_unit.py,sha256=dCi1lcVK-QGlOt6yRclL7n_PbXRcDbJ8pPaB_KMg8y0,4033
135
+ investing_algorithm_framework/domain/models/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ investing_algorithm_framework/domain/models/tracing/trace.py,sha256=iAVEN102-y_7Wj9Qg7kdti8-2I63Y8UG0SF3V2pkHj8,699
137
+ investing_algorithm_framework/domain/models/trade/__init__.py,sha256=HZ46zE1MAJiZDzl-4LzjDcGU0vP72L6Z6E90ewKZtcc,244
138
+ investing_algorithm_framework/domain/models/trade/trade.py,sha256=OdW9ocdVdwC2YgTGuYJX9E7_PnW4PMJKY5nX7y4UwqU,13152
139
+ investing_algorithm_framework/domain/models/trade/trade_status.py,sha256=9b5QDwg8vsu_iRtGWatJ1rJFubjIWslKHTG3cK0zVQ4,1004
140
+ investing_algorithm_framework/domain/models/trade/trade_stop_loss.py,sha256=rEWME9upMeNal5IC2EilsJdyThDBQ6ZXvbVJ4aFUDyw,13011
141
+ investing_algorithm_framework/domain/models/trade/trade_take_profit.py,sha256=fj36ZtkSX7-YC5wNfhPC151DiGdfsWVYcCjqS49FGsE,15320
142
+ investing_algorithm_framework/domain/order_executor.py,sha256=Ila0yfsZ46eDLWqVcrFrHjOSoFEFuHMmiAxs3N8Ba2M,3792
143
+ investing_algorithm_framework/domain/portfolio_provider.py,sha256=8KWH8uXdRbU6C1fyvWkYL_ZfdgiUZhvyiAR_V2mBMfY,3879
144
+ investing_algorithm_framework/domain/services/__init__.py,sha256=kmGPiLaZTpypWFZPVMzb9dtfsLdvHuFo1rRDp_f4H9g,327
145
+ investing_algorithm_framework/domain/services/market_credential_service.py,sha256=Ib_lFd0R7oumtuEf4YR8nX8oAH1pKa0AOk4WKPbiU0c,1047
146
+ investing_algorithm_framework/domain/services/portfolios/__init__.py,sha256=8N1Dh9GESzE7AN776F8Duql5yblKf9SjcwZAX0C6RaE,115
147
+ investing_algorithm_framework/domain/services/portfolios/portfolio_sync_service.py,sha256=8Cp9bFhkKFjPcYJB39wY5v9gFetj2lVovDxJJRvHlHE,213
148
+ investing_algorithm_framework/domain/services/rounding_service.py,sha256=aY2H5nNVxAsc1JRdA2Qwoe8LmGVjf1UaQ0R-hqYgXu8,699
149
+ investing_algorithm_framework/domain/services/state_handler.py,sha256=L1OcRKpaxw1CqTh71Y0rDWR5fk3pvNKVwaxE9b9Jlqs,839
150
+ investing_algorithm_framework/domain/stateless_actions.py,sha256=DHhuI_3oL6JqWWucsZNvB3a9vFthZAk20Rg89_lc9o8,156
151
+ investing_algorithm_framework/domain/strategy.py,sha256=F4GWyz3DmccPP0oc4uLl7tS30eqRXW2Inh5Rras3J9Q,850
152
+ investing_algorithm_framework/domain/utils/__init__.py,sha256=YrJrQ2ZBKeMcuCKv0qRck71_H6NMOTP5TBshL1MHYzQ,851
153
+ investing_algorithm_framework/domain/utils/csv.py,sha256=QK7EC_jY4u9s97OFOcoxwZsBPGTnO79Z4qx07ms4MWI,2746
154
+ investing_algorithm_framework/domain/utils/custom_tqdm.py,sha256=LwPiuYedzujtV-kp4Uq_Pe8CqjH6zFvvCuSWCharOP8,583
155
+ investing_algorithm_framework/domain/utils/dates.py,sha256=T3ZwN6UXKZmcqSjrdH5j2Ielq2PB4fm12QXSy-wdrZw,1541
156
+ investing_algorithm_framework/domain/utils/jupyter_notebook_detection.py,sha256=Al0T72bhvmyYFGEYDVPbIBOpXtIfgmn8_Tq1KKJYyig,624
157
+ investing_algorithm_framework/domain/utils/polars.py,sha256=1oqlZbNgOvIUyoJTRuwxdzZhlSqYF7R1SDjdhgb0Reg,1828
158
+ investing_algorithm_framework/domain/utils/random.py,sha256=25PQSDuTmMd32sN7H3LQejUO73hQW5FCHGOpKYfdXI0,945
159
+ investing_algorithm_framework/domain/utils/signatures.py,sha256=MO2hCrrnQjbsT6guX4AdeJfcAP55pRXtjJ73uX1cjaI,417
160
+ investing_algorithm_framework/domain/utils/stoppable_thread.py,sha256=z3-OGZ-wrygfYn4zhB3COHdB43qQYa65TeShyVokSp0,608
161
+ investing_algorithm_framework/domain/utils/synchronized.py,sha256=YjvutHxMh5r1WEpOYPAXm7_xHRaDzj5YTj7HqfKqJm0,253
162
+ investing_algorithm_framework/download_data.py,sha256=K_yuwnCPw_P_ZuA5C5h-wnYW_CUdzXBGF6eJlpv3_mw,8521
163
+ investing_algorithm_framework/infrastructure/__init__.py,sha256=RibfxOq9MTmh7m1_QX_V4915EgOcOKAfmISUlVHi4Hg,1820
164
+ investing_algorithm_framework/infrastructure/data_providers/__init__.py,sha256=7uhvfzs5eAoARD_f36d7xmns9JSpQX843pyplQF6f0A,742
165
+ investing_algorithm_framework/infrastructure/data_providers/ccxt.py,sha256=B9S5XtupAj7CRQ_8MavUbN47mxiqzMcFIANOVbcB2B8,43087
166
+ investing_algorithm_framework/infrastructure/data_providers/csv.py,sha256=Tn7w-udpePWKw5Mf6P9ZfMxpGWqFjiuqbSETRzWWrI0,20248
167
+ investing_algorithm_framework/infrastructure/data_providers/pandas.py,sha256=DFCeDBIUWuIfPqFZb1NE2JJqC4GFAuIbcllQbxyuhqY,21661
168
+ investing_algorithm_framework/infrastructure/database/__init__.py,sha256=Zf986kazO5O-NPC2nF0dmy0EAkwi93P-R_Amun-ig3w,214
169
+ investing_algorithm_framework/infrastructure/database/sql_alchemy.py,sha256=0daXErJeXh-mtvqQj6fjyp70WkramTry1qopD4YVf2c,3816
170
+ investing_algorithm_framework/infrastructure/models/__init__.py,sha256=Xtcy4dHqrItaTpSfPfD0ztz3rH56yE_viFEzrtV79H0,441
171
+ investing_algorithm_framework/infrastructure/models/decimal_parser.py,sha256=s19k4gUh5qhZg-PcPzGFKqQ8xK4Z9OtefnTT2YgRojY,327
172
+ investing_algorithm_framework/infrastructure/models/model_extension.py,sha256=EiSSs-Jq27gBhLnlIKvEjDoJz7iMPFxkFBg5cesU694,142
173
+ investing_algorithm_framework/infrastructure/models/order/__init__.py,sha256=3s-yIwCU_glQ_rk7WkZE4L44WoeW0i5Ksbd_FEoWaRQ,117
174
+ investing_algorithm_framework/infrastructure/models/order/order.py,sha256=xo5puh51xH3PQBioTf0OyVvVOOjSGF2d4Im3QNbQe5Y,4585
175
+ investing_algorithm_framework/infrastructure/models/order/order_metadata.py,sha256=nr04CGukn7ZcB61yE_Vgg8faq1zh8Mwb4mhuR1Qaieo,1544
176
+ investing_algorithm_framework/infrastructure/models/order_trade_association.py,sha256=rgnY8QiWwkRBQlz7lOwxGAv8P0UAYBYrZGN-ILsz6AE,404
177
+ investing_algorithm_framework/infrastructure/models/portfolio/__init__.py,sha256=4CNIMzv6k_99XiFGJX-OlkwnyiiOdAMcKL0KML8Ltno,145
178
+ investing_algorithm_framework/infrastructure/models/portfolio/portfolio_snapshot.py,sha256=YNnLhfYGbHU0JXU0fziRpllM-4ngpqvOESFk0Y2FxF0,1508
179
+ investing_algorithm_framework/infrastructure/models/portfolio/sql_portfolio.py,sha256=rixz14GfBWc4bBtP43I_VV4FopIcxTCq3ZAc9cG_o3Y,3604
180
+ investing_algorithm_framework/infrastructure/models/position/__init__.py,sha256=nNEWciIXWZyFIYZVEkAGB21Kf9QXkWzcdcL4uKiHjFo,135
181
+ investing_algorithm_framework/infrastructure/models/position/position.py,sha256=CmSX7KNKJ0vkJ8Z7eq2DzARCdPGYGHH6sChJ0aS2nfM,1898
182
+ investing_algorithm_framework/infrastructure/models/position/position_snapshot.py,sha256=F8pcpppTIH89JAPSqDlp7zCVRvElUKcH3odGELlh1w8,842
183
+ investing_algorithm_framework/infrastructure/models/trades/__init__.py,sha256=XW_wUHejOc9saYllAWy0nrMBAXl_aGNCqTDMTSSznCQ,205
184
+ investing_algorithm_framework/infrastructure/models/trades/trade.py,sha256=xaZ6dQCRqRrZw0JxOgDWOxa3-E-Wyr4afotBb7TG6_0,4928
185
+ investing_algorithm_framework/infrastructure/models/trades/trade_stop_loss.py,sha256=sKMSo2R4d1iU6fWrnZIa5KKnDNatd8GrXMaf60LFz5I,2468
186
+ investing_algorithm_framework/infrastructure/models/trades/trade_take_profit.py,sha256=iaZW4PSviVJw1BYPOjvbsk_U4AydNtzY_rskWzYPIlA,2211
187
+ investing_algorithm_framework/infrastructure/order_executors/__init__.py,sha256=G1F1Vf-taT6_ieKB3qXIjU2QGVg08JoBKcVMGB9ZuIM,425
188
+ investing_algorithm_framework/infrastructure/order_executors/backtest_oder_executor.py,sha256=ZuV9K77RuzYjVPUjN2uEjgp76xK443No-HpQyqmMmrA,991
189
+ investing_algorithm_framework/infrastructure/order_executors/ccxt_order_executor.py,sha256=-4rbSvvOSnN3ICHPMzn4BbG_XJz-PKOAC0CfN8SlEzc,7042
190
+ investing_algorithm_framework/infrastructure/portfolio_providers/__init__.py,sha256=7SaQOI54fwJ9Y8B4Jy-1OFstlb2pAfuIgX_xq0ToD8A,370
191
+ investing_algorithm_framework/infrastructure/portfolio_providers/ccxt_portfolio_provider.py,sha256=Aeftdy-P_FsJJ8wGkJ0gvTH3rnupx9VrzNhuuwfpgbA,6484
192
+ investing_algorithm_framework/infrastructure/repositories/__init__.py,sha256=BrcfoHYwUEYf6eU0DhwCmQ0W665UrLnIkiRWcQEzgZ8,864
193
+ investing_algorithm_framework/infrastructure/repositories/order_metadata_repository.py,sha256=2JJOuKQjPZe1WTf_LVLTd5TsmcEkKArncsM_h2m5PP4,521
194
+ investing_algorithm_framework/infrastructure/repositories/order_repository.py,sha256=42SLShxPg46wj-L4sbMnX-qoiJdTYutEAc3n6gghx1A,3568
195
+ investing_algorithm_framework/infrastructure/repositories/portfolio_repository.py,sha256=3Qdx2HwGiKcnm7ikh5fRV85FNYv4Xfs3cn2sw-_kZ7c,1073
196
+ investing_algorithm_framework/infrastructure/repositories/portfolio_snapshot_repository.py,sha256=K24hMQQpryLnnKE5YPqLBuj5cMaLdAr-O6vS6wdwECU,1967
197
+ investing_algorithm_framework/infrastructure/repositories/position_repository.py,sha256=BQC2iBdRTiU5VmYdW9H-rZtaBVr56sxXhV43CKVk3lg,2459
198
+ investing_algorithm_framework/infrastructure/repositories/position_snapshot_repository.py,sha256=GT1TkoHdy1L7ZNspDsMqWY8R2tjINz7XBYunuebzLAg,680
199
+ investing_algorithm_framework/infrastructure/repositories/repository.py,sha256=D78YcbVmz7J-ipna3BuOHPq5taPbC1oRAMYBIoWcSAE,9564
200
+ investing_algorithm_framework/infrastructure/repositories/trade_repository.py,sha256=SxVfk8Ib-Np5cTGztwfetpw0nOmIH6evsCkJGwYSbg0,2692
201
+ investing_algorithm_framework/infrastructure/repositories/trade_stop_loss_repository.py,sha256=1RUDLffC5oNpQYFCbOx_Fvkn3JOIYk2U9-dextA-8Do,878
202
+ investing_algorithm_framework/infrastructure/repositories/trade_take_profit_repository.py,sha256=JyMXsdG4A6EXACM3dfNTc6kllSjetFYMLjI9R_r2mu8,888
203
+ investing_algorithm_framework/infrastructure/services/__init__.py,sha256=MADCycRIsjdjqH32oXh8em4oFKffIgC7TuJS33lnJig,287
204
+ investing_algorithm_framework/infrastructure/services/aws/__init__.py,sha256=kIWIu7q6lKyOa7gFIjv2HflbR_PUUgsFmnCe_SFPMlc,100
205
+ investing_algorithm_framework/infrastructure/services/aws/state_handler.py,sha256=BycGgoXEzGehTCUrfakkxGQtbQTPLz91xsaydYa6t-M,6633
206
+ investing_algorithm_framework/infrastructure/services/azure/__init__.py,sha256=PWNpC9jPwc4ctukiSuNM9NDSfvGULFTH9gaTLFVyRBI,106
207
+ investing_algorithm_framework/infrastructure/services/azure/state_handler.py,sha256=EUk4PdVl6RQ19DuWdrC4DzgOhGcL3qiZKWgWh_obT4E,5240
208
+ investing_algorithm_framework/infrastructure/services/backtesting/__init__.py,sha256=lavfL5uDjob37iuPyTVzxNVRrSrydWO0vyAm7PHNJm4,256
209
+ investing_algorithm_framework/infrastructure/services/backtesting/backtest_service.py,sha256=okokWWMM9JW7qqVZ5Culy8r3FmKQJvK3lp_OxYb-Ky8,106706
210
+ investing_algorithm_framework/infrastructure/services/backtesting/event_backtest_service.py,sha256=V_NpKTmRa8W1YXbwUcarnrR1kjcXkNpk7iuLh93V7jM,10010
211
+ investing_algorithm_framework/infrastructure/services/backtesting/vector_backtest_service.py,sha256=y_0PhrVjQXV02lY8QIqOQtlFgQkEkLKOtoohmPnWoNY,18719
212
+ investing_algorithm_framework/services/__init__.py,sha256=QrrdVtvealRleDW5AnJi9TpOj5aAFQ-r-t-2vWJexXs,5284
213
+ investing_algorithm_framework/services/configuration_service.py,sha256=5HN4KaDJ2Yrl9MtkTYRpLTYhIn1qOmkSLDyWsXprJZs,2820
214
+ investing_algorithm_framework/services/data_providers/__init__.py,sha256=OHVccpIYGc-1B2AkCI_2Nhsb9KMaAUrng4DHhIbFD8Y,96
215
+ investing_algorithm_framework/services/data_providers/data_provider_service.py,sha256=MDsSF2gSCur1KglldniFOmsbmKwnq_NlaGjJshuV9x8,37608
216
+ investing_algorithm_framework/services/market_credential_service.py,sha256=syitQ61sECzK0i0Wd-Hc8xaTv4tpRYRFbCjyw9pWMeA,1197
217
+ investing_algorithm_framework/services/metrics/__init__.py,sha256=WgGF8jjbEqtC777GKvCRYXArFsSqfw0WJhcFNfMA03c,4628
218
+ investing_algorithm_framework/services/metrics/alpha.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
219
+ investing_algorithm_framework/services/metrics/beta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
+ investing_algorithm_framework/services/metrics/cagr.py,sha256=I3GVZWeC4ybfpSOFws69O3GbWeSn2p8nasDUYI6PqyI,2091
221
+ investing_algorithm_framework/services/metrics/calmar_ratio.py,sha256=clZTkG6bjZsjq3ANPwMaGkV09akDN1DMlUCfHU89c58,1402
222
+ investing_algorithm_framework/services/metrics/drawdown.py,sha256=Lu6_hPeeZRUHN_xxh0Mllep0-aRzGfY30EkqMi9BUl8,7110
223
+ investing_algorithm_framework/services/metrics/equity_curve.py,sha256=Z3YdqEJ7x9N-RKOC4bt-1LuiKAYTCxhuE6Fx1lJyAS0,702
224
+ investing_algorithm_framework/services/metrics/exposure.py,sha256=kQPreO5RR72DgTRdSdMPiG6onZTAWvyYTrp3hsI6vYw,6234
225
+ investing_algorithm_framework/services/metrics/generate.py,sha256=Vxi-t2cDXdZlTcmdHPQu6XDeR3GrsFXMUcZgi65kTtQ,17394
226
+ investing_algorithm_framework/services/metrics/mean_daily_return.py,sha256=lGF3C0qkVaElNJH_V0Lk3xubopCM70l_14U5v5m-OG0,2385
227
+ investing_algorithm_framework/services/metrics/price_efficiency.py,sha256=hpt1Nyk7s_jxFeqEVeQV9FH5N4RzJx6SP072L4z9fYw,1844
228
+ investing_algorithm_framework/services/metrics/profit_factor.py,sha256=6OMC2yx1stMrJKaVSCMWyVbVMgfurYTiue7P7QeCEHs,5178
229
+ investing_algorithm_framework/services/metrics/recovery.py,sha256=lkc0OUKDPBJjG_NeGWElPY3i3ZrAvWS8mjQgUeNvQXs,4373
230
+ investing_algorithm_framework/services/metrics/returns.py,sha256=_fi7-9te_82o3tdgsiOm6UC96_ckfPqhn20LZ9OTNWg,13329
231
+ investing_algorithm_framework/services/metrics/risk_free_rate.py,sha256=bATheWxyqSZG7-Q5Oz_iM5xXl05SOINYTt19ejJG6YM,780
232
+ investing_algorithm_framework/services/metrics/sharpe_ratio.py,sha256=cLrGA4YjAmMCrZvtqfwE4hxuJkj174vZjjcFyMq9GNo,5487
233
+ investing_algorithm_framework/services/metrics/sortino_ratio.py,sha256=WA8uTkyk8RMG6uMplCvV8okAlKG_aeTP4ZAX2VyNkpA,2993
234
+ investing_algorithm_framework/services/metrics/standard_deviation.py,sha256=o4yB067ZUgcppDCAv0E7m2IFg_S3vfRaotoG4yX4UM4,4540
235
+ investing_algorithm_framework/services/metrics/trades.py,sha256=0sItfQPG_wbv25SYijBIOz95Fl6lqtvrC-SAjq4WbKk,12566
236
+ investing_algorithm_framework/services/metrics/treynor_ratio.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
+ investing_algorithm_framework/services/metrics/ulcer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ investing_algorithm_framework/services/metrics/value_at_risk.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ investing_algorithm_framework/services/metrics/volatility.py,sha256=KCy-UhIosF0TMwVG-Y8DnbngLVsjYHcJlc_pxsu3IpE,4637
240
+ investing_algorithm_framework/services/metrics/win_rate.py,sha256=9SXI6E7JS7XQY3qVwARhr-Wti2ZKfd1n3yNXxGL1hIY,5794
241
+ investing_algorithm_framework/services/order_service/__init__.py,sha256=B-9kb7AWnMHCYkT3C7lvUADPWC8uP8cg6ymj3Ngabf0,242
242
+ investing_algorithm_framework/services/order_service/order_backtest_service.py,sha256=20rVRGSX1IRVRrjCgnM3H7gg4MGZdQconJ9tEE_pZzg,6534
243
+ investing_algorithm_framework/services/order_service/order_executor_lookup.py,sha256=QNZr-EiKofPGgYHHBESfxdMXGuLOAT8BlufHx92LkoM,3601
244
+ investing_algorithm_framework/services/order_service/order_service.py,sha256=eje1BSQDjJXijbHNkDpymA8QW-UKx_8P1nmx9GXcy1I,30165
245
+ investing_algorithm_framework/services/portfolios/__init__.py,sha256=fCBlgYbD_9S-boHPSmSNzu0ZYBHcXSZ6QGG68qkj4-k,603
246
+ investing_algorithm_framework/services/portfolios/backtest_portfolio_service.py,sha256=xlh9xPBxYo5e7_Dlb4genkHlC0UfyvvbPubBy54Pkvo,1979
247
+ investing_algorithm_framework/services/portfolios/portfolio_configuration_service.py,sha256=h-Jng3O8hFF4G2trXktp2CuJFHr5ZysvrSHis4vPP1U,2551
248
+ investing_algorithm_framework/services/portfolios/portfolio_provider_lookup.py,sha256=UYKWnLdm7Fwsm1Y3ifen-6iROahofcjfQluowB2KGa4,3604
249
+ investing_algorithm_framework/services/portfolios/portfolio_service.py,sha256=sckTNcbKVFwVwE7JNYm8tptGplIGXRaeCGJn0PIyOqo,6772
250
+ investing_algorithm_framework/services/portfolios/portfolio_snapshot_service.py,sha256=2XFMgH_O0iRSjIJxsF1xjkxY_r3ikSZj9T7fVAfxjVw,5214
251
+ investing_algorithm_framework/services/portfolios/portfolio_sync_service.py,sha256=npIBdN1r5ys5xVQDadPxNXiTigvazYwjSbbpz631MqU,7405
252
+ investing_algorithm_framework/services/positions/__init__.py,sha256=3fwOf-5x0BO3FErW76naRcpW-mESkl7WUHRfj3No-HA,177
253
+ investing_algorithm_framework/services/positions/position_service.py,sha256=IB_Lxxq469GWcrXbSfjKCn1E8WeMRJT_XK8-41Tj9Y8,6366
254
+ investing_algorithm_framework/services/positions/position_snapshot_service.py,sha256=QPY0xp3ky5rJgGev3PBpIalvS2xKlRLGXr-3TyA2zng,525
255
+ investing_algorithm_framework/services/repository_service.py,sha256=9_KYyuRU3Mhjn-oQv1yh0b54bh4zN1upFQqpkNgP7HA,1177
256
+ investing_algorithm_framework/services/trade_order_evaluator/__init__.py,sha256=r9bvjkiVy4fLAsKg_0_SZY0w798bJTKZI5TI7f1o4IU,306
257
+ investing_algorithm_framework/services/trade_order_evaluator/backtest_trade_oder_evaluator.py,sha256=jFAlnB9BUx8AMlArDv3XA9dh-NjOWcd5ds1ZY6jIwNA,4043
258
+ investing_algorithm_framework/services/trade_order_evaluator/default_trade_order_evaluator.py,sha256=d20gXC-SMez9Fza3IFi-qsjqC4R3ZZiboartaAtvm9c,1714
259
+ investing_algorithm_framework/services/trade_order_evaluator/trade_order_evaluator.py,sha256=GDfifqRVawALnxZ8FaW2BUD3p_luOhkbs-M7lmwfmYY,2914
260
+ investing_algorithm_framework/services/trade_service/__init__.py,sha256=qD-38oHflxwEOO-hzvFrwSv-ZoH2UjOqAnUnTlSTO5w,252
261
+ investing_algorithm_framework/services/trade_service/trade_service.py,sha256=G3IWrpAe3TW2GM-bWIgGkc0vc4ZYoEvCzbE0dR2RdAE,42045
262
+ investing_algorithm_framework/services/trade_service/trade_stop_loss_service.py,sha256=6eJfPY0PgdatTU9PIQtfO14bvXKIGE93JaGFw5YlyAk,1001
263
+ investing_algorithm_framework/services/trade_service/trade_take_profit_service.py,sha256=mKOVrhuGiAEUTafwoTMkCt1HuHd6a6E6DKGfpPtXsNM,1064
264
+ investing_algorithm_framework-7.25.6.dist-info/LICENSE,sha256=wbVEDvoZiMPHufRY3sLEffvAr7GH5hOIngHF8y4HFQg,11343
265
+ investing_algorithm_framework-7.25.6.dist-info/METADATA,sha256=1Ny0gemy5TvPPl2W_qWaBL2Wjw-t5H2WP6yaLwnJp3A,20197
266
+ investing_algorithm_framework-7.25.6.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
267
+ investing_algorithm_framework-7.25.6.dist-info/entry_points.txt,sha256=jrPF0YksDs27vYzEvj3tXLe3OGWU24EJA05z5xHqmq8,91
268
+ investing_algorithm_framework-7.25.6.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: poetry-core 1.8.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ investing-algorithm-framework=investing_algorithm_framework.cli.cli:cli
3
+