From dbf3b758fee3866538eef22a3554789355d8c95e Mon Sep 17 00:00:00 2001 From: KienVT9 Date: Tue, 8 Jul 2025 18:03:45 +0700 Subject: [PATCH] update --- src/schedule/candleAnalysisSchedule.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/schedule/candleAnalysisSchedule.ts b/src/schedule/candleAnalysisSchedule.ts index b65e46e..7f1a5b4 100644 --- a/src/schedule/candleAnalysisSchedule.ts +++ b/src/schedule/candleAnalysisSchedule.ts @@ -10,7 +10,6 @@ async function analyzeCandlesJob(symbol: string, interval: KlineIntervalV3) { // TODO: Lấy client thật nếu cần const candles = await bybitService.getCandles({ symbol, interval, category: 'linear', limit: 200 }); const analysis = indicatorService.analyze(candles); - console.log(`[${new Date().toISOString()}] Phân tích nến ${symbol} ${interval}:`, analysis); await sendLarkMessage('oc_f9b2e8f0309ecab0c94e3e134b0ddd29', JSON.stringify(analysis)); // Có thể gửi kết quả qua Lark, lưu DB, ... }