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, ... }