19 lines
757 B
Markdown
19 lines
757 B
Markdown
# DeltaForge MVP Architectural Guide
|
|
|
|
Overview
|
|
- Minimal, auditable cross-venue hedging engine skeleton for two assets across two venues.
|
|
- Core DSL sketches, two starter adapters (equity_feed, options_feed), a lightweight curator, a toy execution engine, and a deterministic backtester.
|
|
- Tests validate end-to-end flow and deterministic replay.
|
|
|
|
Usage & Testing
|
|
- Run tests via: bash test.sh
|
|
- Packaging: python3 -m build should succeed to validate metadata and directory structure.
|
|
|
|
Contributing
|
|
- Follow the MVP scope. Implement small, well-scoped changes with clear tests.
|
|
- Avoid broad refactors unless necessary for new features.
|
|
|
|
Branching & PRs
|
|
- Use feature branches; keep commits small and well-described.
|
|
- Ensure tests pass before opening PRs.
|