TradingAgents/tradingagents
Andrew Kaszubski 6e52e4190d feat(backtest): add BacktestEngine with slippage and commission models - Issue #42 (57 tests)
Implements comprehensive backtesting framework:
- OrderSide, OrderType, FillStatus enums
- OHLCV bar data and Signal dataclasses
- BacktestConfig, BacktestPosition, BacktestTrade, BacktestResult
- BacktestSnapshot for portfolio tracking over time
- BacktestEngine main class

Slippage Models:
- NoSlippage: Zero slippage (ideal execution)
- FixedSlippage: Fixed amount per share
- PercentageSlippage: Percentage of price
- VolumeSlippage: Volume-impact model with participation ratio

Commission Models:
- NoCommission: Zero commission
- FixedCommission: Fixed per trade
- PerShareCommission: Per share with min/max
- PercentageCommission: Percentage of trade value
- TieredCommission: Tiered by trade value thresholds

Features:
- Historical price data replay with date filtering
- Multi-symbol portfolio support
- Automatic position sizing (equal weight)
- Buy/sell signal execution with slippage
- Cash and position tracking
- Shorting support (configurable)
- Max position percentage limits
- Minimum trade value enforcement
- Strategy callback for dynamic signals
- Portfolio snapshots at each timestamp
- Drawdown tracking with peak detection
- Sharpe and Sortino ratio calculation
- Win rate, profit factor, avg trade P&L
- Total commission and slippage tracking

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 22:55:18 +11:00
..
agents feat(memory): add memory integration for agent prompts - Fixes #21 2025-12-26 20:40:21 +11:00
alerts feat(alerts): add SMS channel with Twilio integration - Issue #41 (59 tests) 2025-12-26 22:48:00 +11:00
api feat(db): add Trade model with CGT tracking and Australian FY support (#6) - TradeSide/TradeStatus/TradeOrderType enums, 50% discount for >12mo holdings, multi-currency FX, 87 tests 2025-12-26 14:46:06 +11:00
backtest feat(backtest): add BacktestEngine with slippage and commission models - Issue #42 (57 tests) 2025-12-26 22:55:18 +11:00
dataflows feat(dataflows): add data caching layer with rate limit awareness - Fixes #12 2025-12-26 16:51:48 +11:00
execution feat(execution): add Risk Controls for pre-trade validation - Issue #28 (45 tests) 2025-12-26 21:29:14 +11:00
graph feat(graph): integrate new analysts into workflow - Fixes #17 2025-12-26 20:11:28 +11:00
memory feat(memory): add memory integration for agent prompts - Fixes #21 2025-12-26 20:40:21 +11:00
portfolio feat(portfolio): add Australian CGT Calculator with 50% discount - Issue #32 (66 tests) 2025-12-26 21:53:27 +11:00
simulation feat(simulation): add Economic Conditions for regime tagging and evaluation - Issue #35 (53 tests) 2025-12-26 22:13:34 +11:00
spektiv feat(portfolio): add Portfolio State for holdings and mark-to-market - Issue #29 (68 tests) 2025-12-26 21:37:17 +11:00
strategy feat(strategy): add Strategy Executor for end-to-end orchestration - Issue #37 (37 tests) 2025-12-26 22:29:20 +11:00
utils feat(tests): add UAT and evaluation tests for agent outputs - Fixes #53 2025-12-26 11:38:37 +11:00
default_config.py feat(llm): add DeepSeek provider and HuggingFace embedding fallback (Issue #41) 2025-12-26 11:07:48 +11:00