aether-quant 0.2.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (252) hide show
  1. aether_quant-0.4.0/.env.live.example +15 -0
  2. {aether_quant-0.2.0 → aether_quant-0.4.0}/.gitignore +6 -0
  3. aether_quant-0.4.0/Dockerfile.workers +8 -0
  4. {aether_quant-0.2.0 → aether_quant-0.4.0}/PKG-INFO +1 -1
  5. aether_quant-0.4.0/README.md +699 -0
  6. {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/PKG-INFO +1 -1
  7. {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/SOURCES.txt +28 -6
  8. {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/scm_file_list.json +28 -6
  9. aether_quant-0.4.0/aether_quant.egg-info/scm_version.json +8 -0
  10. aether_quant-0.4.0/aether_quant.egg-info/top_level.txt +5 -0
  11. {aether_quant-0.2.0 → aether_quant-0.4.0}/aq_cli.py +158 -7
  12. {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/README.md +27 -0
  13. aether_quant-0.4.0/data_pipeline/fetch.py +134 -0
  14. aether_quant-0.4.0/development/Changelog.md +856 -0
  15. aether_quant-0.4.0/development/Problems.md +573 -0
  16. aether_quant-0.4.0/development/backtest_equity_chart.png +0 -0
  17. aether_quant-0.4.0/development/infrastructure.md +489 -0
  18. aether_quant-0.4.0/development/logo.png +0 -0
  19. {aether_quant-0.2.0 → aether_quant-0.4.0}/development/v2_architecture.md +262 -26
  20. {aether_quant-0.2.0 → aether_quant-0.4.0}/docker-compose.yml +35 -3
  21. aether_quant-0.4.0/execution/README.md +58 -0
  22. aether_quant-0.4.0/execution/__init__.py +28 -0
  23. aether_quant-0.4.0/execution/config_cache.py +48 -0
  24. aether_quant-0.4.0/execution/live_credentials.py +21 -0
  25. aether_quant-0.4.0/execution/live_credentials_io.py +42 -0
  26. aether_quant-0.4.0/execution/paper_readiness.py +163 -0
  27. aether_quant-0.4.0/execution/paper_readiness_io.py +54 -0
  28. aether_quant-0.4.0/execution/paper_readiness_report.py +99 -0
  29. aether_quant-0.4.0/execution/runtime_config_io.py +38 -0
  30. aether_quant-0.4.0/generate_backtest_report.py +311 -0
  31. aether_quant-0.4.0/inference/README.md +35 -0
  32. aether_quant-0.4.0/inference/__init__.py +3 -0
  33. aether_quant-0.4.0/inference/exported_model.py +68 -0
  34. {aether_quant-0.2.0 → aether_quant-0.4.0}/main.py +157 -95
  35. {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/api_server.py +9 -0
  36. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/README.md +5 -4
  37. {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/README.md +8 -3
  38. {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/triggers.py +52 -0
  39. {aether_quant-0.2.0 → aether_quant-0.4.0}/pyproject.toml +13 -5
  40. {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/README.md +3 -5
  41. {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-dev.txt +4 -0
  42. aether_quant-0.4.0/requirements/requirements-workers.txt +14 -0
  43. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/README.md +9 -4
  44. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/worker.py +20 -2
  45. {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/manual_override.py +9 -1
  46. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/README.md +3 -1
  47. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_aq_cli.py +257 -4
  48. aether_quant-0.4.0/tests/test_config_cache.py +87 -0
  49. aether_quant-0.4.0/tests/test_exported_model.py +106 -0
  50. aether_quant-0.4.0/tests/test_fetch.py +231 -0
  51. aether_quant-0.4.0/tests/test_generate_backtest_report.py +259 -0
  52. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_lean_backtest_ml_coverage.py +8 -6
  53. aether_quant-0.4.0/tests/test_live_credentials.py +38 -0
  54. aether_quant-0.4.0/tests/test_live_credentials_io.py +53 -0
  55. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_manual_override.py +20 -0
  56. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_topology.py +133 -0
  57. aether_quant-0.4.0/tests/test_paper_readiness.py +233 -0
  58. aether_quant-0.4.0/tests/test_paper_readiness_io.py +83 -0
  59. aether_quant-0.4.0/tests/test_paper_readiness_report.py +88 -0
  60. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_worker.py +57 -0
  61. aether_quant-0.4.0/tests/test_runtime_config_io.py +54 -0
  62. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_simulated_portfolio.py +17 -0
  63. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_train_pipeline.py +66 -0
  64. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_triggers.py +24 -0
  65. {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/README.md +46 -11
  66. {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/market_topology.py +71 -33
  67. {aether_quant-0.2.0 → aether_quant-0.4.0}/train.py +20 -1
  68. aether_quant-0.4.0/webui/src/components/monitoring/PaperReadinessPanel.tsx +58 -0
  69. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/Overview.tsx +2 -0
  70. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/types/state.ts +16 -0
  71. aether_quant-0.2.0/Dockerfile.telegram_worker +0 -9
  72. aether_quant-0.2.0/Dockerfile.trigger_worker +0 -8
  73. aether_quant-0.2.0/Dockerfile.worker +0 -7
  74. aether_quant-0.2.0/README.md +0 -409
  75. aether_quant-0.2.0/aether_quant.egg-info/scm_version.json +0 -8
  76. aether_quant-0.2.0/aether_quant.egg-info/top_level.txt +0 -2
  77. aether_quant-0.2.0/development/Changelog.md +0 -482
  78. aether_quant-0.2.0/development/Problems.md +0 -214
  79. aether_quant-0.2.0/development/infrastructure.md +0 -366
  80. aether_quant-0.2.0/execution/README.md +0 -9
  81. aether_quant-0.2.0/execution/__init__.py +0 -13
  82. aether_quant-0.2.0/requirements/requirements-telegram-worker.txt +0 -8
  83. aether_quant-0.2.0/requirements/requirements-trigger-worker.txt +0 -3
  84. aether_quant-0.2.0/requirements/requirements-worker.txt +0 -4
  85. {aether_quant-0.2.0 → aether_quant-0.4.0}/.dockerignore +0 -0
  86. {aether_quant-0.2.0 → aether_quant-0.4.0}/.env.compose.example +0 -0
  87. {aether_quant-0.2.0 → aether_quant-0.4.0}/.gitattributes +0 -0
  88. {aether_quant-0.2.0 → aether_quant-0.4.0}/.github/workflows/ci.yml +0 -0
  89. {aether_quant-0.2.0 → aether_quant-0.4.0}/.github/workflows/release.yml +0 -0
  90. {aether_quant-0.2.0 → aether_quant-0.4.0}/Dockerfile +0 -0
  91. {aether_quant-0.2.0 → aether_quant-0.4.0}/Dockerfile.retraining_worker +0 -0
  92. {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/dependency_links.txt +0 -0
  93. {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/entry_points.txt +0 -0
  94. {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/README.md +0 -0
  95. {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/__init__.py +0 -0
  96. {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/market_analyzer.py +0 -0
  97. {aether_quant-0.2.0 → aether_quant-0.4.0}/backtests/.gitkeep +0 -0
  98. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/consensus/aapl/.keep +0 -0
  99. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/estimate/.keep +0 -0
  100. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/release/.keep +0 -0
  101. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/sec/aapl/.keep +0 -0
  102. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/.keep +0 -0
  103. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/calendar/.keep +0 -0
  104. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/earnings/.keep +0 -0
  105. {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/indicator/.keep +0 -0
  106. {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/__init__.py +0 -0
  107. {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/v2_manifest.py +0 -0
  108. {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/yfinance_backfill.py +0 -0
  109. {aether_quant-0.2.0 → aether_quant-0.4.0}/development/README.md +0 -0
  110. {aether_quant-0.2.0 → aether_quant-0.4.0}/execution/order_gate.py +0 -0
  111. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/README.md +0 -0
  112. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/__init__.py +0 -0
  113. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/observation_metrics.py +0 -0
  114. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/postgres_worker.py +0 -0
  115. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/redis_queue.py +0 -0
  116. {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/simulated_portfolio.py +0 -0
  117. {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/README.md +0 -0
  118. {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/__init__.py +0 -0
  119. {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/expert_datasets.py +0 -0
  120. {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/README.md +0 -0
  121. {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/__init__.py +0 -0
  122. {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/market_liquidity.py +0 -0
  123. {aether_quant-0.2.0 → aether_quant-0.4.0}/ml/README.md +0 -0
  124. {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/README.md +0 -0
  125. {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/__init__.py +0 -0
  126. {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/gating.py +0 -0
  127. {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/README.md +0 -0
  128. {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/__init__.py +0 -0
  129. {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/neural_network_state.py +0 -0
  130. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/__init__.py +0 -0
  131. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/postgres_telegram.py +0 -0
  132. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_alerts.py +0 -0
  133. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_client.py +0 -0
  134. {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_worker.py +0 -0
  135. {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/__init__.py +0 -0
  136. {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/postgres_triggers.py +0 -0
  137. {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/trigger_worker.py +0 -0
  138. {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/README.md +0 -0
  139. {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/__init__.py +0 -0
  140. {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/market_regime.py +0 -0
  141. {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-retraining-worker.txt +0 -0
  142. {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-runtime.txt +0 -0
  143. {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements.txt +0 -0
  144. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/__init__.py +0 -0
  145. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/artifacts.py +0 -0
  146. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/backtest_gate.py +0 -0
  147. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/lean_backtest.py +0 -0
  148. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/orchestrator.py +0 -0
  149. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/planning.py +0 -0
  150. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/postgres_registry.py +0 -0
  151. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/status_export.py +0 -0
  152. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/validation_gate.py +0 -0
  153. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/vault_client.py +0 -0
  154. {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/vault_commands.py +0 -0
  155. {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/README.md +0 -0
  156. {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/__init__.py +0 -0
  157. {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/position_sizing.py +0 -0
  158. {aether_quant-0.2.0 → aether_quant-0.4.0}/risk_controls.py +0 -0
  159. {aether_quant-0.2.0 → aether_quant-0.4.0}/setup.cfg +0 -0
  160. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_backtest_gate.py +0 -0
  161. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_experience_queue.py +0 -0
  162. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_expert_datasets.py +0 -0
  163. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_expert_models.py +0 -0
  164. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_gating_network.py +0 -0
  165. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_lean_backtest.py +0 -0
  166. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_learned_topology.py +0 -0
  167. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_analyzer.py +0 -0
  168. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_liquidity.py +0 -0
  169. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_regime.py +0 -0
  170. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_neural_network_state.py +0 -0
  171. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_observation_metrics.py +0 -0
  172. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_order_gate.py +0 -0
  173. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_position_sizing.py +0 -0
  174. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_telegram.py +0 -0
  175. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_triggers.py +0 -0
  176. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_worker.py +0 -0
  177. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_artifacts.py +0 -0
  178. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_orchestrator.py +0 -0
  179. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_planning.py +0 -0
  180. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_postgres_registry.py +0 -0
  181. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_risk_controls.py +0 -0
  182. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_status_export.py +0 -0
  183. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_alerts.py +0 -0
  184. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_client.py +0 -0
  185. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_worker.py +0 -0
  186. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_train_topology.py +0 -0
  187. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_trigger_worker.py +0 -0
  188. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_v2_pipeline_manifest.py +0 -0
  189. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_validation_gate.py +0 -0
  190. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_vault_client.py +0 -0
  191. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_vault_commands.py +0 -0
  192. {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_yfinance_backfill.py +0 -0
  193. {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/__init__.py +0 -0
  194. {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/learned_topology.py +0 -0
  195. {aether_quant-0.2.0 → aether_quant-0.4.0}/train_topology.py +0 -0
  196. {aether_quant-0.2.0 → aether_quant-0.4.0}/visualization/README.md +0 -0
  197. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/.gitignore +0 -0
  198. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/.oxlintrc.json +0 -0
  199. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/README.md +0 -0
  200. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/index.html +0 -0
  201. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/overview_v2_12.png +0 -0
  202. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/package-lock.json +0 -0
  203. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/package.json +0 -0
  204. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/public/favicon.svg +0 -0
  205. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/public/icons.svg +0 -0
  206. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/risk_v2_12.png +0 -0
  207. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/App.tsx +0 -0
  208. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/api/client.ts +0 -0
  209. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/api/hooks.ts +0 -0
  210. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/heatmap/AssetHeatmap.tsx +0 -0
  211. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/layout/AppShell.tsx +0 -0
  212. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/layout/Panel.tsx +0 -0
  213. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/CountTable.tsx +0 -0
  214. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/MonitoringFeeds.tsx +0 -0
  215. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/ObservationPanel.tsx +0 -0
  216. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/PerformanceTriggersPanel.tsx +0 -0
  217. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/RawStateViewer.tsx +0 -0
  218. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/RetrainingStatusPanel.tsx +0 -0
  219. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/neuralnet/NeuralNetworkScene3D.tsx +0 -0
  220. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/neuralnet/NeuralNetworkStatsPanel.tsx +0 -0
  221. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/AssetSizingTable.tsx +0 -0
  222. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/LiquidityTable.tsx +0 -0
  223. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/RiskBar.tsx +0 -0
  224. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/RiskCore.tsx +0 -0
  225. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/StrategyRiskCards.tsx +0 -0
  226. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/scene3d/Scene3D.tsx +0 -0
  227. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/scorecards/Scorecards.tsx +0 -0
  228. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/Badge.tsx +0 -0
  229. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/PositionsList.tsx +0 -0
  230. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/SignalBoard.tsx +0 -0
  231. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/ClusterList.tsx +0 -0
  232. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/TopologyLearningPanel.tsx +0 -0
  233. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/TopologyScene3D.tsx +0 -0
  234. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/AssetPerformancePanel.tsx +0 -0
  235. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/BacktestEquityPanel.tsx +0 -0
  236. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/DivergingBarChart.tsx +0 -0
  237. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/LineChart.tsx +0 -0
  238. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/MetricsSnapshotPanel.tsx +0 -0
  239. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/ObservationEquityPanel.tsx +0 -0
  240. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/index.css +0 -0
  241. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/lib/downsample.ts +0 -0
  242. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/lib/format.ts +0 -0
  243. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/main.tsx +0 -0
  244. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/NeuralNetworkPage.tsx +0 -0
  245. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/RiskPage.tsx +0 -0
  246. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/TopologyPage.tsx +0 -0
  247. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/TracingPage.tsx +0 -0
  248. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/types/tracing.ts +0 -0
  249. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.app.json +0 -0
  250. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.json +0 -0
  251. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.node.json +0 -0
  252. {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/vite.config.ts +0 -0
@@ -0,0 +1,15 @@
1
+ # Copy this file to .env.live (untracked, .gitignore'd) and fill in real
2
+ # values before switching phase_v2.runtime.mode to "live" (V2-22). Never
3
+ # commit .env.live.
4
+ #
5
+ # This is read by execution/live_credentials_io.py as a pre-flight
6
+ # credential-presence check only. It does NOT wire Lean itself - Lean's
7
+ # BrokerageSetupHandler reads ib-account/ib-user-name/ib-password/
8
+ # ib-trading-mode directly out of lean.json (also gitignored); populate
9
+ # those fields by hand as a separate step (see development/infrastructure.md's
10
+ # "Live Deployment Betreiben (V2-22)" runbook).
11
+
12
+ AETHER_IB_ACCOUNT=
13
+ AETHER_IB_USER_NAME=
14
+ AETHER_IB_PASSWORD=
15
+ AETHER_IB_TRADING_MODE=paper
@@ -16,6 +16,7 @@ env/
16
16
  .env
17
17
  .env.*
18
18
  !.env.compose.example
19
+ !.env.live.example
19
20
  ib_config.py
20
21
  *_config.local.py
21
22
  config.json
@@ -93,3 +94,8 @@ Aether-quant-Obsidian-Vault/
93
94
  # Webui (React/Vite) build artifacts and dependencies
94
95
  webui/node_modules/
95
96
  webui/dist/
97
+
98
+ # Matplotlib font cache, redirected here by main.py so it persists across
99
+ # Lean CLI's ephemeral per-backtest Docker containers instead of rebuilding
100
+ # every run (see Problems.md)
101
+ .matplotlib_cache/
@@ -0,0 +1,8 @@
1
+ FROM python:3.11-slim
2
+ WORKDIR /app
3
+ COPY requirements/requirements-workers.txt .
4
+ RUN pip install --no-cache-dir -r requirements-workers.txt
5
+ COPY execution/ ./execution/
6
+ COPY experience/ ./experience/
7
+ COPY performance/ ./performance/
8
+ COPY notifications/ ./notifications/
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aether-quant
3
- Version: 0.2.0
3
+ Version: 0.4.0
4
4
  Summary: Aether Quant convenience CLI
5
5
  Requires-Python: >=3.10