mirror of
https://github.com/BrentNeale1/fx-quant.git
synced 2026-07-28 19:07:44 +00:00
212f581d01
- Add Flask dashboard with status, config editor, logs, kill switch, and backtest results pages with monthly P&L breakdowns - Add historical_loader.py for paginated OANDA candle fetching (1yr+) - Update backtester to $100k starting equity, monthly P&L computation, and JSON summary output for dashboard display - Update config to EUR_USD only on M5/M15 with SMA 21/50 strategy - Add backtest.html template with performance metrics and bar charts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
526 B
YAML
26 lines
526 B
YAML
services:
|
|
fx-quant:
|
|
build: .
|
|
container_name: fx-quant
|
|
env_file:
|
|
- config/.env
|
|
volumes:
|
|
- ./config:/app/config
|
|
- ./logs:/app/logs
|
|
- ./models:/app/models
|
|
restart: unless-stopped
|
|
|
|
dashboard:
|
|
build: .
|
|
container_name: fx-quant-dashboard
|
|
command: python src/dashboard.py
|
|
env_file:
|
|
- config/.env
|
|
volumes:
|
|
- ./config:/app/config
|
|
- ./logs:/app/logs:ro
|
|
- ./templates:/app/templates:ro
|
|
ports:
|
|
- "5000:5000"
|
|
restart: unless-stopped
|