Commit Graph

4 Commits

Author SHA1 Message Date
nicolasakf cce9241c8d Enhance data processing and utility functions
- Updated `process_price_change` to accept an optional `asset_id` parameter for better asset validation.
- Modified `process_data` to ensure `json_datas` is always a list and to pass `asset_id` when available.
- Added checks in `update_markets` to ensure the 'multiplier' column exists and fill NaN values with empty strings.
- Refactored multiplier application in `get_buy_sell_amount` to use `row.get()` for safer access.
2026-01-05 22:02:48 -03:00
warproxxx fa2c3eff97 Fix TypeError in market data processing when prices are None
Handle None values returned from find_best_price_with_size() to prevent arithmetic operations on NoneType. Added null checks for:
- Mid price calculation
- Token2 price transformations (1-x operations)
- Bid/ask sum calculations

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-22 10:22:31 -07:00
warproxxx 8456697577 Implement progressive position sizing with max_size parameter
- 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>
2025-06-22 09:38:27 -07:00
warproxxx 8e500d9437 Repo is ready 2025-03-31 12:16:51 -04:00