Disable smart validation queue - not active with Q≥95 strategy
This commit is contained in:
@@ -478,8 +478,9 @@ export async function POST(request: NextRequest): Promise<NextResponse<RiskCheck
|
||||
const currentPrice = await getCurrentPrice(body.symbol, fallbackPrice)
|
||||
|
||||
// CRITICAL FIX (Dec 12, 2025): Smart validation integration
|
||||
// DISABLED (Dec 18, 2025): Validation queue inactive with Q≥95 strategy
|
||||
// Check if signal quality is in validation range (50-89)
|
||||
const isInValidationRange = qualityScore.score >= 50 && qualityScore.score < 90
|
||||
const isInValidationRange = false // qualityScore.score >= 50 && qualityScore.score < 90
|
||||
|
||||
// Save blocked signal to database for future analysis
|
||||
if (currentPrice > 0) {
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user