Celes Renata
7c23c044d7
feat: agent variants — migration, API, service integration, frontend, tests
...
- Migration 027: agent_variants table with single-active enforcement,
variant_id column on agent_performance_log
- API: full CRUD, clone from agent/variant, activate/deactivate,
per-variant performance metrics and history endpoints
- Services: extractor, event classifier, thesis rewriter all wired
to AgentConfigResolver with variant override support
- Frontend: variant list, comparison view, create/edit/clone forms,
activate/delete actions on Agents page
- Tests: API tests + 5 property-based tests (single-active invariant,
clone preservation, config resolution, slug determinism, update idempotence)
- Spec files for agent-variants feature
2026-04-17 05:15:42 +00:00
Celes Renata
0f06cf8971
docs: update README, runbook, and steering files for today's changes
...
- README: added AI agent management section, updated paper trading
description (no manual capital controls, broker-synced reset)
- Steering: migration numbers updated to 027 (next: 028), added
trading engine endpoint, ruff pinning and isort config notes
- Runbook: already had reset/Alpaca sections from earlier commits
2026-04-17 04:37:44 +00:00
Celes Renata
8050f4a03b
chore: mark all Phase 2 tasks (27-37) as complete
...
All 152 tasks across both phases are now marked complete:
- Phase 1 (1-26): pure computation modules, property tests, API, frontend, infra
- Phase 2 (27-37): live decision loop, stop-loss monitor, performance metrics,
risk tier scheduler, rebalancer, notification dispatch, backtest replay,
real DB connections, paper trading config, integration tests
2026-04-16 07:27:35 +00:00
Celes Renata
70bad7709a
feat: wire live decision loop and enable paper trading
...
Phase 2 of the autonomous trading engine:
- Replace start()/stop() stubs with real async implementations
- Decision loop: polls recommendations from PostgreSQL, deduplicates
via Redis, evaluates through the full pipeline, submits orders to
stonks:queue:broker_orders
- Stop-loss monitor: fetches prices from Polygon API, checks crossings,
submits immediate sell orders, safety sell after 15 min without data
- Performance loop: computes metrics every 5 min during market hours,
persists daily snapshots at market close
- Risk tier scheduler: evaluates daily at 16:00 ET, persists tier changes
- Rebalance scheduler: evaluates Monday 09:45 ET, respects circuit breaker
- Notification dispatch: SNS + Gmail with rate limiting and retry
- Backtest replay: fetches historical data, simulates decisions, persists
- Real asyncpg/redis connections in FastAPI lifespan (graceful degradation)
- Migration 019: enable paper trading with conservative tier, 5 cap
- Added max_open_positions to TradingConfig with env var loading
- Phase 2 tasks added to autonomous-trading-engine spec
2026-04-15 20:52:28 +00:00
Celes Renata
4ffde8cc06
feat: autonomous trading engine — full implementation
...
- Database migration 018 with 13 tables for trading engine state
- Trading engine service (services/trading/) with 12 pure computation modules:
position sizer, stop-loss manager, reserve pool, circuit breaker,
risk tier controller, correlation matrix, tax lots, trading window,
gradual entry, notifications, micro-trading, backtester
- Core TradingEngine with pre-trade evaluation pipeline and integration wiring
- FastAPI HTTP service with 14 endpoints (health, config, decisions, metrics, backtest)
- Performance tracker with Sharpe ratio, drawdown, profit factor computation
- 194 Python tests (165 property-based + 29 integration)
- Frontend: 13 TanStack Query hooks, 7 dashboard panels, tabbed Trading Engine page
- Helm chart entry, network policy, nginx proxy, ingress for trading-engine
- Shared infrastructure: enums, Redis keys, TradingConfig in AppConfig
2026-04-15 16:12:22 +00:00
Celes Renata
b0fc207c1a
docs: update steering docs with competitive layer, 50 companies, deployment lessons
2026-04-14 23:27:52 +00:00
Celes Renata
f7a11d14ea
feat: competitive intelligence & historical pattern matching layer
2026-04-14 19:42:48 +00:00
Celes Renata
4f2f113cda
phase 17: fix text[]/varchar[] type mismatch in coverage-gaps SQL
2026-04-12 04:15:00 -07:00
Celes Renata
d16e15c885
phase 17: quote reserved word 'window' in all SQL queries across recommendation worker and query API
2026-04-12 03:45:51 -07:00
Celes Renata
019eaa40d7
phase 17: fix datetime JSON serialization in aggregation worker market_context
2026-04-12 03:31:32 -07:00
Celes Renata
264b83ea56
phase 17: fix Polygon article_url and published_utc field mapping in metadata persistence
2026-04-12 02:58:30 -07:00
Celes Renata
f2b9d6c00a
phase 17: fix scheduler config parsing, worker entry points, and seed data for Polygon sources
2026-04-12 02:45:37 -07:00
Celes Renata
1410d324b7
phase 17: add vertical slice tasks for live pipeline activation
2026-04-11 20:43:47 -07:00
Celes Renata
37d5f9b01c
update steering docs and hooks for current project state
2026-04-11 20:41:57 -07:00
Celes Renata
1fcb79503e
phase 16: fix TS strict mode errors, node 24, update steering docs
2026-04-11 16:35:50 -07:00
Celes Renata
faccb0b8db
phase 16: React dashboard with full platform control and analytics
2026-04-11 16:19:46 -07:00
Celes Renata
25e0e386b7
spec: add frontend dashboard requirements, design, and tasks (phase 16)
2026-04-11 14:46:30 -07:00
Celes Renata
e7b2a5e67f
phase 15: helm deployment complete, runbook, trino/superset fixes
2026-04-11 14:27:47 -07:00
Celes Renata
273a86e2bd
fix: risk engine command points to services.risk.app, redis password, window quoting
2026-04-11 14:15:47 -07:00
Celes Renata
7524aa5f2c
phase 15: helm chart for stonks-oracle deployment
2026-04-11 12:21:49 -07:00
Celes Renata
109440c91e
phase 15: fix ruff lint errors across services
2026-04-11 12:10:01 -07:00
Celes Renata
ce10afa034
phase 14-15: docker build validation and helm deployment
2026-04-11 11:59:45 -07:00
Celes Renata
7394d241c9
phase 2: symbol registry validation, seed data, nix dev shell
...
- Enhanced CompanyCreate with ticker format validation (1-10 uppercase letters)
- Enhanced SourceCreate with pydantic validators for source_type, access_policy, config URLs
- Added /health endpoint to symbol registry
- Seed data: 10 companies (AAPL, MSFT, NVDA, AMZN, GOOGL, JPM, JNJ, XOM, TSLA, META)
- Seed sources: Alpha Vantage (market), NewsAPI (news), SEC EDGAR (filings), Alpaca (paper trading)
- Seed watchlist: 'Starter 10' with all companies and aliases
- Added flake.nix dev shell (nixos-25.11) with Python 3.12, ruff, pytest, kubectl, helm
- 30 passing tests, lint clean, Docker build verified
2026-04-11 03:41:41 -07:00
Celes Renata
ebea70573b
phase 0+1: project scaffold, k8s manifests, CI pipeline, steering, hooks, tests
...
- Repository structure for all services, infra, lakehouse, dashboards
- K8s manifests targeting stonks-oracle namespace with GHCR images
- Ingress via Traefik with ca-issuer TLS for internal services
- ConfigMap wired to existing cluster services (pg, redis, minio, ollama)
- GitHub Actions workflow for lint, test, multi-service container builds
- Dockerfile with build-arg CMD per service
- Makefile for local build/push/deploy
- Steering rules for TDD workflow, K8s conventions, project context
- Agent hooks for lint-on-save, test-on-save, k8s-validate, phase-commit
- Ruff linter config, all lint issues fixed
- 14 passing tests for schemas, config, redis keys
- PostgreSQL migrations, Trino catalogs, Superset config, MinIO lifecycle
2026-04-11 03:25:08 -07:00