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.
- aether_quant-0.4.0/.env.live.example +15 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.gitignore +6 -0
- aether_quant-0.4.0/Dockerfile.workers +8 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/PKG-INFO +1 -1
- aether_quant-0.4.0/README.md +699 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/PKG-INFO +1 -1
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/SOURCES.txt +28 -6
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/scm_file_list.json +28 -6
- aether_quant-0.4.0/aether_quant.egg-info/scm_version.json +8 -0
- aether_quant-0.4.0/aether_quant.egg-info/top_level.txt +5 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aq_cli.py +158 -7
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/README.md +27 -0
- aether_quant-0.4.0/data_pipeline/fetch.py +134 -0
- aether_quant-0.4.0/development/Changelog.md +856 -0
- aether_quant-0.4.0/development/Problems.md +573 -0
- aether_quant-0.4.0/development/backtest_equity_chart.png +0 -0
- aether_quant-0.4.0/development/infrastructure.md +489 -0
- aether_quant-0.4.0/development/logo.png +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/development/v2_architecture.md +262 -26
- {aether_quant-0.2.0 → aether_quant-0.4.0}/docker-compose.yml +35 -3
- aether_quant-0.4.0/execution/README.md +58 -0
- aether_quant-0.4.0/execution/__init__.py +28 -0
- aether_quant-0.4.0/execution/config_cache.py +48 -0
- aether_quant-0.4.0/execution/live_credentials.py +21 -0
- aether_quant-0.4.0/execution/live_credentials_io.py +42 -0
- aether_quant-0.4.0/execution/paper_readiness.py +163 -0
- aether_quant-0.4.0/execution/paper_readiness_io.py +54 -0
- aether_quant-0.4.0/execution/paper_readiness_report.py +99 -0
- aether_quant-0.4.0/execution/runtime_config_io.py +38 -0
- aether_quant-0.4.0/generate_backtest_report.py +311 -0
- aether_quant-0.4.0/inference/README.md +35 -0
- aether_quant-0.4.0/inference/__init__.py +3 -0
- aether_quant-0.4.0/inference/exported_model.py +68 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/main.py +157 -95
- {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/api_server.py +9 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/README.md +5 -4
- {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/README.md +8 -3
- {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/triggers.py +52 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/pyproject.toml +13 -5
- {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/README.md +3 -5
- {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-dev.txt +4 -0
- aether_quant-0.4.0/requirements/requirements-workers.txt +14 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/README.md +9 -4
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/worker.py +20 -2
- {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/manual_override.py +9 -1
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/README.md +3 -1
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_aq_cli.py +257 -4
- aether_quant-0.4.0/tests/test_config_cache.py +87 -0
- aether_quant-0.4.0/tests/test_exported_model.py +106 -0
- aether_quant-0.4.0/tests/test_fetch.py +231 -0
- aether_quant-0.4.0/tests/test_generate_backtest_report.py +259 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_lean_backtest_ml_coverage.py +8 -6
- aether_quant-0.4.0/tests/test_live_credentials.py +38 -0
- aether_quant-0.4.0/tests/test_live_credentials_io.py +53 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_manual_override.py +20 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_topology.py +133 -0
- aether_quant-0.4.0/tests/test_paper_readiness.py +233 -0
- aether_quant-0.4.0/tests/test_paper_readiness_io.py +83 -0
- aether_quant-0.4.0/tests/test_paper_readiness_report.py +88 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_worker.py +57 -0
- aether_quant-0.4.0/tests/test_runtime_config_io.py +54 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_simulated_portfolio.py +17 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_train_pipeline.py +66 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_triggers.py +24 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/README.md +46 -11
- {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/market_topology.py +71 -33
- {aether_quant-0.2.0 → aether_quant-0.4.0}/train.py +20 -1
- aether_quant-0.4.0/webui/src/components/monitoring/PaperReadinessPanel.tsx +58 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/Overview.tsx +2 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/types/state.ts +16 -0
- aether_quant-0.2.0/Dockerfile.telegram_worker +0 -9
- aether_quant-0.2.0/Dockerfile.trigger_worker +0 -8
- aether_quant-0.2.0/Dockerfile.worker +0 -7
- aether_quant-0.2.0/README.md +0 -409
- aether_quant-0.2.0/aether_quant.egg-info/scm_version.json +0 -8
- aether_quant-0.2.0/aether_quant.egg-info/top_level.txt +0 -2
- aether_quant-0.2.0/development/Changelog.md +0 -482
- aether_quant-0.2.0/development/Problems.md +0 -214
- aether_quant-0.2.0/development/infrastructure.md +0 -366
- aether_quant-0.2.0/execution/README.md +0 -9
- aether_quant-0.2.0/execution/__init__.py +0 -13
- aether_quant-0.2.0/requirements/requirements-telegram-worker.txt +0 -8
- aether_quant-0.2.0/requirements/requirements-trigger-worker.txt +0 -3
- aether_quant-0.2.0/requirements/requirements-worker.txt +0 -4
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.dockerignore +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.env.compose.example +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.gitattributes +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.github/workflows/ci.yml +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/.github/workflows/release.yml +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/Dockerfile +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/Dockerfile.retraining_worker +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/dependency_links.txt +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/aether_quant.egg-info/entry_points.txt +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/analyzer/market_analyzer.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/backtests/.gitkeep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/consensus/aapl/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/estimate/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/estimize/release/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/sec/aapl/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/calendar/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/earnings/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data/alternative/trading-economics/indicator/.keep +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/v2_manifest.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/data_pipeline/yfinance_backfill.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/development/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/execution/order_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/observation_metrics.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/postgres_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/redis_queue.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experience/simulated_portfolio.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/experts/expert_datasets.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/liquidity/market_liquidity.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/ml/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/moe/gating.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/monitoring/neural_network_state.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/postgres_telegram.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_alerts.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_client.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/notifications/telegram_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/postgres_triggers.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/performance/trigger_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/regime/market_regime.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-retraining-worker.txt +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements-runtime.txt +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/requirements/requirements.txt +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/artifacts.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/backtest_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/lean_backtest.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/orchestrator.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/planning.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/postgres_registry.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/status_export.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/validation_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/vault_client.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/retraining/vault_commands.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/risk/position_sizing.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/risk_controls.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/setup.cfg +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_backtest_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_experience_queue.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_expert_datasets.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_expert_models.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_gating_network.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_lean_backtest.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_learned_topology.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_analyzer.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_liquidity.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_market_regime.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_neural_network_state.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_observation_metrics.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_order_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_position_sizing.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_telegram.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_triggers.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_postgres_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_artifacts.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_orchestrator.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_planning.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_retraining_postgres_registry.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_risk_controls.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_status_export.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_alerts.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_client.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_telegram_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_train_topology.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_trigger_worker.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_v2_pipeline_manifest.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_validation_gate.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_vault_client.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_vault_commands.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/tests/test_yfinance_backfill.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/__init__.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/topology/learned_topology.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/train_topology.py +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/visualization/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/.gitignore +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/.oxlintrc.json +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/README.md +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/index.html +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/overview_v2_12.png +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/package-lock.json +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/package.json +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/public/favicon.svg +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/public/icons.svg +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/risk_v2_12.png +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/App.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/api/client.ts +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/api/hooks.ts +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/heatmap/AssetHeatmap.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/layout/AppShell.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/layout/Panel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/CountTable.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/MonitoringFeeds.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/ObservationPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/PerformanceTriggersPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/RawStateViewer.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/monitoring/RetrainingStatusPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/neuralnet/NeuralNetworkScene3D.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/neuralnet/NeuralNetworkStatsPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/AssetSizingTable.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/LiquidityTable.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/RiskBar.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/RiskCore.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/risk/StrategyRiskCards.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/scene3d/Scene3D.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/scorecards/Scorecards.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/Badge.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/PositionsList.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/signals/SignalBoard.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/ClusterList.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/TopologyLearningPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/topology/TopologyScene3D.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/AssetPerformancePanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/BacktestEquityPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/DivergingBarChart.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/LineChart.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/MetricsSnapshotPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/components/tracing/ObservationEquityPanel.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/index.css +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/lib/downsample.ts +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/lib/format.ts +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/main.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/NeuralNetworkPage.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/RiskPage.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/TopologyPage.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/pages/TracingPage.tsx +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/src/types/tracing.ts +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.app.json +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.json +0 -0
- {aether_quant-0.2.0 → aether_quant-0.4.0}/webui/tsconfig.node.json +0 -0
- {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/
|