diff --git a/src/main/kotlin/ui/IntegratedOrderSection.kt b/src/main/kotlin/ui/IntegratedOrderSection.kt index 1fdd362..173fb7d 100644 --- a/src/main/kotlin/ui/IntegratedOrderSection.kt +++ b/src/main/kotlin/ui/IntegratedOrderSection.kt @@ -167,7 +167,7 @@ fun IntegratedOrderSection( (completeTradingDecision.safePossible() * weights["safe"]!!) // 3. 매수 결정 문턱값 (예: 70점 이상이면 매수 가능) - val MIN_PURCHASE_SCORE = 70.0 + val MIN_PURCHASE_SCORE = 68.0 val HIGH_QUALITY_SCORE = 85.0 // 강력 추천 기준 if (totalScore >= MIN_PURCHASE_SCORE && completeTradingDecision.confidence > MIN_CONFIDENCE) {