fix(decision+trader): limit candidate coins & fix news collection

## Changes

### 1. decision/engine.go
- Fix calculateMaxCandidates to enforce proper limits (was returning all candidates)
- Dynamic limits based on position count:
  * 0 positions: max 30 candidates
  * 1 position: max 25 candidates
  * 2 positions: max 20 candidates
  * 3+ positions: max 15 candidates
- Prevents Prompt bloat when users configure many coins

### 2. trader/auto_trader.go
- Fix news collection to use actual positions + candidates (was hardcoded to BTC only)
- Add extractNewsSymbols() helper function
- Collect news for:
  * All current positions (highest priority)
  * Top 5 candidate coins
  * Always include BTC (market indicator)
  * Max 10 coins total (avoid excessive API calls)
- Properly convert symbols for news API (lowercase, remove USDT suffix)

## Impact
- Prevents excessive market data fetching
- Makes news feature actually useful (was only fetching BTC news)
- Better resource utilization

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ZhouYongyou
2025-11-05 00:23:04 +08:00
parent aa63298532
commit f1e981b207
2 changed files with 80 additions and 8 deletions

View File

@@ -222,10 +222,31 @@ func fetchMarketDataForContext(ctx *Context) error {
// calculateMaxCandidates 根据账户状态计算需要分析的候选币种数量
func calculateMaxCandidates(ctx *Context) int {
// 直接返回候选池的全部币种数量
// 因为候选池已经在 auto_trader.go 中筛选过了
// 固定分析前20个评分最高的币种来自AI500
return len(ctx.CandidateCoins)
// ⚠️ 重要:限制候选币种数量,避免 Prompt 过大
// 根据持仓数量动态调整:持仓越少,可以分析更多候选币
const (
maxCandidatesWhenEmpty = 30 // 无持仓时最多分析30个候选币
maxCandidatesWhenHolding1 = 25 // 持仓1个时最多分析25个候选币
maxCandidatesWhenHolding2 = 20 // 持仓2个时最多分析20个候选币
maxCandidatesWhenHolding3 = 15 // 持仓3个时最多分析15个候选币避免 Prompt 过大)
)
positionCount := len(ctx.Positions)
var maxCandidates int
switch positionCount {
case 0:
maxCandidates = maxCandidatesWhenEmpty
case 1:
maxCandidates = maxCandidatesWhenHolding1
case 2:
maxCandidates = maxCandidatesWhenHolding2
default: // 3+ 持仓
maxCandidates = maxCandidatesWhenHolding3
}
// 返回实际候选币数量和上限中的较小值
return min(len(ctx.CandidateCoins), maxCandidates)
}
// buildSystemPromptWithCustom 构建包含自定义内容的 System Prompt