From b511211f597ff2fd6fba1074ba395ba8feed4c18 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Thu, 20 Nov 2025 16:35:09 +0100 Subject: [PATCH] fix: Allow manual Telegram trades through timeframe filter **BUG:** Telegram 'short sol' blocked by multi-timeframe data collection filter - Filter checked 'timeframe !== 5' which blocked 'manual' timeframe - Manual trades from Telegram should execute, not be saved for analysis **FIX:** Updated condition to 'timeframe !== 5 && timeframe !== manual' - Allows both 5min TradingView signals AND manual Telegram trades - Only blocks 15min/1H/4H/Daily for data collection **FILES:** app/api/trading/execute/route.ts line 114 **DEPLOYED:** Nov 20, 2025 15:42 CET --- app/api/trading/execute/route.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/api/trading/execute/route.ts b/app/api/trading/execute/route.ts index 9b9f270..60eacf7 100644 --- a/app/api/trading/execute/route.ts +++ b/app/api/trading/execute/route.ts @@ -107,9 +107,10 @@ export async function POST(request: NextRequest): Promise