Clean up debug prints that were added during troubleshooting of hyperparameter parsing issues.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implement smarter order management logic to avoid constantly cancelling and recreating orders:
- Only cancel orders when price differs by >0.5 cents or size differs by >10%
- Keep existing orders if changes are minor to reduce unnecessary market activity
- Add detailed logging to show when orders are kept vs cancelled
This should resolve the issue where orders were being cancelled and recreated repeatedly.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add max_size support to trading logic, defaulting to trade_size
- Continue quoting trade_size amounts until max_size is reached
- Implement progressive exit strategy: sell trade_size increments when at max_size
- Track both token positions for better exposure management
- Update buy conditions to use max_size instead of 0.9 * trade_size
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>