From 96f259aed66603269e1318e13f0032987fd70788 Mon Sep 17 00:00:00 2001 From: cbazza Date: Fri, 23 Jan 2026 08:24:52 +0100 Subject: [PATCH] fix: Add signal_info_override and confidence_override to execute_trade_v2_adaptive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PROBLEM: - execute_trade_v2_adaptive didn't accept pre-calculated signal_info - Function did its own signal analysis internally - Trying to pass entry_signal/signal_info caused parameter errors SOLUTION: - Added optional parameters: signal_info_override, confidence_override - If provided, function uses pre-calculated values - If not provided, function calculates values itself (backward compatible) CHANGES: - Cell 28: Added new parameters to function signature - Cell 28: Use signal_info_override if provided - Cell 28: Use confidence_override if provided - Cells 85, 90: Updated execute_trade calls to use new parameters - activate_enhanced_scoring.py: Updated to use new parameters Now enhanced_trading_check_wrapper can pass its hybrid confidence score to execute_trade_v2_adaptive properly. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- ...Bot_V1.6_Adaptive_Complete_CORRECTED.ipynb | 60841 +--------------- activate_enhanced_scoring.py | 10 +- dynamic_thresholds.json | 4 +- trade_performance_v16_XAUUSD_202601.json | 27 + 4 files changed, 190 insertions(+), 60692 deletions(-) diff --git a/TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb b/TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb index 9def980..1737332 100644 --- a/TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb +++ b/TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb @@ -45,22 +45,9 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ“¦ Installing python-telegram-bot...\n", - "\n", - "βœ… python-telegram-bot installed!\n", - "βœ… Version: 22.5\n", - "\n", - "🎯 Now restart kernel and run Cell 17 again!\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INSTALL TELEGRAM DEPENDENCIES (Run FIRST!)\n", @@ -86,17 +73,9 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… All imports successful - V1.6 Adaptive Complete (CORRECTED)\n" - ] - } - ], + "outputs": [], "source": [ "# Standard Imports\n", "import pandas as pd\n", @@ -127,17 +106,9 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Infrastructure modules loaded\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INFRASTRUCTURE IMPORTS (V1.8)\n", @@ -164,23 +135,9 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… TRADING CONFIGURATION LOADED\n", - "\n", - "πŸ“Š Lot Sizing: 0.1 - 0.2 lots\n", - "⚠️ Max Risk: 2.0% per trade\n", - "🎯 Confidence Threshold: 70%\n", - "πŸ›‘οΈ News Filter: ENABLED\n", - "🌍 Primary Symbol: XAUUSD\n" - ] - } - ], + "outputs": [], "source": [ "# ============================================================================\n", "# CENTRALIZED TRADING CONFIGURATION\n", @@ -290,17 +247,9 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Adaptive Rhythm Manager defined\n" - ] - } - ], + "outputs": [], "source": [ "class AdaptiveRhythmManager:\n", " \"\"\"\n", @@ -456,37 +405,9 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Login successful: True\n", - "Symbol: XAUUSD\n", - "Strategy: TradingBot_V1.6\n", - "Max Positions: 1\n", - "Version: V1.6 COMPLETE - Adaptive + Full Features! πŸš€πŸ›‘οΈβš‘\n", - "\n", - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 18:38:54 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 25.15 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "# MT5 Login\n", "mt.initialize()\n", @@ -513,23 +434,9 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”§ Initializing Infrastructure...\n", - "βœ… Database initialized: trading_bot.db\n", - "βœ… Telegram Bot connected: @Xausd_digger_bot\n", - "βœ… Telegram notifications enabled\n", - "βœ… Infrastructure ready!\n", - " Database: βœ…\n", - " Telegram: βœ…\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INITIALIZE INFRASTRUCTURE (V1.8)\n", @@ -563,40 +470,9 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:38:55,696 - INFO - 🎯 Advanced Position Manager initialized\n", - "2026-01-22 18:38:55,698 - INFO - Adaptive Sizing: βœ…\n", - "2026-01-22 18:38:55,699 - INFO - Trailing Stop: βœ…\n", - "2026-01-22 18:38:55,700 - INFO - Partial TP: βœ…\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "🎯 Initializing Advanced Position Management...\n", - "βœ… Advanced Position Management activated!\n", - " πŸ“Š Adaptive Position Sizing: ACTIVE\n", - " β€’ High Confidence (β‰₯80%): 1.5x risk\n", - " β€’ Medium Confidence (β‰₯70%): 1.0x risk\n", - " β€’ Low Confidence (<70%): 0.5x risk\n", - "\n", - " πŸ“ˆ Trailing Stop-Loss: ACTIVE\n", - " β€’ Break-Even at 50% progress to TP\n", - " β€’ Lock 50% profit at 75% progress\n", - "\n", - " 🎯 Partial Take Profit: ACTIVE\n", - " β€’ TP1 at 1.5R (close 50%)\n", - " β€’ TP2 at 2.5R (let 50% run)\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# ADVANCED POSITION MANAGEMENT SETUP\n", @@ -632,24 +508,9 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”§ Initializing Position Monitor...\n", - "βœ… Position Monitor ready!\n", - " Will check for closed positions every minute\n", - " Closed trades will be automatically logged with:\n", - " β€’ Exit price & time\n", - " β€’ Profit/Loss calculation\n", - " β€’ Exit reason (TP/SL/Manual)\n", - " β€’ Telegram notification\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# POSITION MONITOR SETUP (V1.8)\n", @@ -680,17 +541,9 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position Control functions defined (COMPLETE with close function!)\n" - ] - } - ], + "outputs": [], "source": [ "def check_existing_positions(symbol=\"XAUUSD\", strategy_name=\"TradingBot_V1.6\"):\n", " \"\"\"\n", @@ -812,17 +665,9 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Helper functions defined (with robust MT5 retry logic)\n" - ] - } - ], + "outputs": [], "source": [ "import time\n", "\n", @@ -936,17 +781,9 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Market analysis functions defined (with RELAXED thresholds)\n" - ] - } - ], + "outputs": [], "source": [ "def detect_market_regime(df, lookback=50):\n", " \"\"\"Market Regime Detection\"\"\"\n", @@ -1051,17 +888,9 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Enhanced trend wrapper ready (retries handled in get_rates)\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# SIMPLIFIED: get_rates now handles retries\n", @@ -1085,17 +914,9 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… V1.6 Adaptive Complete Top-Down Analysis defined\n" - ] - } - ], + "outputs": [], "source": [ "def extended_top_down_v2_adaptive(symbol=\"XAUUSD\", lookback=150):\n", " \"\"\"\n", @@ -1277,17 +1098,9 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Entry timing functions defined (DISABLED in Relaxed mode)\n" - ] - } - ], + "outputs": [], "source": [ "def check_pullback_entry(symbol, signal_info, timeframe=\"M5\"):\n", " \"\"\"\n", @@ -1337,7 +1150,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -1390,20 +1203,9 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.01" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "#mt.symbol_info(symbol).volume_min\n", "mt.symbol_info(symbol).volume_step" @@ -1411,17 +1213,9 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… V1.6 Adaptive Complete Execute Trade defined\n" - ] - } - ], + "outputs": [], "source": [ "def execute_trade_v2_adaptive(\n", " symbol=None,\n", @@ -1433,7 +1227,10 @@ " use_pullback_entry=False, # DISABLED\n", " max_positions=None,\n", " strategy_name=\"TradingBot_V1.6\",\n", - " debug=True\n", + " debug=True,\n", + " # Enhanced Scoring Overrides\n", + " signal_info_override=None,\n", + " confidence_override=None\n", "):\n", " \"\"\"\n", " V1.6 Adaptive Complete Trade-AusfΓΌhrung:\n", @@ -1471,14 +1268,19 @@ " \n", " print(f\"βœ… Position-Check OK: {position_info['count']}/{max_positions}\")\n", " \n", - " # SCHRITT 2: Signal Analysis\n", - " signal_info = extended_top_down_v2_adaptive(symbol)\n", - " if signal_info is None:\n", - " print(\"❌ Signal-Analyse fehlgeschlagen\")\n", - " return None\n", + " # SCHRITT 2: Signal Analysis (use override if provided)\n", + " if signal_info_override is not None:\n", + " signal_info = signal_info_override\n", + " print(\"πŸ“Š Using pre-calculated signal info (Enhanced Scoring)\")\n", + " else:\n", + " signal_info = extended_top_down_v2_adaptive(symbol)\n", + " if signal_info is None:\n", + " print(\"❌ Signal-Analyse fehlgeschlagen\")\n", + " return None\n", " \n", " entry_signal = signal_info[\"entry_signal\"]\n", - " confidence = signal_info[\"confidence\"]\n", + " # Use override confidence if provided (from Enhanced Scoring)\n", + " confidence = confidence_override if confidence_override is not None else signal_info[\"confidence\"]\n", " adaptive_threshold = signal_info[\"adaptive_threshold\"]\n", " signal_quality = signal_info[\"signal_quality\"]\n", " market_regime = signal_info[\"market_regime\"]\n", @@ -1666,30 +1468,9 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Original execute_trade_v2_adaptive gespeichert\n", - "βœ… SESSION-SPECIFIC CONFIDENCE FILTER AKTIVIERT\n", - "------------------------------------------------------------\n", - "Thresholds:\n", - " Asian: >= 95% Confidence (97.8% WR)\n", - " NY: >= 97% Confidence (verbessert von 43% auf 56% WR)\n", - " London: Blockiert\n", - " Overlap: Blockiert\n", - "\n", - "Erwartete Verbesserung:\n", - " - NY Win-Rate: 43.3% β†’ 56.5%\n", - " - Profit: +$237/Monat in NY Session\n", - " - Gesamt: +$292/Monat\n", - "------------------------------------------------------------\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# SESSION-SPECIFIC CONFIDENCE FILTER (26.12.2025)\n", @@ -1724,19 +1505,9 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ“¦ Installing python-telegram-bot...\n", - "βœ… python-telegram-bot installed successfully!\n", - "βœ… telegram module version: 22.5\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INSTALL TELEGRAM BOT DEPENDENCIES\n", @@ -1800,30 +1571,9 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸš€ Starting Telegram Bot Commander...\n", - "βœ… Telegram Bot Commander initialized\n", - "πŸ“± Bot Token: 7783303065:AAHVVvwWG...\n", - "πŸ‘€ Chat ID: 8039713369\n", - "βœ… Telegram Bot running in background\n", - "βœ… Telegram Bot is running in background!\n", - "πŸ“± Available Commands:\n", - " /status - Bot status & positions\n", - " /pause - Pause trading\n", - " /resume - Resume trading\n", - " /close - Close all positions (requires confirm)\n", - " /balance - Account balance\n", - " /stats - Performance stats\n", - " /help - Show help\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TELEGRAM BOT COMMANDS - Background Service\n", @@ -1889,30 +1639,9 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Original execute_trade_v2_adaptive saved\n", - "βœ… NEWS FILTER ACTIVATED\n", - "------------------------------------------------------------\n", - "Protection: Trading blocked 30min before/after HIGH-IMPACT news\n", - "Events monitored:\n", - " β€’ NFP (Non-Farm Payrolls)\n", - " β€’ CPI (Consumer Price Index)\n", - " β€’ FOMC (Fed Interest Rate Decision)\n", - " β€’ Retail Sales, PMI, GDP\n", - " β€’ Other high-impact USD/EUR/GBP events\n", - "------------------------------------------------------------\n", - "\n", - "πŸ“ To add events: Edit news_events_manual.json\n", - "πŸ’‘ Recommended: Weekly check ForexFactory calendar\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# NEWS FILTER INTEGRATION\n", @@ -1946,18 +1675,9 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… execute_trade_v2_adaptive wrapped with Telegram control\n", - " Trading can now be paused/resumed via /pause and /resume\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INTEGRATION: Bot Controller mit execute_trade\n", @@ -2037,7 +1757,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -2116,26 +1836,9 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Multi-Timeframe Ranging Filter aktiviert!\n", - " PrΓΌft: H1, H4, D1\n", - " Gewichtung: D1 (3x) > H4 (2x) > H1 (1x)\n", - " Threshold: ADX > 25\n", - "\n", - "πŸ“Š Entscheidungslogik:\n", - " 1. D1 ADX > 30 β†’ ERLAUBT (starker Trend)\n", - " 2. H4+D1 beide > 25 β†’ ERLAUBT (bestΓ€tigter Trend)\n", - " 3. Weighted ADX > 25 β†’ ERLAUBT (Gesamtbild)\n", - " 4. Sonst β†’ BLOCKIERT (Ranging)\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# 🎯 MULTI-TIMEFRAME RANGING FILTER (20.12.2025)\n", @@ -2167,40 +1870,9 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ§ͺ TESTING MULTI-TIMEFRAME REGIME FILTER\n", - "======================================================================\n", - "\n", - "\n", - "πŸ“Š MULTI-TIMEFRAME REGIME CHECK\n", - "============================================================\n", - " H1: ADX 19.2 (weight 1.0x) πŸ“Š RANGE\n", - " H4: ADX 33.7 (weight 2.0x) βœ… TREND\n", - " D1: ADX 34.7 (weight 3.0x) βœ… TREND\n", - "\n", - " Weighted ADX: 31.8\n", - " Threshold: 25\n", - "\n", - " βœ… ALLOWED: TRENDING\n", - " Reason: D1 stark trending (ADX 34.7 > 30) β†’ Trend dominiert\n", - "============================================================\n", - "\n", - "πŸ“‹ ERGEBNIS:\n", - " Trading Allowed: True\n", - " Regime: trending\n", - " Weighted ADX: 31.8\n", - "\n", - "βœ… FILTER ERLAUBT TRADES!\n", - " β†’ Bot wird bei nΓ€chstem Scheduler-Run traden (wenn andere Bedingungen passen)\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# πŸ§ͺ TEST: Multi-Timeframe Regime Filter\n", @@ -2233,17 +1905,9 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "⚠️ check_open_positions not found - skipping Position Monitor fix\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# πŸ”₯ FIX #2: POSITION MONITOR DB LOGGING (09.12.2025)\n", @@ -2314,17 +1978,9 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Performance Monitoring functions defined (with adaptive features)\n" - ] - } - ], + "outputs": [], "source": [ "def log_trade_performance_adaptive(signal_info, order_result):\n", " \"\"\"\n", @@ -2445,18 +2101,9 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”§ Force resuming trading after Ranging Filter deployment...\n", - "⚠️ drawdown_protection not initialized yet\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# FORCE RESUME TRADING (V2.2 FIX)\n", @@ -2495,34 +2142,9 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”§ Setting up Trading Check...\n", - "βœ… Session Filter aktiviert!\n", - " Deaktivierte Sessions:\n", - " β€’ ASIAN : βœ… AKTIV\n", - " β€’ LONDON : ❌ DEAKTIVIERT\n", - " β€’ OVERLAP : ❌ DEAKTIVIERT\n", - " β€’ NY : βœ… AKTIV\n", - "\n", - "πŸ›‘οΈ Drawdown Protection aktiviert!\n", - " β€’ Daily Loss Limit: $100\n", - " β€’ Weekly Loss Limit: $300\n", - " β€’ Monthly Loss Limit: $800\n", - " β€’ Max Consecutive Losses: 5\n", - " β€’ Cooldown: 24h\n", - "\n", - "βœ… Trading Check ist jetzt vollstΓ€ndig geschΓΌtzt!\n", - " πŸ“Š Session Filter: Aktiv\n", - " πŸ›‘οΈ Drawdown Protection: Aktiv\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TRADING CHECK: SESSION FILTER + DRAWDOWN PROTECTION\n", @@ -2572,24 +2194,9 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:25,565 - INFO - βœ… Trading resumed after: None\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Trading force-resumed (Ranging Filter deployed)\n" - ] - } - ], + "outputs": [], "source": [ "# Force resume after restart (V2.2 fix)\n", "drawdown_protection._resume_trading()\n", @@ -2598,7 +2205,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -2644,33 +2251,9 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βš™οΈ V1.6 Adaptive Complete Configuration:\n", - "\n", - "πŸ›‘οΈ Position Control:\n", - " Max Positions: 1\n", - " Strategy: TradingBot_V1.6\n", - "\n", - "πŸš€ Relaxed Parameters:\n", - " Base Confidence: 60%\n", - " Min ATR: 0.0008\n", - " Pullback Entry: False\n", - "\n", - "⚑ Adaptive Features:\n", - " Dynamic Intervals: 5/15/30 min\n", - " Session-aware: Yes\n", - " Volatility-based: Yes\n", - "\n", - "βœ… Configuration complete!\n" - ] - } - ], + "outputs": [], "source": [ "# ============================================================================\n", "# NOTE: This config is DEPRECATED - use TRADING_CONFIG in Cell 6 instead\n", @@ -2718,17 +2301,9 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Status monitoring function defined (COMPLETE with all features)\n" - ] - } - ], + "outputs": [], "source": [ "# βœ… KORRIGIERT: Umfassendes Status Monitoring (fehlte in V1.6)\n", "def check_adaptive_bot_status():\n", @@ -2812,60 +2387,9 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:26,597 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,600 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,602 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,603 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,633 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,636 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts\n", - "2026-01-22 18:39:26,638 - INFO - Added job \"create_protected_trading_check..protected_check\" to job store \"default\"\n", - "2026-01-22 18:39:26,639 - INFO - Added job \"print_status_report\" to job store \"default\"\n", - "2026-01-22 18:39:26,640 - INFO - Added job \"TradingInfrastructure.send_daily_report\" to job store \"default\"\n", - "2026-01-22 18:39:26,641 - INFO - Added job \"TradingInfrastructure.send_weekly_report\" to job store \"default\"\n", - "2026-01-22 18:39:26,642 - INFO - Added job \"PositionMonitor.check_open_positions\" to job store \"default\"\n", - "2026-01-22 18:39:26,643 - INFO - Added job \"\" to job store \"default\"\n", - "2026-01-22 18:39:26,643 - INFO - Scheduler started\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Scheduled reports added:\n", - " πŸ“Š Daily report: 22:00 UTC\n", - " πŸ“ˆ Weekly report: Sunday 23:00 UTC\n", - "βœ… Scheduled reports added:\n", - " πŸ“Š Daily report: 22:00 UTC\n", - " πŸ“ˆ Weekly report: Sunday 23:00 UTC\n", - "βœ… Position Monitor job added\n", - "βœ… Advanced Position Management job added\n", - "βœ… Command handlers registered\n", - "πŸš€ Starting Telegram Bot...\n", - "πŸ“± Send /help to see available commands\n", - "\n", - "βœ… Scheduler started!\n", - "\n", - "πŸ“‹ Active Jobs: 6\n", - " β€’ adaptive_trading_check\n", - " β€’ position_monitor\n", - " β€’ advanced_position_management\n", - " β€’ status_report\n", - " β€’ daily_report\n", - " β€’ weekly_report\n", - "\n", - "======================================================================\n", - "πŸš€ TradingBot V2.2 - All Systems Ready!\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# SETUP SCHEDULER (V1.6 ADAPTIVE COMPLETE)\n", @@ -2945,32 +2469,9 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ§ͺ TEST 1: Position Check\n", - "==================================================\n", - "\n", - "πŸ“Š POSITION SUMMARY fΓΌr XAUUSD (V1.6 Adaptive Complete)\n", - "============================================================\n", - "βœ… Keine aktiven Positionen - bereit fΓΌr neuen Trade\n" - ] - }, - { - "data": { - "text/plain": [ - "False" - ] - }, - "execution_count": 36, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# βœ… KORRIGIERT: Umfassende Testing Suite (fehlte in V1.6)\n", "\n", @@ -2982,55 +2483,9 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ§ͺ TEST 2: Adaptive Rhythm\n", - "==================================================\n", - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 18:39:27 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 25.15 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n", - "\n", - "Details:\n", - " Optimal Interval: 5 min\n", - " Session: ny\n", - " ATR: 25.15\n", - " Volatility Level: high\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:27,599 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/sendMessage \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:27,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getMe \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:39:27,641 - INFO - Application started\n" - ] - } - ], + "outputs": [], "source": [ "# Test 2: Adaptive Rhythm Status\n", "print(\"\\nπŸ§ͺ TEST 2: Adaptive Rhythm\")\n", @@ -3054,64 +2509,9 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:27,667 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/deleteWebhook \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Bot is running\n", - "\n", - "πŸ§ͺ TEST 3: Signal Analysis\n", - "==================================================\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.85 | 89.6659 | 9.78949 | 4893.05 |\n", - "| H4 | uptrend | 423.27 | 45.1922 | 2.86931 | 4893.06 |\n", - "| H1 | uptrend | 522.87 | 24.9925 | 1.96017 | 4893.06 |\n", - "| M30 | uptrend | 611.47 | 15.3397 | 1.40696 | 4893.06 |\n", - "| M15 | downtrend | 119.53 | 11.1676 | -0.20023 | 4893.06 |\n", - "| M5 | uptrend | 334.76 | 7.3478 | 0.368961 | 4893.06 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171359.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "🎯 SIGNAL SUMMARY:\n", - " Entry Signal: 1\n", - " Confidence: 97.81%\n", - " Threshold: 70%\n", - " Quality: EXCELLENT\n", - " Regime: RANGING\n", - " Adaptive Interval: 5 min\n", - " Session: NY\n", - "\n", - "βœ… TRADING SIGNAL: LONG\n" - ] - } - ], + "outputs": [], "source": [ "# Test 3: Signal Analysis\n", "print(\"\\nπŸ§ͺ TEST 3: Signal Analysis\")\n", @@ -3140,78 +2540,9 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ§ͺ TEST 4: Complete Bot Status\n", - "==================================================\n", - "\n", - "======================================================================\n", - "πŸ” V1.6 ADAPTIVE COMPLETE BOT STATUS\n", - "======================================================================\n", - "\n", - "πŸ“‘ SYSTEM STATUS:\n", - " MT5 Connection: βœ…\n", - " Scheduler Running: βœ…\n", - " Active Jobs: 6\n", - "\n", - "⚑ ADAPTIVE RHYTHM:\n", - " Current Interval: 5 min\n", - " Trading Session: NY\n", - " ATR (H1): 25.15\n", - " Volatility: HIGH\n", - "\n", - "πŸ›‘οΈ POSITION CONTROL:\n", - " Active Positions: 0/1\n", - " Trading Status: βœ… READY\n", - "\n", - "πŸ“Š CURRENT SIGNAL:\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.85 | 89.6659 | 9.78951 | 4893.12 |\n", - "| H4 | uptrend | 423.28 | 45.1922 | 2.86932 | 4893.12 |\n", - "| H1 | uptrend | 522.87 | 24.9925 | 1.96018 | 4893.12 |\n", - "| M30 | uptrend | 611.47 | 15.3397 | 1.40697 | 4893.12 |\n", - "| M15 | downtrend | 119.52 | 11.1676 | -0.200215 | 4893.12 |\n", - "| M5 | uptrend | 334.77 | 7.3478 | 0.368975 | 4893.12 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171361.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - " Signal: LONG\n", - " Confidence: 97.81%\n", - " Threshold: 70%\n", - " Quality: EXCELLENT\n", - " Regime: RANGING\n", - " Would Trade: βœ… YES\n", - "\n", - "πŸŽ‰ VERSION INFO:\n", - " Version: V1.6 Adaptive Complete (CORRECTED)\n", - " Features: Position Control + Relaxed + Adaptive Rhythm\n", - " Status: Production-Ready βœ…\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# Test 4: Complete Bot Status\n", "print(\"\\nπŸ§ͺ TEST 4: Complete Bot Status\")\n", @@ -3221,113 +2552,9 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ§ͺ TEST 5: Trade Execution (DRY RUN)\n", - "==================================================\n", - "\n", - "Testing trading logic without actual order...\n", - "\n", - "πŸ“Š MULTI-TIMEFRAME REGIME CHECK\n", - "============================================================\n", - " H1: ADX 19.2 (weight 1.0x) πŸ“Š RANGE\n", - " H4: ADX 33.7 (weight 2.0x) βœ… TREND\n", - " D1: ADX 34.7 (weight 3.0x) βœ… TREND\n", - "\n", - " Weighted ADX: 31.8\n", - " Threshold: 25\n", - "\n", - " βœ… ALLOWED: TRENDING\n", - " Reason: D1 stark trending (ADX 34.7 > 30) β†’ Trend dominiert\n", - "============================================================\n", - "\n", - "βœ… REGIME CHECK PASSED: TRENDING\n", - " Reason: D1 stark trending (ADX 34.7 > 30) β†’ Trend dominiert\n", - "\n", - "πŸ” POSITION CHECK fΓΌr XAUUSD (V1.6 Adaptive Complete)\n", - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:28,791 - INFO - πŸ“Š Adaptive Position Sizing:\n", - "2026-01-22 18:39:28,793 - INFO - Confidence: 97.8% (HIGH)\n", - "2026-01-22 18:39:28,794 - INFO - Base Risk: 2.0%\n", - "2026-01-22 18:39:28,795 - INFO - Multiplier: 1.5x\n", - "2026-01-22 18:39:28,797 - INFO - Adjusted Risk: 3.0%\n", - "2026-01-22 18:39:28,798 - INFO - πŸ’° Position Size: 0.10 lots\n", - "2026-01-22 18:39:28,800 - INFO - Risk Amount: $229.60\n", - "2026-01-22 18:39:28,801 - INFO - SL Distance: 99194.69 pips\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.85 | 89.6659 | 9.78951 | 4893.12 |\n", - "| H4 | uptrend | 423.28 | 45.1922 | 2.86932 | 4893.12 |\n", - "| H1 | uptrend | 522.87 | 24.9925 | 1.96018 | 4893.12 |\n", - "| M30 | uptrend | 611.47 | 15.3397 | 1.40697 | 4893.12 |\n", - "| M15 | downtrend | 119.52 | 11.1676 | -0.200215 | 4893.12 |\n", - "| M5 | uptrend | 334.77 | 7.3478 | 0.368975 | 4893.12 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171361.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸš€ V1.6 ADAPTIVE COMPLETE TRADE EXECUTION\n", - "Direction: LONG\n", - "Price: 4893.12000 | Volume: 0.10\n", - "SL: 4883.20053 | TP: 4917.91867\n", - "Confidence: 97.81% | Quality: EXCELLENT\n", - "Regime: RANGING\n", - "Adaptive Interval: 5 min\n", - "Session: NY\n", - "βœ… Trade erfolgreich! Ticket: 696946027\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:29,891 - INFO - πŸ“± Trade logged to DB + Telegram notification sent\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ“Š Positionen: 1\n", - "πŸ“Š Performance logged to trade_performance_v16_XAUUSD_202601.json\n", - "\n", - "βœ… Trade wΓΌrde ausgefΓΌhrt!\n" - ] - } - ], + "outputs": [], "source": [ "# Test 5: Trade Execution Test (DRY RUN)\n", "print(\"\\nπŸ§ͺ TEST 5: Trade Execution (DRY RUN)\")\n", @@ -3355,113 +2582,27 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[.protected_check)>,\n", - " ,\n", - " )>,\n", - " ,\n", - " ,\n", - " ]" - ] - }, - "execution_count": 41, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "scheduler.get_jobs()" ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š MULTI-TIMEFRAME REGIME CHECK\n", - "============================================================\n", - " H1: ADX 19.2 (weight 1.0x) πŸ“Š RANGE\n", - " H4: ADX 33.7 (weight 2.0x) βœ… TREND\n", - " D1: ADX 34.7 (weight 3.0x) βœ… TREND\n", - "\n", - " Weighted ADX: 31.8\n", - " Threshold: 25\n", - "\n", - " βœ… ALLOWED: TRENDING\n", - " Reason: D1 stark trending (ADX 34.7 > 30) β†’ Trend dominiert\n", - "============================================================\n", - "\n", - "βœ… REGIME CHECK PASSED: TRENDING\n", - " Reason: D1 stark trending (ADX 34.7 > 30) β†’ Trend dominiert\n", - "\n", - "πŸ” POSITION CHECK fΓΌr XAUUSD (V1.6 Adaptive Complete)\n", - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | πŸ”΄ -1.70\n" - ] - } - ], + "outputs": [], "source": [ "execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG)" ] }, { "cell_type": "code", - "execution_count": 43, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "======================================================================\n", - "πŸ”§ V1.6 ADAPTIVE COMPLETE - MANAGEMENT CONTROL PANEL\n", - "======================================================================\n", - "\n", - "πŸ“Š MONITORING:\n", - " 1. check_adaptive_bot_status() - Complete Status\n", - " 2. get_position_summary() - Position Overview\n", - " 3. print_status_report() - Adaptive Rhythm Status\n", - " 4. analyze_performance_adaptive() - Performance Analysis\n", - "\n", - "🎯 ANALYSIS:\n", - " 5. extended_top_down_v2_adaptive() - Signal Analysis\n", - " 6. rhythm_manager.calculate_optimal_interval() - Current Interval\n", - "\n", - "πŸ’Ό POSITION MANAGEMENT:\n", - " 7. close_existing_positions(force_close=True) - Close All Positions\n", - "\n", - "πŸš€ TRADING:\n", - " 8. execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG) - Manual Trade\n", - "\n", - "βš™οΈ SCHEDULER CONTROL:\n", - " 9. scheduler.get_jobs() - Show Active Jobs\n", - " 10. scheduler.pause() - Pause Scheduler\n", - " 11. scheduler.resume() - Resume Scheduler\n", - " 12. scheduler.shutdown() - Stop Scheduler\n", - "\n", - "πŸ”§ CONFIGURATION:\n", - " 13. ADAPTIVE_COMPLETE_CONFIG - View Config\n", - " 14. rhythm_manager.atr_thresholds - ATR Settings\n", - "\n", - "πŸ“ QUICK COMMANDS:\n", - " β€’ Status: check_adaptive_bot_status()\n", - " β€’ Close: close_existing_positions(symbol, strategy_name, force_close=True)\n", - " β€’ Stop: scheduler.shutdown()\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# βœ… KORRIGIERT: Management Control Panel (fehlte in V1.6)\n", "def show_adaptive_management_options():\n", @@ -3511,17 +2652,9 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ’‘ To close positions manually, uncomment the code above\n" - ] - } - ], + "outputs": [], "source": [ "# Optional: Close positions manually\n", "# UNCOMMENT to use:\n", @@ -3532,17 +2665,9 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ’‘ To adjust ATR thresholds, uncomment the code above\n" - ] - } - ], + "outputs": [], "source": [ "# Optional: ATR-Schwellenwerte anpassen\n", "# UNCOMMENT to use:\n", @@ -3558,26 +2683,9 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸŽ›οΈ SCHEDULER CONTROL\n", - "\n", - "πŸ’‘ To pause trading:\n", - "scheduler.pause()\n", - "\n", - "πŸ’‘ To resume trading:\n", - "scheduler.resume()\n", - "\n", - "πŸ’‘ To stop completely:\n", - "scheduler.shutdown()\n" - ] - } - ], + "outputs": [], "source": [ "# Scheduler Control\n", "print(\"πŸŽ›οΈ SCHEDULER CONTROL\")\n", @@ -3602,92 +2710,9 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "======================================================================\n", - "πŸ“ˆ TRADINGBOT V1.6 ADAPTIVE COMPLETE - SUMMARY\n", - "======================================================================\n", - "\n", - "πŸŽ‰ VERSION: V1.6 ADAPTIVE COMPLETE (CORRECTED & READY!)\n", - "\n", - "βœ… ALLE FEATURES INTEGRIERT:\n", - "\n", - "πŸ›‘οΈ Position Control (aus V1.5):\n", - " β€’ Maximal 1 Trade gleichzeitig\n", - " β€’ check_existing_positions()\n", - " β€’ get_position_summary()\n", - " β€’ close_existing_positions() βœ… KORRIGIERT!\n", - "\n", - "πŸš€ Relaxed Trading Parameters (aus V1.5):\n", - " β€’ 10-20% niedrigere Confidence-Schwellen\n", - " β€’ Disabled Pullback Entry\n", - " β€’ Relaxed Signal-Quality-Filter\n", - " β€’ Niedrigere Min Risk-Adjusted Strength (80)\n", - " β€’ Fixed 2/4 Timeframe Alignment\n", - "\n", - "⚑ Adaptive Rhythm (NEU in V1.6):\n", - " β€’ Adaptive Intervalle: 5/15/30 Minuten\n", - " β€’ VolatilitΓ€ts-basiert (ATR)\n", - " β€’ Session-abhΓ€ngig (Asian/London/NY/Overlap)\n", - " β€’ Intelligente Entscheidungs-Matrix\n", - "\n", - "πŸ“Š Monitoring & Management (aus V1.5, angepasst):\n", - " β€’ Performance Logging\n", - " β€’ Performance Analysis\n", - " β€’ Complete Status Monitoring βœ… KORRIGIERT!\n", - " β€’ Management Control Panel βœ… KORRIGIERT!\n", - "\n", - "πŸ€– Automation:\n", - " β€’ APScheduler Integration\n", - " β€’ Adaptive Trading Checks (jede Minute)\n", - " β€’ Status Reports (alle 30 Min)\n", - "\n", - "πŸ§ͺ Testing Suite (aus V1.5):\n", - " β€’ Position Tests βœ… KORRIGIERT!\n", - " β€’ Signal Analysis Tests βœ… KORRIGIERT!\n", - " β€’ Adaptive Rhythm Tests\n", - " β€’ Complete Status Tests βœ… KORRIGIERT!\n", - "\n", - "βš™οΈ Configuration:\n", - " β€’ ADAPTIVE_COMPLETE_CONFIG βœ… KORRIGIERT!\n", - " β€’ Zentrale Parameter-Verwaltung\n", - "\n", - "🎯 VORTEILE VON V1.6 ADAPTIVE COMPLETE:\n", - " βœ… Maximale Sicherheit (Position Control)\n", - " βœ… Maximale Gelegenheiten (Relaxed Parameters)\n", - " βœ… Maximale Effizienz (Adaptive Rhythm)\n", - " βœ… VollstΓ€ndige Kontrolle (Complete Management)\n", - " βœ… Production-Ready!\n", - "\n", - "πŸ“Š TYPISCHER 24H-ZYKLUS:\n", - " 00:00-08:00 (Asian) β†’ 15-30 min\n", - " 08:00-13:00 (London) β†’ 5-30 min\n", - " 13:00-16:00 (Overlap) β†’ 5-15 min πŸ”₯\n", - " 16:00-21:00 (NY) β†’ 5-30 min\n", - " 21:00-00:00 (After) β†’ 15-30 min\n", - "\n", - "πŸ’‘ HAUPTFUNKTIONEN:\n", - " β€’ Status: check_adaptive_bot_status()\n", - " β€’ Analyze: extended_top_down_v2_adaptive()\n", - " β€’ Trade: execute_trade_v2_adaptive()\n", - " β€’ Manage: show_adaptive_management_options()\n", - "\n", - "πŸ† V1.6 ADAPTIVE COMPLETE - ALLE FUNKTIONEN INTEGRIERT!\n", - " πŸ›‘οΈ Sicherheit + πŸš€ AggressivitΓ€t + ⚑ Intelligenz\n", - " Production-Ready & Fully Tested! βœ…\n", - "\n", - "======================================================================\n", - "🎊 Ready for intelligent, safe, and adaptive trading!\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "print(\"\\n\" + \"=\"*70)\n", "print(\"πŸ“ˆ TRADINGBOT V1.6 ADAPTIVE COMPLETE - SUMMARY\")\n", @@ -3775,26 +2800,9 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ” Drawdown Protection Debug:\n", - " trading_paused: False\n", - " pause_until: None\n", - " pause_reason: None\n", - "\n", - "βœ… After force clear:\n", - " Can trade: True\n", - " Reason: OK\n", - "\n", - "πŸ“Š Consecutive losses from DB: 0\n" - ] - } - ], + "outputs": [], "source": [ "# Check Drawdown Protection Status\n", "print(\"πŸ” Drawdown Protection Debug:\")\n", @@ -3827,7 +2835,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -3911,21 +2919,9 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'enabled_sessions': {'asian': True, 'london': False, 'overlap': False, 'ny': True}, 'session_confidence_thresholds': {'asian': 95, 'ny': 97, 'london': 95, 'overlap': 95}, 'base_confidence': 95, 'atr_mult': 1.5, 'max_risk_per_trade': 0.02, 'min_atr': 0.0008, 'min_lot': 0.1, 'max_lot': 0.2, 'default_lot': 0.1, 'risk_filter': True, 'use_pullback_entry': False, 'debug': True}\n", - "βœ… asian: Asian allowed: 97.8% WR, $151/trade (EXCELLENT!)\n", - "❌ london: London blocked: 12.5% win-rate, -$10/trade\n", - "❌ overlap: Overlap blocked: 14.3% win-rate, -$7/trade\n", - "βœ… ny: NY allowed: 43.3% WR, $48/trade (needs >=97% conf)\n" - ] - } - ], + "outputs": [], "source": [ "# PrΓΌfe ob Filter aktiv ist\n", "print(SESSION_WHITELIST_CONFIG)\n", @@ -3939,24 +2935,9 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ“Š ADX auf verschiedenen Timeframes:\n", - "\n", - "M15 : ADX = 27.16 | Preis-Change (10 bars): +0.82%\n", - "H1 : ADX = 19.20 | Preis-Change (10 bars): +1.30%\n", - "H4 : ADX = 33.70 | Preis-Change (10 bars): +0.49%\n", - "D1 : ADX = 34.73 | Preis-Change (10 bars): +8.52%\n", - "\n", - "πŸ’° Aktueller Preis: 4893.78\n" - ] - } - ], + "outputs": [], "source": [ "# Verschiedene Timeframes checken\n", "print(\"πŸ“Š ADX auf verschiedenen Timeframes:\\n\")\n", @@ -3978,32 +2959,9 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:31,337 - INFO - πŸ“Š Adaptive Position Sizing:\n", - "2026-01-22 18:39:31,341 - INFO - Confidence: 85.0% (HIGH)\n", - "2026-01-22 18:39:31,345 - INFO - Base Risk: 2.0%\n", - "2026-01-22 18:39:31,347 - INFO - Multiplier: 1.5x\n", - "2026-01-22 18:39:31,348 - INFO - Adjusted Risk: 3.0%\n", - "2026-01-22 18:39:31,350 - INFO - πŸ’° Position Size: 0.20 lots\n", - "2026-01-22 18:39:31,352 - INFO - Risk Amount: $300.00\n", - "2026-01-22 18:39:31,353 - INFO - SL Distance: 50.00 pips\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Base Risk: 0.02\n", - "Test Volume: 0.2\n" - ] - } - ], + "outputs": [], "source": [ "# Check 1: Base Risk\n", "print(f\"Base Risk: {adv_position_mgr.adaptive_sizing.base_risk}\")\n", @@ -4042,65 +3000,9 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:31,659 - INFO - βœ… Enhanced Trailing Stop Manager initialized\n", - "2026-01-22 18:39:31,661 - INFO - Breakeven: 30% + 300 pips\n", - "2026-01-22 18:39:31,662 - INFO - Multi-tier: 50%/75%/90%\n", - "2026-01-22 18:39:31,664 - INFO - ATR Trailing: βœ…\n", - "2026-01-22 18:39:31,665 - INFO - Time-based BE: βœ… (4.0h)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸš€ INITIALIZING ADVANCED OPTIMIZATIONS...\n", - "======================================================================\n", - "\n", - "βœ… Dynamic Threshold Optimizer initialized\n", - " Lookback: 20 trades\n", - " Target Win Rate: 60.0%\n", - " Range: 60% - 95%\n", - "βœ… Dynamic Threshold Optimizer initialized\n", - "βœ… Enhanced Signal Scorer initialized\n", - "βœ… Enhanced Trailing Stop Manager initialized\n", - "\n", - "πŸ”„ Running initial threshold optimization...\n", - "\n", - "======================================================================\n", - "πŸ”„ AUTO-OPTIMIZATION STARTED - 2026-01-22 18:39:31\n", - "======================================================================\n", - "\n", - "ASIAN : 70% β†’ 60% πŸ”½ | WR: 90.0% (20 trades)\n", - "NY : 70% β†’ 60% πŸ”½ | WR: 100.0% (20 trades)\n", - "LONDON : 70% β†’ 80% πŸ”Ό | WR: 46.2% (13 trades)\n", - "OVERLAP : 70% β†’ 70% ➑️ | WR: 33.3% (9 trades)\n", - "βœ… Thresholds saved to: dynamic_thresholds.json\n", - "\n", - "βœ… Changes applied and saved!\n", - "\n", - "======================================================================\n", - "\n", - "\n", - "======================================================================\n", - "🎯 ALL ADVANCED OPTIMIZATIONS ACTIVE!\n", - "======================================================================\n", - "\n", - "πŸ“Š Summary:\n", - " β€’ Dynamic Thresholds: βœ… (auto-adjusts daily)\n", - " β€’ Enhanced Scoring: βœ… (5-factor analysis)\n", - " β€’ Enhanced Trailing: βœ… (multi-tier protection)\n", - "\n", - "πŸ’‘ Tip: Use 'threshold_optimizer.generate_report()' for details\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# ADVANCED OPTIMIZATION SETUP (V1.8)\n", @@ -4196,41 +3098,9 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:32,132 - INFO - Added job \"\" to job store \"default\"\n", - "2026-01-22 18:39:32,132 - INFO - Removed job advanced_position_management\n", - "2026-01-22 18:39:32,132 - INFO - Added job \"create_enhanced_position_monitor..enhanced_position_monitor\" to job store \"default\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”„ Updating scheduler with advanced optimizations...\n", - "\n", - "βœ… Threshold optimization scheduled (daily at 00:00 UTC)\n", - " Removed old trailing stop\n", - "βœ… Enhanced trailing stop scheduled (every 1 min)\n", - "\n", - "πŸ“‹ Active Scheduler Jobs:\n", - " β€’ adaptive_trading_check: cron[minute='*']\n", - " β€’ position_monitor: interval[0:01:00]\n", - " β€’ enhanced_trailing_stop: interval[0:01:00]\n", - " β€’ status_report: cron[minute='0,30']\n", - " β€’ daily_report: cron[hour='22', minute='0']\n", - " β€’ threshold_optimization: cron[hour='0']\n", - " β€’ weekly_report: cron[day_of_week='sun', hour='23', minute='0']\n", - "\n", - "βœ… Scheduler updated successfully!\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# UPDATE SCHEDULER WITH OPTIMIZATIONS\n", @@ -4326,77 +3196,9 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "======================================================================\n", - "🎯 DYNAMIC THRESHOLD OPTIMIZATION REPORT\n", - "======================================================================\n", - "\n", - "Generated: 2026-01-22 18:39:32\n", - "Lookback: 20 trades\n", - "Target Win Rate: 60.0%\n", - "\n", - "\n", - "======================================================================\n", - "πŸ“Š ASIAN SESSION\n", - "======================================================================\n", - "Recent Trades: 20\n", - "Win Rate: 90.0% (18W / 2L)\n", - "Avg Confidence: 89.9%\n", - "Total Profit: $193.88\n", - "Performance: EXCELLENT\n", - "\n", - "Current Threshold: 60%\n", - "Recommended: Keep at 60% βœ…\n", - "\n", - "======================================================================\n", - "πŸ“Š NY SESSION\n", - "======================================================================\n", - "Recent Trades: 20\n", - "Win Rate: 100.0% (20W / 0L)\n", - "Avg Confidence: 91.0%\n", - "Total Profit: $274.40\n", - "Performance: EXCELLENT\n", - "\n", - "Current Threshold: 60%\n", - "Recommended: Keep at 60% βœ…\n", - "\n", - "======================================================================\n", - "πŸ“Š LONDON SESSION\n", - "======================================================================\n", - "Recent Trades: 13\n", - "Win Rate: 46.2% (6W / 7L)\n", - "Avg Confidence: 99.8%\n", - "Total Profit: $-19.39\n", - "Performance: POOR\n", - "\n", - "Current Threshold: 80%\n", - "Recommended: 90% (πŸ”Ό +10%)\n", - "Reason: Poor WR 46.2% β†’ Raise threshold significantly\n", - "\n", - "======================================================================\n", - "πŸ“Š OVERLAP SESSION\n", - "======================================================================\n", - "Recent Trades: 9\n", - "Win Rate: 33.3% (3W / 6L)\n", - "Avg Confidence: 99.5%\n", - "Total Profit: $-19.90\n", - "Performance: CRITICAL\n", - "\n", - "Current Threshold: 70%\n", - "Recommended: Keep at 70% βœ…\n", - "\n", - "======================================================================\n", - "βœ… Optimization Complete\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TEST: Threshold Optimization Report\n", @@ -4407,57 +3209,9 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.86 | 89.6659 | 9.78966 | 4893.8 |\n", - "| H4 | uptrend | 423.3 | 45.1922 | 2.86948 | 4893.8 |\n", - "| H1 | uptrend | 522.92 | 24.9925 | 1.96034 | 4893.8 |\n", - "| M30 | uptrend | 611.54 | 15.3397 | 1.40713 | 4893.8 |\n", - "| M15 | downtrend | 119.43 | 11.1676 | -0.200055 | 4893.8 |\n", - "| M5 | uptrend | 334.92 | 7.3478 | 0.369136 | 4893.8 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171378.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "🎯 ENHANCED SIGNAL TEST\n", - "==================================================\n", - "Base Confidence: 97.8%\n", - "Enhanced Score: 72.8%\n", - "Signal Quality: GOOD\n", - "Direction: LONG\n", - "\n", - "πŸ“Š Component Breakdown:\n", - " Trend: 97.8/100\n", - " Volume: 75.0/100\n", - " Momentum: 60.0/100\n", - " S/R: 50.0/100\n", - " Fibonacci: 60.0/100\n", - "\n", - "πŸ’‘ Reason: Strong trend (98%), High volume\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TEST: Enhanced Signal Scoring\n", @@ -4500,28 +3254,9 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ“ˆ ENHANCED TRAILING STOP STATUS\n", - "==================================================\n", - "\n", - "Position #696946027:\n", - " Type: LONG\n", - " Entry: 4893.91\n", - " Current SL: 4883.20\n", - " TP: 4917.92\n", - " Profit: -1.10 USD (-11.0 pips)\n", - " Progress: -0.5%\n", - " Tier: 0/3\n", - " Next: Breakeven @ 30%\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TEST: Enhanced Trailing Stop Status\n", @@ -4597,19 +3332,10 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": null, "id": "ec5e4268", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Enhanced trading check wrapper created!\n", - " This will use multi-factor analysis for all trades\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# ENHANCED TRADING CHECK WITH SIGNAL SCORING\n", @@ -4694,14 +3420,11 @@ " print(f\"\\n🎯 Signal qualified! {final_confidence:.1f}% >= {adaptive_threshold:.1f}%\")\n", "\n", " # Execute trade with ENHANCED confidence\n", - " # Convert signal to string for execute_trade\n", - " signal_direction = \"LONG\" if entry_signal == 1 else \"SHORT\"\n", - " \n", + " # Execute trade with pre-calculated signal_info and enhanced confidence\n", " result = execute_trade_v2_adaptive(\n", " symbol=symbol,\n", - " entry_signal=signal_direction,\n", - " confidence=final_confidence, # ← Use enhanced score!\n", - " signal_info=signal_info\n", + " signal_info_override=signal_info,\n", + " confidence_override=final_confidence # ← Use hybrid score!\n", " )\n", "\n", " return result\n", @@ -4729,60 +3452,10 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": null, "id": "9b32db82", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”„ Updating scheduler with enhanced trading check..." - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:33,383 - INFO - Removed job adaptive_trading_check\n", - "2026-01-22 18:39:33,387 - INFO - Added job \"Enhanced Adaptive Trading Check\" to job store \"default\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - " Removed old adaptive_trading_check job\n", - "\n", - "βœ… Enhanced Trading Check activated!\n", - " Scheduler updated with multi-factor signal scoring\n", - "\n", - "πŸ“‹ Active Scheduler Jobs:\n", - " β€’ position_monitor: interval[0:01:00]\n", - " β€’ enhanced_trailing_stop: interval[0:01:00]\n", - " β€’ adaptive_trading_check: interval[0:01:00]\n", - " β€’ status_report: cron[minute='0,30']\n", - " β€’ daily_report: cron[hour='22', minute='0']\n", - " β€’ threshold_optimization: cron[hour='0']\n", - " β€’ weekly_report: cron[day_of_week='sun', hour='23', minute='0']\n", - "\n", - "======================================================================\n", - "🎯 ENHANCED SIGNAL SCORING NOW ACTIVE!\n", - "======================================================================\n", - "\n", - "Bot will now use 5-factor analysis for all trading signals:\n", - " βœ… Trend Alignment (30%)\n", - " βœ… Volume Analysis (20%)\n", - " βœ… Momentum (RSI/MACD) (20%)\n", - " βœ… Support/Resistance (15%)\n", - " βœ… Fibonacci Levels (15%)\n", - "\n", - "πŸ’‘ Expected improvement: +5-10% Win Rate\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# UPDATE SCHEDULER WITH ENHANCED VERSION\n", @@ -4842,67 +3515,10 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": null, "id": "62054af5", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ§ͺ Testing Enhanced Signal Scoring...\n", - "======================================================================\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.86 | 89.6659 | 9.78967 | 4893.82 |\n", - "| H4 | uptrend | 423.3 | 45.1922 | 2.86949 | 4893.82 |\n", - "| H1 | uptrend | 522.92 | 24.9925 | 1.96035 | 4893.82 |\n", - "| M30 | uptrend | 611.54 | 15.3397 | 1.40714 | 4893.82 |\n", - "| M15 | downtrend | 119.42 | 11.1676 | -0.20005 | 4893.82 |\n", - "| M5 | uptrend | 334.92 | 7.3478 | 0.369141 | 4893.82 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171378.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal:\n", - " Direction: 1\n", - " Confidence: 97.8%\n", - "\n", - "🎯 Enhanced Analysis:\n", - " Trend: 97.8/100 (30%)\n", - " Volume: 75.0/100 (20%)\n", - " Momentum: 60.0/100 (20%)\n", - " S/R: 50.0/100 (15%)\n", - " Fibonacci: 60.0/100 (15%)\n", - " ─────────────────────────────────────\n", - " Total Score: 72.8%\n", - " Quality: good\n", - "\n", - "⚠️ Enhanced score LOWER by 25.0%\n", - " Setup has weak confirmation factors\n", - "\n", - "πŸ’‘ Strong trend (98%), High volume\n", - "\n", - "======================================================================\n", - "βœ… Test complete!\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TEST ENHANCED SIGNAL SCORING\n", @@ -4983,19 +3599,10 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": null, "id": "1f4092ff", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Enhanced trading check wrapper created!\n", - " This will use multi-factor analysis for all trades\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# ENHANCED TRADING CHECK WITH SIGNAL SCORING\n", @@ -5080,14 +3687,11 @@ " print(f\"\\n🎯 Signal qualified! {final_confidence:.1f}% >= {adaptive_threshold:.1f}%\")\n", "\n", " # Execute trade with ENHANCED confidence\n", - " # Convert signal to string for execute_trade\n", - " signal_direction = \"LONG\" if entry_signal == 1 else \"SHORT\"\n", - " \n", + " # Execute trade with pre-calculated signal_info and enhanced confidence\n", " result = execute_trade_v2_adaptive(\n", " symbol=symbol,\n", - " entry_signal=signal_direction,\n", - " confidence=final_confidence, # ← Use enhanced score!\n", - " signal_info=signal_info\n", + " signal_info_override=signal_info,\n", + " confidence_override=final_confidence # ← Use hybrid score!\n", " )\n", "\n", " return result\n", @@ -5115,53 +3719,10 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": null, "id": "d5ac4237", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:33,989 - INFO - Removed job adaptive_trading_check\n", - "2026-01-22 18:39:34,010 - INFO - Added job \"Enhanced Adaptive Trading Check\" to job store \"default\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ”„ Updating scheduler with enhanced trading check...\n", - " Removed old adaptive_trading_check job\n", - "\n", - "βœ… Enhanced Trading Check activated!\n", - " Scheduler updated with multi-factor signal scoring\n", - "\n", - "πŸ“‹ Active Scheduler Jobs:\n", - " β€’ position_monitor: interval[0:01:00]\n", - " β€’ enhanced_trailing_stop: interval[0:01:00]\n", - " β€’ adaptive_trading_check: interval[0:01:00]\n", - " β€’ status_report: cron[minute='0,30']\n", - " β€’ daily_report: cron[hour='22', minute='0']\n", - " β€’ threshold_optimization: cron[hour='0']\n", - " β€’ weekly_report: cron[day_of_week='sun', hour='23', minute='0']\n", - "\n", - "======================================================================\n", - "🎯 ENHANCED SIGNAL SCORING NOW ACTIVE!\n", - "======================================================================\n", - "\n", - "Bot will now use 5-factor analysis for all trading signals:\n", - " βœ… Trend Alignment (30%)\n", - " βœ… Volume Analysis (20%)\n", - " βœ… Momentum (RSI/MACD) (20%)\n", - " βœ… Support/Resistance (15%)\n", - " βœ… Fibonacci Levels (15%)\n", - "\n", - "πŸ’‘ Expected improvement: +5-10% Win Rate\n", - "======================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# UPDATE SCHEDULER WITH ENHANCED VERSION\n", @@ -5221,67 +3782,10 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": null, "id": "597b2834", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ§ͺ Testing Enhanced Signal Scoring...\n", - "======================================================================\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.86 | 89.6659 | 9.78969 | 4893.89 |\n", - "| H4 | uptrend | 423.3 | 45.1922 | 2.8695 | 4893.89 |\n", - "| H1 | uptrend | 522.92 | 24.9925 | 1.96036 | 4893.89 |\n", - "| M30 | uptrend | 611.55 | 15.3397 | 1.40715 | 4893.89 |\n", - "| M15 | downtrend | 119.41 | 11.1676 | -0.200033 | 4893.89 |\n", - "| M5 | uptrend | 334.94 | 7.3478 | 0.369157 | 4893.89 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 171380.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal:\n", - " Direction: 1\n", - " Confidence: 97.8%\n", - "\n", - "🎯 Enhanced Analysis:\n", - " Trend: 97.8/100 (30%)\n", - " Volume: 75.0/100 (20%)\n", - " Momentum: 60.0/100 (20%)\n", - " S/R: 50.0/100 (15%)\n", - " Fibonacci: 60.0/100 (15%)\n", - " ─────────────────────────────────────\n", - " Total Score: 72.8%\n", - " Quality: good\n", - "\n", - "⚠️ Enhanced score LOWER by 25.0%\n", - " Setup has weak confirmation factors\n", - "\n", - "πŸ’‘ Strong trend (98%), High volume\n", - "\n", - "======================================================================\n", - "βœ… Test complete!\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# TEST ENHANCED SIGNAL SCORING\n", @@ -5364,25 +3868,10 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": null, "id": "5d2044d5", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "================================================================================\n", - "πŸš€ INITIALIZING P&L TRACKER...\n", - "================================================================================\n", - "\n", - "βœ… P&L Tracker initialized successfully!\n", - " Database: trading_bot.db\n", - " Tables: mt5_deals, matched_positions, pnl_summary\n", - "================================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# SETUP P&L TRACKER\n", @@ -5411,35 +3900,10 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": null, "id": "b3de5cd8", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“₯ Importing MT5 history...\n", - " This will import last 30 days of trades from MT5\n", - " Please wait...\n", - "\n", - "================================================================================\n", - "βœ… SYNC SUCCESSFUL!\n", - "================================================================================\n", - "\n", - "πŸ“₯ Import Results:\n", - " New Deals: 2\n", - " Matched Positions: 246\n", - "\n", - "πŸ“Š Current Performance:\n", - " Total Trades: 246\n", - " Win Rate: 43.5%\n", - " Net P&L: $-82.53\n", - "================================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# INITIAL SYNC: IMPORT MT5 HISTORY\n", @@ -5484,41 +3948,10 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": null, "id": "b488bf8b", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:34,806 - INFO - Added job \"P&L Sync\" to job store \"default\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ”„ Adding P&L sync to scheduler...\n", - "βœ… P&L sync scheduled (every 1 hour)\n", - " Syncs last 7 days from MT5\n", - "\n", - "πŸ“‹ Active Scheduler Jobs:\n", - " β€’ position_monitor: interval[0:01:00]\n", - " β€’ enhanced_trailing_stop: interval[0:01:00]\n", - " β€’ adaptive_trading_check: interval[0:01:00]\n", - " β€’ status_report: cron[minute='0,30']\n", - " β€’ pnl_sync: interval[1:00:00]\n", - " β€’ daily_report: cron[hour='22', minute='0']\n", - " β€’ threshold_optimization: cron[hour='0']\n", - " β€’ weekly_report: cron[day_of_week='sun', hour='23', minute='0']\n", - "\n", - "βœ… Scheduler updated successfully!\n", - "================================================================================\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# ADD P&L SYNC TO SCHEDULER\n", @@ -5604,58970 +4037,7 @@ "execution_count": null, "id": "cf605503", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "================================================================================\n", - "πŸ’° MT5 P&L TRACKER - LIVE PERFORMANCE DASHBOARD\n", - "================================================================================\n", - "\n", - "Generated: 2026-01-22 18:39:34\n", - "\n", - "================================================================================\n", - "πŸ“Š ALL TIME PERFORMANCE\n", - "================================================================================\n", - "\n", - "Total Trades: 246\n", - "Winning Trades: 107 (43.5%)\n", - "Losing Trades: 139\n", - "\n", - "Net Profit: $-82.53\n", - "Total Profit: $3367.97\n", - "Total Loss: $3450.50\n", - "Profit Factor: 0.98\n", - "\n", - "Average Win: $31.48\n", - "Average Loss: $-24.82\n", - "Largest Win: $267.30\n", - "Largest Loss: $-118.30\n", - "\n", - "Max Drawdown: $-1981.78\n", - "Avg Duration: 1.1 hours\n", - "Total Pips: 1515700.0\n", - "\n", - "================================================================================\n", - "πŸ“… THIS MONTH\n", - "================================================================================\n", - "\n", - "Trades: 239 (43.5% WR)\n", - "Net Profit: $-80.12\n", - "Profit/Loss: +$3350.38 / -$3430.50\n", - "\n", - "================================================================================\n", - "πŸ“… THIS WEEK\n", - "================================================================================\n", - "\n", - "Trades: 62 (38.7% WR)\n", - "Net Profit: $113.22\n", - "Profit/Loss: +$2636.95 / -$2523.73\n", - "\n", - "================================================================================\n", - "πŸ“… TODAY\n", - "================================================================================\n", - "\n", - "Trades: 4 (50.0% WR)\n", - "Net Profit: $-50.90\n", - "Profit/Loss: +$31.70 / -$82.60\n", - "\n", - "================================================================================\n", - "\n", - "================================================================================\n", - "πŸ“œ RECENT TRADES (Last 10)\n", - "================================================================================\n", - "\n", - " position_id symbol type entry_time exit_time net_profit pips duration_hours status\n", - " 695596696 XAUUSD LONG 2026-01-22 16:06 2026-01-22 16:30 31.2 31200.0 0.4 βœ… WIN\n", - " 694409497 XAUUSD LONG 2026-01-22 10:35 2026-01-22 11:09 -62.0 -62000.0 0.6 ❌ LOSS\n", - " 692708945 XAUUSD LONG 2026-01-22 03:40 2026-01-22 04:01 0.5 500.0 0.4 βœ… WIN\n", - " 692066470 XAUUSD LONG 2026-01-22 00:07 2026-01-22 02:04 -20.6 500.0 1.9 ❌ LOSS\n", - " 687904350 XAUUSD LONG 2026-01-21 12:08 2026-01-21 16:55 204.4 204400.0 4.8 βœ… WIN\n", - " 687540064 XAUUSD LONG 2026-01-21 10:15 2026-01-21 11:05 252.5 252500.0 0.8 βœ… WIN\n", - " 687477396 XAUUSD LONG 2026-01-21 10:00 2026-01-21 10:04 -106.9 -106900.0 0.1 ❌ LOSS\n", - " 687409983 XAUUSD LONG 2026-01-21 09:45 2026-01-21 09:56 -91.6 -91600.0 0.2 ❌ LOSS\n", - " 687349400 XAUUSD LONG 2026-01-21 09:30 2026-01-21 09:37 -86.8 -86800.0 0.1 ❌ LOSS\n", - " 687070782 XAUUSD LONG 2026-01-21 07:45 2026-01-21 09:27 203.4 203400.0 1.7 βœ… WIN\n", - "\n", - "================================================================================\n", - "βœ… Dashboard refresh complete!\n", - "Last updated: 2026-01-22 18:39:34\n", - "================================================================================\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:39:37,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:39:47,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:39:58,001 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:08,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:18,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:40:26 CET)\" (scheduled at 2026-01-22 18:40:26.633942+01:00)\n", - "2026-01-22 18:40:26,975 - WARNING - No history found for ticket 696946027\n", - "2026-01-22 18:40:27,177 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:41:26 CET)\" executed successfully\n", - "2026-01-22 18:40:28,091 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:41:32 CET)\" (scheduled at 2026-01-22 18:40:32.132962+01:00)\n", - "2026-01-22 18:40:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:41:32 CET)\" executed successfully\n", - "2026-01-22 18:40:34,754 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:41:34 CET)\" (scheduled at 2026-01-22 18:40:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:40:35,054 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 34%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 727.85 | 89.6659 | 9.78944 | 4892.85 |\n", - "| H4 | uptrend | 423.27 | 45.1922 | 2.86926 | 4892.85 |\n", - "| H1 | uptrend | 522.86 | 24.9925 | 1.96012 | 4892.85 |\n", - "| M30 | uptrend | 611.44 | 15.3397 | 1.40691 | 4892.83 |\n", - "| M15 | downtrend | 119.56 | 11.1676 | -0.200284 | 4892.83 |\n", - "| M5 | uptrend | 357.38 | 6.9943 | 0.374945 | 4892.83 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 97.81% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 172240.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 97.8%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 97.8/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 97.8%\n", - " πŸ“ˆ Enhanced Score: 72.8%\n", - " πŸ”€ HYBRID (60/40): 87.8%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (98%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:40:38,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:48,154 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:40:58,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:08,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:18,231 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:26,849 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:26 CET)\" (scheduled at 2026-01-22 18:41:26.633942+01:00)\n", - "2026-01-22 18:41:26,849 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:26 CET)\" executed successfully\n", - "2026-01-22 18:41:28,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:32 CET)\" (scheduled at 2026-01-22 18:41:32.132962+01:00)\n", - "2026-01-22 18:41:32,140 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:41:32,140 - INFO - Session: NY | ATR: 7.31571\n", - "2026-01-22 18:41:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:32 CET)\" executed successfully\n", - "2026-01-22 18:41:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:34 CET)\" (scheduled at 2026-01-22 18:41:34.010875+01:00)\n", - "2026-01-22 18:41:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | πŸ”΄ -7.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:41:38,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:48,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:41:58,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:08,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:18,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:26,677 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:26 CET)\" (scheduled at 2026-01-22 18:42:26.633942+01:00)\n", - "2026-01-22 18:42:26,681 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:26 CET)\" executed successfully\n", - "2026-01-22 18:42:28,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:32,412 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:32 CET)\" (scheduled at 2026-01-22 18:42:32.132962+01:00)\n", - "2026-01-22 18:42:32,412 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:42:32,412 - INFO - Session: NY | ATR: 7.39571\n", - "2026-01-22 18:42:32,655 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:32 CET)\" executed successfully\n", - "2026-01-22 18:42:34,456 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:34 CET)\" (scheduled at 2026-01-22 18:42:34.010875+01:00)\n", - "2026-01-22 18:42:34,456 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | πŸ”΄ -12.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:42:38,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:48,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:42:58,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:08,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:18,564 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:26 CET)\" (scheduled at 2026-01-22 18:43:26.633942+01:00)\n", - "2026-01-22 18:43:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:26 CET)\" executed successfully\n", - "2026-01-22 18:43:28,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:32,415 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:32 CET)\" (scheduled at 2026-01-22 18:43:32.132962+01:00)\n", - "2026-01-22 18:43:32,510 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:43:32,588 - INFO - Session: NY | ATR: 7.71500\n", - "2026-01-22 18:43:32,590 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:32 CET)\" executed successfully\n", - "2026-01-22 18:43:34,243 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:34 CET)\" (scheduled at 2026-01-22 18:43:34.010875+01:00)\n", - "2026-01-22 18:43:34,243 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 42.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:43:38,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:48,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:43:58,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:08,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:18,765 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:26,656 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:26 CET)\" (scheduled at 2026-01-22 18:44:26.633942+01:00)\n", - "2026-01-22 18:44:26,656 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:26 CET)\" executed successfully\n", - "2026-01-22 18:44:28,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:32,212 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:32 CET)\" (scheduled at 2026-01-22 18:44:32.132962+01:00)\n", - "2026-01-22 18:44:32,243 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:44:32,243 - INFO - Session: NY | ATR: 7.71500\n", - "2026-01-22 18:44:32,243 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:32 CET)\" executed successfully\n", - "2026-01-22 18:44:34,208 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:34 CET)\" (scheduled at 2026-01-22 18:44:34.010875+01:00)\n", - "2026-01-22 18:44:34,208 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 36.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:44:38,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:48,847 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:44:58,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:08,912 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:18,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:27,088 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:26 CET)\" (scheduled at 2026-01-22 18:45:26.633942+01:00)\n", - "2026-01-22 18:45:27,088 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:26 CET)\" executed successfully\n", - "2026-01-22 18:45:28,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:32 CET)\" (scheduled at 2026-01-22 18:45:32.132962+01:00)\n", - "2026-01-22 18:45:32,139 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:45:32,216 - INFO - Session: NY | ATR: 7.29000\n", - "2026-01-22 18:45:32,219 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:32 CET)\" executed successfully\n", - "2026-01-22 18:45:34,197 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:34 CET)\" (scheduled at 2026-01-22 18:45:34.010875+01:00)\n", - "2026-01-22 18:45:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 27.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:45:38,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:49,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:45:59,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:09,084 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:19,107 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:26 CET)\" (scheduled at 2026-01-22 18:46:26.633942+01:00)\n", - "2026-01-22 18:46:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:26 CET)\" executed successfully\n", - "2026-01-22 18:46:29,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:32 CET)\" (scheduled at 2026-01-22 18:46:32.132962+01:00)\n", - "2026-01-22 18:46:32,150 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:46:32,150 - INFO - Session: NY | ATR: 7.29000\n", - "2026-01-22 18:46:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:32 CET)\" executed successfully\n", - "2026-01-22 18:46:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:34 CET)\" (scheduled at 2026-01-22 18:46:34.010875+01:00)\n", - "2026-01-22 18:46:34,035 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 43.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:46:39,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:49,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:46:59,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:09,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:19,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:26,794 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:26 CET)\" (scheduled at 2026-01-22 18:47:26.633942+01:00)\n", - "2026-01-22 18:47:26,794 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:26 CET)\" executed successfully\n", - "2026-01-22 18:47:29,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:32 CET)\" (scheduled at 2026-01-22 18:47:32.132962+01:00)\n", - "2026-01-22 18:47:32,163 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:47:32,164 - INFO - Session: NY | ATR: 7.35857\n", - "2026-01-22 18:47:32,166 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:32 CET)\" executed successfully\n", - "2026-01-22 18:47:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:34 CET)\" (scheduled at 2026-01-22 18:47:34.010875+01:00)\n", - "2026-01-22 18:47:34,025 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 57.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:47:39,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:49,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:47:59,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:09,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:19,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:26 CET)\" (scheduled at 2026-01-22 18:48:26.633942+01:00)\n", - "2026-01-22 18:48:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:26 CET)\" executed successfully\n", - "2026-01-22 18:48:29,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:32,286 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:32 CET)\" (scheduled at 2026-01-22 18:48:32.132962+01:00)\n", - "2026-01-22 18:48:32,286 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:48:32,286 - INFO - Session: NY | ATR: 7.38643\n", - "2026-01-22 18:48:32,286 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:32 CET)\" executed successfully\n", - "2026-01-22 18:48:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:34 CET)\" (scheduled at 2026-01-22 18:48:34.010875+01:00)\n", - "2026-01-22 18:48:34,020 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 56.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:48:39,486 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:49,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:48:59,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:09,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:19,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:26 CET)\" (scheduled at 2026-01-22 18:49:26.633942+01:00)\n", - "2026-01-22 18:49:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:26 CET)\" executed successfully\n", - "2026-01-22 18:49:29,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:32,302 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:32 CET)\" (scheduled at 2026-01-22 18:49:32.132962+01:00)\n", - "2026-01-22 18:49:32,306 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:49:32,306 - INFO - Session: NY | ATR: 7.71143\n", - "2026-01-22 18:49:32,306 - INFO - πŸ“ˆ Trailing Trigger for #696946027: Early BE at 46.4% (+300 pips buffer)\n", - "2026-01-22 18:49:32,428 - INFO - βœ… Enhanced Trailing Stop updated for #696946027\n", - "2026-01-22 18:49:32,430 - INFO - Old SL: 4883.20000\n", - "2026-01-22 18:49:32,432 - INFO - New SL: 4896.91000\n", - "2026-01-22 18:49:32,435 - INFO - Buffer: 13.71000\n", - "2026-01-22 18:49:32,436 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:32 CET)\" executed successfully\n", - "2026-01-22 18:49:34,087 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:34 CET)\" (scheduled at 2026-01-22 18:49:34.010875+01:00)\n", - "2026-01-22 18:49:34,091 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 104.30\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:49:39,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:49,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:49:59,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:09,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:19,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:26,794 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:26 CET)\" (scheduled at 2026-01-22 18:50:26.633942+01:00)\n", - "2026-01-22 18:50:26,794 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:26 CET)\" executed successfully\n", - "2026-01-22 18:50:29,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:32 CET)\" (scheduled at 2026-01-22 18:50:32.132962+01:00)\n", - "2026-01-22 18:50:32,248 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:50:32,250 - INFO - Session: NY | ATR: 7.47000\n", - "2026-01-22 18:50:32,252 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:32 CET)\" executed successfully\n", - "2026-01-22 18:50:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:34 CET)\" (scheduled at 2026-01-22 18:50:34.010875+01:00)\n", - "2026-01-22 18:50:34,011 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 101.30\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:50:39,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:49,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:50:59,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:51:09,902 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:51:19,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:51:27,368 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:26 CET)\" (scheduled at 2026-01-22 18:51:26.633942+01:00)\n", - "2026-01-22 18:51:27,368 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:26 CET)\" executed successfully\n", - "2026-01-22 18:51:29,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:51:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:32 CET)\" (scheduled at 2026-01-22 18:51:32.132962+01:00)\n", - "2026-01-22 18:51:32,152 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:51:32,152 - INFO - Session: NY | ATR: 7.54286\n", - "2026-01-22 18:51:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:32 CET)\" executed successfully\n", - "2026-01-22 18:51:34,256 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:34 CET)\" (scheduled at 2026-01-22 18:51:34.010875+01:00)\n", - "2026-01-22 18:51:34,256 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 87.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:51:39,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:51:50,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:00,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:10,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:20,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:26 CET)\" (scheduled at 2026-01-22 18:52:26.633942+01:00)\n", - "2026-01-22 18:52:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:26 CET)\" executed successfully\n", - "2026-01-22 18:52:30,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:32 CET)\" (scheduled at 2026-01-22 18:52:32.132962+01:00)\n", - "2026-01-22 18:52:32,144 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:52:32,148 - INFO - Session: NY | ATR: 7.56929\n", - "2026-01-22 18:52:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:32 CET)\" executed successfully\n", - "2026-01-22 18:52:34,243 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:34 CET)\" (scheduled at 2026-01-22 18:52:34.010875+01:00)\n", - "2026-01-22 18:52:34,243 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 80.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:52:40,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:52:50,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:00,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:10,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:20,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:26 CET)\" (scheduled at 2026-01-22 18:53:26.633942+01:00)\n", - "2026-01-22 18:53:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:26 CET)\" executed successfully\n", - "2026-01-22 18:53:30,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:32,182 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:32 CET)\" (scheduled at 2026-01-22 18:53:32.132962+01:00)\n", - "2026-01-22 18:53:32,182 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:53:32,182 - INFO - Session: NY | ATR: 7.62929\n", - "2026-01-22 18:53:32,182 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:32 CET)\" executed successfully\n", - "2026-01-22 18:53:34,121 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:34 CET)\" (scheduled at 2026-01-22 18:53:34.010875+01:00)\n", - "2026-01-22 18:53:34,121 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 88.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:53:40,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:53:50,373 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:00,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:10,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:20,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:26,665 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:26 CET)\" (scheduled at 2026-01-22 18:54:26.633942+01:00)\n", - "2026-01-22 18:54:26,665 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:26 CET)\" executed successfully\n", - "2026-01-22 18:54:30,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:32,384 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:32 CET)\" (scheduled at 2026-01-22 18:54:32.132962+01:00)\n", - "2026-01-22 18:54:32,494 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:54:32,497 - INFO - Session: NY | ATR: 7.67643\n", - "2026-01-22 18:54:32,499 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:32 CET)\" executed successfully\n", - "2026-01-22 18:54:34,177 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:34 CET)\" (scheduled at 2026-01-22 18:54:34.010875+01:00)\n", - "2026-01-22 18:54:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 107.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:54:40,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:54:50,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:00,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:10,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:20,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:26,837 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:26 CET)\" (scheduled at 2026-01-22 18:55:26.633942+01:00)\n", - "2026-01-22 18:55:26,837 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:26 CET)\" executed successfully\n", - "2026-01-22 18:55:30,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:32,302 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:32 CET)\" (scheduled at 2026-01-22 18:55:32.132962+01:00)\n", - "2026-01-22 18:55:32,306 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:55:32,306 - INFO - Session: NY | ATR: 7.49429\n", - "2026-01-22 18:55:32,318 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:32 CET)\" executed successfully\n", - "2026-01-22 18:55:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:34 CET)\" (scheduled at 2026-01-22 18:55:34.010875+01:00)\n", - "2026-01-22 18:55:34,031 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 105.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:55:40,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:55:50,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:00,754 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:10,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:21,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:26 CET)\" (scheduled at 2026-01-22 18:56:26.633942+01:00)\n", - "2026-01-22 18:56:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:26 CET)\" executed successfully\n", - "2026-01-22 18:56:31,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:32 CET)\" (scheduled at 2026-01-22 18:56:32.132962+01:00)\n", - "2026-01-22 18:56:32,137 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:56:32,137 - INFO - Session: NY | ATR: 7.52429\n", - "2026-01-22 18:56:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:32 CET)\" executed successfully\n", - "2026-01-22 18:56:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:34 CET)\" (scheduled at 2026-01-22 18:56:34.010875+01:00)\n", - "2026-01-22 18:56:34,025 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 110.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:56:41,105 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:56:51,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:01,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:11,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:21,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:26,659 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:26 CET)\" (scheduled at 2026-01-22 18:57:26.633942+01:00)\n", - "2026-01-22 18:57:26,659 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:26 CET)\" executed successfully\n", - "2026-01-22 18:57:31,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:32,249 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:32 CET)\" (scheduled at 2026-01-22 18:57:32.132962+01:00)\n", - "2026-01-22 18:57:32,256 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:57:32,258 - INFO - Session: NY | ATR: 7.55071\n", - "2026-01-22 18:57:32,260 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:32 CET)\" executed successfully\n", - "2026-01-22 18:57:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:34 CET)\" (scheduled at 2026-01-22 18:57:34.010875+01:00)\n", - "2026-01-22 18:57:34,025 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 121.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:57:41,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:57:51,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:01,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:11,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:21,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:26,658 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:26 CET)\" (scheduled at 2026-01-22 18:58:26.633942+01:00)\n", - "2026-01-22 18:58:26,658 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:26 CET)\" executed successfully\n", - "2026-01-22 18:58:31,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:32,263 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:32 CET)\" (scheduled at 2026-01-22 18:58:32.132962+01:00)\n", - "2026-01-22 18:58:32,278 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:58:32,320 - INFO - Session: NY | ATR: 7.60714\n", - "2026-01-22 18:58:32,322 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:32 CET)\" executed successfully\n", - "2026-01-22 18:58:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:34 CET)\" (scheduled at 2026-01-22 18:58:34.010875+01:00)\n", - "2026-01-22 18:58:34,096 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 18:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 93.40\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:58:41,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:58:51,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:01,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:11,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:21,472 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:26,759 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:26 CET)\" (scheduled at 2026-01-22 18:59:26.633942+01:00)\n", - "2026-01-22 18:59:26,759 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:26 CET)\" executed successfully\n", - "2026-01-22 18:59:31,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:32 CET)\" (scheduled at 2026-01-22 18:59:32.132962+01:00)\n", - "2026-01-22 18:59:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 18:59:32,149 - INFO - Session: NY | ATR: 7.61786\n", - "2026-01-22 18:59:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:32 CET)\" executed successfully\n", - "2026-01-22 18:59:34,448 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:34 CET)\" (scheduled at 2026-01-22 18:59:34.010875+01:00)\n", - "2026-01-22 18:59:34,448 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 105.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 18:59:41,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 18:59:51,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:00,183 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 19:30:00 CET)\" (scheduled at 2026-01-22 19:00:00+01:00)\n", - "2026-01-22 19:00:00,183 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 19:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 19:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 23.94 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:00:01,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:11,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:21,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:27,965 - WARNING - Run time of job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:01:26 CET)\" was missed by 0:00:01.332032\n", - "2026-01-22 19:00:31,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:32,172 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:01:32 CET)\" (scheduled at 2026-01-22 19:00:32.132962+01:00)\n", - "2026-01-22 19:00:32,181 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:00:32,186 - INFO - Session: NY | ATR: 7.39214\n", - "2026-01-22 19:00:32,187 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:01:32 CET)\" executed successfully\n", - "2026-01-22 19:00:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:01:34 CET)\" (scheduled at 2026-01-22 19:00:34.010875+01:00)\n", - "2026-01-22 19:00:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 79.40\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:00:41,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:00:51,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:01,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:11,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:21,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:26 CET)\" (scheduled at 2026-01-22 19:01:26.633942+01:00)\n", - "2026-01-22 19:01:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:26 CET)\" executed successfully\n", - "2026-01-22 19:01:31,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:32 CET)\" (scheduled at 2026-01-22 19:01:32.132962+01:00)\n", - "2026-01-22 19:01:32,147 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:01:32,152 - INFO - Session: NY | ATR: 7.47286\n", - "2026-01-22 19:01:32,156 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:32 CET)\" executed successfully\n", - "2026-01-22 19:01:34,050 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:34 CET)\" (scheduled at 2026-01-22 19:01:34.010875+01:00)\n", - "2026-01-22 19:01:34,050 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 100.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:01:41,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:01:51,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:01,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:11,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:21,923 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:26 CET)\" (scheduled at 2026-01-22 19:02:26.633942+01:00)\n", - "2026-01-22 19:02:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:26 CET)\" executed successfully\n", - "2026-01-22 19:02:31,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:32,172 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:32 CET)\" (scheduled at 2026-01-22 19:02:32.132962+01:00)\n", - "2026-01-22 19:02:32,177 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:02:32,178 - INFO - Session: NY | ATR: 7.73286\n", - "2026-01-22 19:02:32,179 - INFO - πŸ“ˆ Trailing Trigger for #696946027: Tier 1: Locking 25% profit at 57.6%\n", - "2026-01-22 19:02:32,292 - INFO - βœ… Enhanced Trailing Stop updated for #696946027\n", - "2026-01-22 19:02:32,305 - INFO - Old SL: 4896.91000\n", - "2026-01-22 19:02:32,305 - INFO - New SL: 4899.91250\n", - "2026-01-22 19:02:32,305 - INFO - Buffer: 3.00250\n", - "2026-01-22 19:02:32,305 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:32 CET)\" executed successfully\n", - "2026-01-22 19:02:34,290 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:34 CET)\" (scheduled at 2026-01-22 19:02:34.010875+01:00)\n", - "2026-01-22 19:02:34,305 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 131.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:02:41,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:02:51,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:02,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:12,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:22,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:26,664 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:26 CET)\" (scheduled at 2026-01-22 19:03:26.633942+01:00)\n", - "2026-01-22 19:03:26,664 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:26 CET)\" executed successfully\n", - "2026-01-22 19:03:32,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:32,272 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:32 CET)\" (scheduled at 2026-01-22 19:03:32.132962+01:00)\n", - "2026-01-22 19:03:32,288 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:03:32,290 - INFO - Session: NY | ATR: 7.94929\n", - "2026-01-22 19:03:32,291 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:32 CET)\" executed successfully\n", - "2026-01-22 19:03:34,354 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:34 CET)\" (scheduled at 2026-01-22 19:03:34.010875+01:00)\n", - "2026-01-22 19:03:34,354 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 154.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:03:42,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:03:52,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:02,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:12,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:22,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:26 CET)\" (scheduled at 2026-01-22 19:04:26.633942+01:00)\n", - "2026-01-22 19:04:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:26 CET)\" executed successfully\n", - "2026-01-22 19:04:32,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:32,426 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:32 CET)\" (scheduled at 2026-01-22 19:04:32.132962+01:00)\n", - "2026-01-22 19:04:32,434 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:04:32,440 - INFO - Session: NY | ATR: 7.94929\n", - "2026-01-22 19:04:32,441 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:32 CET)\" executed successfully\n", - "2026-01-22 19:04:34,086 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:34 CET)\" (scheduled at 2026-01-22 19:04:34.010875+01:00)\n", - "2026-01-22 19:04:34,086 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 134.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:04:42,266 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:04:52,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:02,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:12,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:22,354 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:26 CET)\" (scheduled at 2026-01-22 19:05:26.633942+01:00)\n", - "2026-01-22 19:05:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:26 CET)\" executed successfully\n", - "2026-01-22 19:05:32,170 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:32 CET)\" (scheduled at 2026-01-22 19:05:32.132962+01:00)\n", - "2026-01-22 19:05:32,170 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:05:32,180 - INFO - Session: NY | ATR: 7.64429\n", - "2026-01-22 19:05:32,180 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:32 CET)\" executed successfully\n", - "2026-01-22 19:05:32,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:34,426 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:34 CET)\" (scheduled at 2026-01-22 19:05:34.010875+01:00)\n", - "2026-01-22 19:05:34,426 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 134.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:05:42,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:05:52,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:02,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:12,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:22,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:26 CET)\" (scheduled at 2026-01-22 19:06:26.633942+01:00)\n", - "2026-01-22 19:06:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:26 CET)\" executed successfully\n", - "2026-01-22 19:06:32,196 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:32 CET)\" (scheduled at 2026-01-22 19:06:32.132962+01:00)\n", - "2026-01-22 19:06:32,196 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:06:32,196 - INFO - Session: NY | ATR: 7.64429\n", - "2026-01-22 19:06:32,212 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:32 CET)\" executed successfully\n", - "2026-01-22 19:06:32,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:34,274 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:34 CET)\" (scheduled at 2026-01-22 19:06:34.010875+01:00)\n", - "2026-01-22 19:06:34,274 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 129.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:06:42,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:06:52,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:02,599 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:12,625 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:22,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:26 CET)\" (scheduled at 2026-01-22 19:07:26.633942+01:00)\n", - "2026-01-22 19:07:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:26 CET)\" executed successfully\n", - "2026-01-22 19:07:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:32 CET)\" (scheduled at 2026-01-22 19:07:32.132962+01:00)\n", - "2026-01-22 19:07:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:07:32,149 - INFO - Session: NY | ATR: 7.69714\n", - "2026-01-22 19:07:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:32 CET)\" executed successfully\n", - "2026-01-22 19:07:32,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:34,334 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:34 CET)\" (scheduled at 2026-01-22 19:07:34.010875+01:00)\n", - "2026-01-22 19:07:34,339 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 136.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:07:42,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:07:52,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:02,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:12,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:22,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:26,658 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:26 CET)\" (scheduled at 2026-01-22 19:08:26.633942+01:00)\n", - "2026-01-22 19:08:26,658 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:26 CET)\" executed successfully\n", - "2026-01-22 19:08:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:32 CET)\" (scheduled at 2026-01-22 19:08:32.132962+01:00)\n", - "2026-01-22 19:08:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:08:32,149 - INFO - Session: NY | ATR: 7.77357\n", - "2026-01-22 19:08:32,221 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:32 CET)\" executed successfully\n", - "2026-01-22 19:08:32,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:34,534 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:34 CET)\" (scheduled at 2026-01-22 19:08:34.010875+01:00)\n", - "2026-01-22 19:08:34,534 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 170.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:08:42,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:08:52,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:02,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:12,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:22,968 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:26,746 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:26 CET)\" (scheduled at 2026-01-22 19:09:26.633942+01:00)\n", - "2026-01-22 19:09:26,746 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:26 CET)\" executed successfully\n", - "2026-01-22 19:09:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:32 CET)\" (scheduled at 2026-01-22 19:09:32.132962+01:00)\n", - "2026-01-22 19:09:32,142 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:09:32,143 - INFO - Session: NY | ATR: 7.99786\n", - "2026-01-22 19:09:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:32 CET)\" executed successfully\n", - "2026-01-22 19:09:32,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:34 CET)\" (scheduled at 2026-01-22 19:09:34.010875+01:00)\n", - "2026-01-22 19:09:34,065 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 170.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:09:43,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:09:53,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:03,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:13,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:23,121 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:26 CET)\" (scheduled at 2026-01-22 19:10:26.633942+01:00)\n", - "2026-01-22 19:10:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:26 CET)\" executed successfully\n", - "2026-01-22 19:10:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:32 CET)\" (scheduled at 2026-01-22 19:10:32.132962+01:00)\n", - "2026-01-22 19:10:32,143 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:10:32,149 - INFO - Session: NY | ATR: 7.55143\n", - "2026-01-22 19:10:32,149 - INFO - πŸ“ˆ Trailing Trigger for #696946027: Tier 2: Locking 50% profit at 77.8%\n", - "2026-01-22 19:10:32,278 - INFO - βœ… Enhanced Trailing Stop updated for #696946027\n", - "2026-01-22 19:10:32,280 - INFO - Old SL: 4899.91000\n", - "2026-01-22 19:10:32,282 - INFO - New SL: 4905.91500\n", - "2026-01-22 19:10:32,283 - INFO - Buffer: 6.00500\n", - "2026-01-22 19:10:32,285 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:32 CET)\" executed successfully\n", - "2026-01-22 19:10:33,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:34 CET)\" (scheduled at 2026-01-22 19:10:34.010875+01:00)\n", - "2026-01-22 19:10:34,014 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 187.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:10:43,165 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:10:53,192 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:03,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:13,237 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:23,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:26 CET)\" (scheduled at 2026-01-22 19:11:26.633942+01:00)\n", - "2026-01-22 19:11:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:26 CET)\" executed successfully\n", - "2026-01-22 19:11:32,165 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:32 CET)\" (scheduled at 2026-01-22 19:11:32.132962+01:00)\n", - "2026-01-22 19:11:32,165 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:11:32,165 - INFO - Session: NY | ATR: 7.69357\n", - "2026-01-22 19:11:32,165 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:32 CET)\" executed successfully\n", - "2026-01-22 19:11:33,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:34,464 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:34 CET)\" (scheduled at 2026-01-22 19:11:34.010875+01:00)\n", - "2026-01-22 19:11:34,467 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 186.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:11:43,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:11:53,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:03,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:13,376 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:23,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:26 CET)\" (scheduled at 2026-01-22 19:12:26.633942+01:00)\n", - "2026-01-22 19:12:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:26 CET)\" executed successfully\n", - "2026-01-22 19:12:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:32 CET)\" (scheduled at 2026-01-22 19:12:32.132962+01:00)\n", - "2026-01-22 19:12:32,141 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:12:32,141 - INFO - Session: NY | ATR: 7.69357\n", - "2026-01-22 19:12:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:32 CET)\" executed successfully\n", - "2026-01-22 19:12:33,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:34 CET)\" (scheduled at 2026-01-22 19:12:34.010875+01:00)\n", - "2026-01-22 19:12:34,028 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 200.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:12:43,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:12:53,480 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:03,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:13,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:23,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:26 CET)\" (scheduled at 2026-01-22 19:13:26.633942+01:00)\n", - "2026-01-22 19:13:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:26 CET)\" executed successfully\n", - "2026-01-22 19:13:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:32 CET)\" (scheduled at 2026-01-22 19:13:32.132962+01:00)\n", - "2026-01-22 19:13:32,191 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:13:32,193 - INFO - Session: NY | ATR: 7.71929\n", - "2026-01-22 19:13:32,194 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:32 CET)\" executed successfully\n", - "2026-01-22 19:13:33,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:34 CET)\" (scheduled at 2026-01-22 19:13:34.010875+01:00)\n", - "2026-01-22 19:13:34,014 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 202.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:13:43,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:13:53,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:03,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:13,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:23,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:26 CET)\" (scheduled at 2026-01-22 19:14:26.633942+01:00)\n", - "2026-01-22 19:14:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:26 CET)\" executed successfully\n", - "2026-01-22 19:14:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:32 CET)\" (scheduled at 2026-01-22 19:14:32.132962+01:00)\n", - "2026-01-22 19:14:32,134 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:14:32,134 - INFO - Session: NY | ATR: 7.83643\n", - "2026-01-22 19:14:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:32 CET)\" executed successfully\n", - "2026-01-22 19:14:33,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:34,667 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:34 CET)\" (scheduled at 2026-01-22 19:14:34.010875+01:00)\n", - "2026-01-22 19:14:34,669 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 143.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:14:43,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:14:53,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:15:03,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:15:14,018 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:15:24,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:15:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:26 CET)\" (scheduled at 2026-01-22 19:15:26.633942+01:00)\n", - "2026-01-22 19:15:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:26 CET)\" executed successfully\n", - "2026-01-22 19:15:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:32 CET)\" (scheduled at 2026-01-22 19:15:32.132962+01:00)\n", - "2026-01-22 19:15:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:15:32,153 - INFO - Session: NY | ATR: 6.90429\n", - "2026-01-22 19:15:32,163 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:32 CET)\" executed successfully\n", - "2026-01-22 19:15:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:34 CET)\" (scheduled at 2026-01-22 19:15:34.010875+01:00)\n", - "2026-01-22 19:15:34,020 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:16:34 CET)\" executed successfully\n", - "2026-01-22 19:15:34,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 152.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:15:44,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:15:54,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:04,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:14,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:24,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:26,659 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:17:26 CET)\" (scheduled at 2026-01-22 19:16:26.633942+01:00)\n", - "2026-01-22 19:16:26,659 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:17:26 CET)\" executed successfully\n", - "2026-01-22 19:16:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:17:32 CET)\" (scheduled at 2026-01-22 19:16:32.132962+01:00)\n", - "2026-01-22 19:16:32,288 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:16:32,290 - INFO - Session: NY | ATR: 7.07571\n", - "2026-01-22 19:16:32,292 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:17:32 CET)\" executed successfully\n", - "2026-01-22 19:16:34,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:36,038 - WARNING - Run time of job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:17:34 CET)\" was missed by 0:00:02.027183\n", - "2026-01-22 19:16:44,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:16:54,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:04,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:14,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:24,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:26,655 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:26 CET)\" (scheduled at 2026-01-22 19:17:26.633942+01:00)\n", - "2026-01-22 19:17:26,655 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:26 CET)\" executed successfully\n", - "2026-01-22 19:17:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:32 CET)\" (scheduled at 2026-01-22 19:17:32.132962+01:00)\n", - "2026-01-22 19:17:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:17:32,149 - INFO - Session: NY | ATR: 7.13500\n", - "2026-01-22 19:17:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:32 CET)\" executed successfully\n", - "2026-01-22 19:17:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:34 CET)\" (scheduled at 2026-01-22 19:17:34.010875+01:00)\n", - "2026-01-22 19:17:34,028 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 174.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:17:34,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:44,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:17:54,445 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:04,466 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:14,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:24,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:26 CET)\" (scheduled at 2026-01-22 19:18:26.633942+01:00)\n", - "2026-01-22 19:18:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:26 CET)\" executed successfully\n", - "2026-01-22 19:18:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:32 CET)\" (scheduled at 2026-01-22 19:18:32.132962+01:00)\n", - "2026-01-22 19:18:32,150 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:18:32,150 - INFO - Session: NY | ATR: 7.13500\n", - "2026-01-22 19:18:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:32 CET)\" executed successfully\n", - "2026-01-22 19:18:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:34 CET)\" (scheduled at 2026-01-22 19:18:34.010875+01:00)\n", - "2026-01-22 19:18:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 167.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:18:34,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:44,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:18:54,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:04,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:14,639 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:24,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:26,826 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:26 CET)\" (scheduled at 2026-01-22 19:19:26.633942+01:00)\n", - "2026-01-22 19:19:26,826 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:26 CET)\" executed successfully\n", - "2026-01-22 19:19:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:32 CET)\" (scheduled at 2026-01-22 19:19:32.132962+01:00)\n", - "2026-01-22 19:19:32,142 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:19:32,144 - INFO - Session: NY | ATR: 7.13500\n", - "2026-01-22 19:19:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:32 CET)\" executed successfully\n", - "2026-01-22 19:19:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:34 CET)\" (scheduled at 2026-01-22 19:19:34.010875+01:00)\n", - "2026-01-22 19:19:34,013 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 164.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:19:34,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:44,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:19:54,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:04,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:14,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:24,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:26 CET)\" (scheduled at 2026-01-22 19:20:26.633942+01:00)\n", - "2026-01-22 19:20:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:26 CET)\" executed successfully\n", - "2026-01-22 19:20:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:32 CET)\" (scheduled at 2026-01-22 19:20:32.132962+01:00)\n", - "2026-01-22 19:20:32,139 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:20:32,139 - INFO - Session: NY | ATR: 6.68643\n", - "2026-01-22 19:20:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:32 CET)\" executed successfully\n", - "2026-01-22 19:20:34,277 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:34 CET)\" (scheduled at 2026-01-22 19:20:34.010875+01:00)\n", - "2026-01-22 19:20:34,277 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 185.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:20:34,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:44,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:20:54,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:04,909 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:14,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:24,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:26,774 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:26 CET)\" (scheduled at 2026-01-22 19:21:26.633942+01:00)\n", - "2026-01-22 19:21:26,774 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:26 CET)\" executed successfully\n", - "2026-01-22 19:21:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:32 CET)\" (scheduled at 2026-01-22 19:21:32.132962+01:00)\n", - "2026-01-22 19:21:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:21:32,149 - INFO - Session: NY | ATR: 6.72429\n", - "2026-01-22 19:21:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:32 CET)\" executed successfully\n", - "2026-01-22 19:21:34,030 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:34 CET)\" (scheduled at 2026-01-22 19:21:34.010875+01:00)\n", - "2026-01-22 19:21:34,030 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 193.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:21:35,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:45,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:21:55,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:05,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:15,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:25,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:26,696 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:26 CET)\" (scheduled at 2026-01-22 19:22:26.633942+01:00)\n", - "2026-01-22 19:22:26,696 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:26 CET)\" executed successfully\n", - "2026-01-22 19:22:32,343 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:32 CET)\" (scheduled at 2026-01-22 19:22:32.132962+01:00)\n", - "2026-01-22 19:22:32,343 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:22:32,343 - INFO - Session: NY | ATR: 6.75071\n", - "2026-01-22 19:22:32,343 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:32 CET)\" executed successfully\n", - "2026-01-22 19:22:34,040 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:34 CET)\" (scheduled at 2026-01-22 19:22:34.010875+01:00)\n", - "2026-01-22 19:22:34,040 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 169.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:22:35,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:45,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:22:55,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:05,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:15,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:25,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:26,899 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:23:26 CET)\" (scheduled at 2026-01-22 19:23:26.633942+01:00)\n", - "2026-01-22 19:23:26,899 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:24:26 CET)\" executed successfully\n", - "2026-01-22 19:23:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:24:32 CET)\" (scheduled at 2026-01-22 19:23:32.132962+01:00)\n", - "2026-01-22 19:23:32,134 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:23:32,134 - INFO - Session: NY | ATR: 6.75071\n", - "2026-01-22 19:23:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:24:32 CET)\" executed successfully\n", - "2026-01-22 19:23:34,037 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:24:34 CET)\" (scheduled at 2026-01-22 19:23:34.010875+01:00)\n", - "2026-01-22 19:23:34,037 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 176.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:23:35,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:45,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:23:55,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:05,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:15,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:25,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:26 CET)\" (scheduled at 2026-01-22 19:24:26.633942+01:00)\n", - "2026-01-22 19:24:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:26 CET)\" executed successfully\n", - "2026-01-22 19:24:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:32 CET)\" (scheduled at 2026-01-22 19:24:32.132962+01:00)\n", - "2026-01-22 19:24:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:24:32,167 - INFO - Session: NY | ATR: 6.75571\n", - "2026-01-22 19:24:32,169 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:32 CET)\" executed successfully\n", - "2026-01-22 19:24:34,225 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:34 CET)\" (scheduled at 2026-01-22 19:24:34.010875+01:00)\n", - "2026-01-22 19:24:34,225 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 165.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:24:35,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:45,453 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:24:55,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:05,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:15,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:25,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:26,805 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:26 CET)\" (scheduled at 2026-01-22 19:25:26.633942+01:00)\n", - "2026-01-22 19:25:26,805 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:26 CET)\" executed successfully\n", - "2026-01-22 19:25:32,382 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:32 CET)\" (scheduled at 2026-01-22 19:25:32.132962+01:00)\n", - "2026-01-22 19:25:32,409 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:25:32,413 - INFO - Session: NY | ATR: 6.59071\n", - "2026-01-22 19:25:32,415 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:32 CET)\" executed successfully\n", - "2026-01-22 19:25:34,743 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:34 CET)\" (scheduled at 2026-01-22 19:25:34.010875+01:00)\n", - "2026-01-22 19:25:34,743 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 140.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:25:35,583 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:45,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:25:55,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:05,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:15,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:25,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:26 CET)\" (scheduled at 2026-01-22 19:26:26.633942+01:00)\n", - "2026-01-22 19:26:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:26 CET)\" executed successfully\n", - "2026-01-22 19:26:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:32 CET)\" (scheduled at 2026-01-22 19:26:32.132962+01:00)\n", - "2026-01-22 19:26:32,135 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:26:32,135 - INFO - Session: NY | ATR: 6.64500\n", - "2026-01-22 19:26:32,187 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:32 CET)\" executed successfully\n", - "2026-01-22 19:26:34,275 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:34 CET)\" (scheduled at 2026-01-22 19:26:34.010875+01:00)\n", - "2026-01-22 19:26:34,275 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 147.10\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:26:35,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:45,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:26:55,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:05,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:15,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:25,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:26 CET)\" (scheduled at 2026-01-22 19:27:26.633942+01:00)\n", - "2026-01-22 19:27:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:26 CET)\" executed successfully\n", - "2026-01-22 19:27:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:32 CET)\" (scheduled at 2026-01-22 19:27:32.132962+01:00)\n", - "2026-01-22 19:27:32,151 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:27:32,151 - INFO - Session: NY | ATR: 6.69143\n", - "2026-01-22 19:27:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:32 CET)\" executed successfully\n", - "2026-01-22 19:27:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:34 CET)\" (scheduled at 2026-01-22 19:27:34.010875+01:00)\n", - "2026-01-22 19:27:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 161.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:27:35,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:45,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:27:55,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:05,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:15,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:26,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:26 CET)\" (scheduled at 2026-01-22 19:28:26.633942+01:00)\n", - "2026-01-22 19:28:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:26 CET)\" executed successfully\n", - "2026-01-22 19:28:32,594 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:32 CET)\" (scheduled at 2026-01-22 19:28:32.132962+01:00)\n", - "2026-01-22 19:28:32,594 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:28:32,594 - INFO - Session: NY | ATR: 6.72571\n", - "2026-01-22 19:28:32,594 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:32 CET)\" executed successfully\n", - "2026-01-22 19:28:34,070 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:34 CET)\" (scheduled at 2026-01-22 19:28:34.010875+01:00)\n", - "2026-01-22 19:28:34,079 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 157.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:28:36,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:46,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:28:56,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:06,100 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:16,131 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:26,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:26,875 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:26 CET)\" (scheduled at 2026-01-22 19:29:26.633942+01:00)\n", - "2026-01-22 19:29:26,878 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:26 CET)\" executed successfully\n", - "2026-01-22 19:29:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:32 CET)\" (scheduled at 2026-01-22 19:29:32.132962+01:00)\n", - "2026-01-22 19:29:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:29:32,149 - INFO - Session: NY | ATR: 6.82714\n", - "2026-01-22 19:29:32,160 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:32 CET)\" executed successfully\n", - "2026-01-22 19:29:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:34 CET)\" (scheduled at 2026-01-22 19:29:34.010875+01:00)\n", - "2026-01-22 19:29:34,026 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 158.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:29:36,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:46,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:29:56,455 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:00,010 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 20:00:00 CET)\" (scheduled at 2026-01-22 19:30:00+01:00)\n", - "2026-01-22 19:30:00,128 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 20:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 19:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.91 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:30:06,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:16,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:26,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:27,195 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:26 CET)\" (scheduled at 2026-01-22 19:30:26.633942+01:00)\n", - "2026-01-22 19:30:27,197 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:26 CET)\" executed successfully\n", - "2026-01-22 19:30:32,254 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:32 CET)\" (scheduled at 2026-01-22 19:30:32.132962+01:00)\n", - "2026-01-22 19:30:32,254 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:30:32,254 - INFO - Session: NY | ATR: 6.10071\n", - "2026-01-22 19:30:32,254 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:32 CET)\" executed successfully\n", - "2026-01-22 19:30:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:34 CET)\" (scheduled at 2026-01-22 19:30:34.010875+01:00)\n", - "2026-01-22 19:30:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 158.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:30:36,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:46,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:30:56,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:06,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:16,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:26,689 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:26,836 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:26 CET)\" (scheduled at 2026-01-22 19:31:26.633942+01:00)\n", - "2026-01-22 19:31:26,848 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:26 CET)\" executed successfully\n", - "2026-01-22 19:31:32,182 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:32 CET)\" (scheduled at 2026-01-22 19:31:32.132962+01:00)\n", - "2026-01-22 19:31:32,191 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:31:32,192 - INFO - Session: NY | ATR: 6.12286\n", - "2026-01-22 19:31:32,194 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:32 CET)\" executed successfully\n", - "2026-01-22 19:31:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:34 CET)\" (scheduled at 2026-01-22 19:31:34.010875+01:00)\n", - "2026-01-22 19:31:34,026 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 151.10\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:31:36,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:46,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:31:57,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:07,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:17,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:26,656 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:26 CET)\" (scheduled at 2026-01-22 19:32:26.633942+01:00)\n", - "2026-01-22 19:32:26,656 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:26 CET)\" executed successfully\n", - "2026-01-22 19:32:27,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:32 CET)\" (scheduled at 2026-01-22 19:32:32.132962+01:00)\n", - "2026-01-22 19:32:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:32:32,164 - INFO - Session: NY | ATR: 6.19929\n", - "2026-01-22 19:32:32,164 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:32 CET)\" executed successfully\n", - "2026-01-22 19:32:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:34 CET)\" (scheduled at 2026-01-22 19:32:34.010875+01:00)\n", - "2026-01-22 19:32:34,021 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 152.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:32:37,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:47,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:32:57,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:07,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:17,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:26 CET)\" (scheduled at 2026-01-22 19:33:26.633942+01:00)\n", - "2026-01-22 19:33:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:26 CET)\" executed successfully\n", - "2026-01-22 19:33:27,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:32 CET)\" (scheduled at 2026-01-22 19:33:32.132962+01:00)\n", - "2026-01-22 19:33:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:33:32,149 - INFO - Session: NY | ATR: 6.19929\n", - "2026-01-22 19:33:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:32 CET)\" executed successfully\n", - "2026-01-22 19:33:34,312 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:34 CET)\" (scheduled at 2026-01-22 19:33:34.010875+01:00)\n", - "2026-01-22 19:33:34,312 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 166.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:33:37,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:47,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:33:57,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:07,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:17,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:26 CET)\" (scheduled at 2026-01-22 19:34:26.633942+01:00)\n", - "2026-01-22 19:34:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:26 CET)\" executed successfully\n", - "2026-01-22 19:34:27,684 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:32,277 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:32 CET)\" (scheduled at 2026-01-22 19:34:32.132962+01:00)\n", - "2026-01-22 19:34:32,277 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:34:32,277 - INFO - Session: NY | ATR: 6.42714\n", - "2026-01-22 19:34:32,277 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:32 CET)\" executed successfully\n", - "2026-01-22 19:34:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:34 CET)\" (scheduled at 2026-01-22 19:34:34.010875+01:00)\n", - "2026-01-22 19:34:34,026 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 183.90\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:34:37,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:47,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:34:57,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:07,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:17,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:26,760 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:26 CET)\" (scheduled at 2026-01-22 19:35:26.633942+01:00)\n", - "2026-01-22 19:35:26,760 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:26 CET)\" executed successfully\n", - "2026-01-22 19:35:27,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:32,243 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:32 CET)\" (scheduled at 2026-01-22 19:35:32.132962+01:00)\n", - "2026-01-22 19:35:32,243 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:35:32,243 - INFO - Session: NY | ATR: 5.98286\n", - "2026-01-22 19:35:32,243 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:32 CET)\" executed successfully\n", - "2026-01-22 19:35:34,101 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:34 CET)\" (scheduled at 2026-01-22 19:35:34.010875+01:00)\n", - "2026-01-22 19:35:34,101 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 191.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:35:37,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:47,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:35:57,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:07,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:17,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:26,743 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:26 CET)\" (scheduled at 2026-01-22 19:36:26.633942+01:00)\n", - "2026-01-22 19:36:26,743 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:26 CET)\" executed successfully\n", - "2026-01-22 19:36:27,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:32,299 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:32 CET)\" (scheduled at 2026-01-22 19:36:32.132962+01:00)\n", - "2026-01-22 19:36:32,299 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:36:32,306 - INFO - Session: NY | ATR: 6.04143\n", - "2026-01-22 19:36:32,306 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:32 CET)\" executed successfully\n", - "2026-01-22 19:36:34,185 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:34 CET)\" (scheduled at 2026-01-22 19:36:34.010875+01:00)\n", - "2026-01-22 19:36:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 188.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:36:38,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:48,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:36:58,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:08,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:18,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:26,656 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:26 CET)\" (scheduled at 2026-01-22 19:37:26.633942+01:00)\n", - "2026-01-22 19:37:26,656 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:26 CET)\" executed successfully\n", - "2026-01-22 19:37:28,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:32 CET)\" (scheduled at 2026-01-22 19:37:32.132962+01:00)\n", - "2026-01-22 19:37:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:37:32,149 - INFO - Session: NY | ATR: 6.04857\n", - "2026-01-22 19:37:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:32 CET)\" executed successfully\n", - "2026-01-22 19:37:34,216 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:34 CET)\" (scheduled at 2026-01-22 19:37:34.010875+01:00)\n", - "2026-01-22 19:37:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 201.30\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:37:38,153 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:48,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:37:58,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:08,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:18,264 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:26,731 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:26 CET)\" (scheduled at 2026-01-22 19:38:26.633942+01:00)\n", - "2026-01-22 19:38:26,731 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:26 CET)\" executed successfully\n", - "2026-01-22 19:38:28,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:32 CET)\" (scheduled at 2026-01-22 19:38:32.132962+01:00)\n", - "2026-01-22 19:38:32,136 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:38:32,136 - INFO - Session: NY | ATR: 6.10929\n", - "2026-01-22 19:38:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:32 CET)\" executed successfully\n", - "2026-01-22 19:38:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:34 CET)\" (scheduled at 2026-01-22 19:38:34.010875+01:00)\n", - "2026-01-22 19:38:34,024 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 208.10\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:38:38,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:48,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:38:58,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:08,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:18,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:26 CET)\" (scheduled at 2026-01-22 19:39:26.633942+01:00)\n", - "2026-01-22 19:39:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:26 CET)\" executed successfully\n", - "2026-01-22 19:39:28,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:32 CET)\" (scheduled at 2026-01-22 19:39:32.132962+01:00)\n", - "2026-01-22 19:39:32,153 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:39:32,154 - INFO - Session: NY | ATR: 6.13786\n", - "2026-01-22 19:39:32,156 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:32 CET)\" executed successfully\n", - "2026-01-22 19:39:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:34 CET)\" (scheduled at 2026-01-22 19:39:34.010875+01:00)\n", - "2026-01-22 19:39:34,026 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 193.80\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:39:34,822 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 20:39:34 CET)\" (scheduled at 2026-01-22 19:39:34.806528+01:00)\n", - "2026-01-22 19:39:34,843 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 20:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[19:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:39:38,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:48,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:39:58,549 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:08,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:18,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:26 CET)\" (scheduled at 2026-01-22 19:40:26.633942+01:00)\n", - "2026-01-22 19:40:26,674 - WARNING - No history found for ticket 696946027\n", - "2026-01-22 19:40:26,675 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:26 CET)\" executed successfully\n", - "2026-01-22 19:40:28,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:32,273 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:32 CET)\" (scheduled at 2026-01-22 19:40:32.132962+01:00)\n", - "2026-01-22 19:40:32,273 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:32 CET)\" executed successfully\n", - "2026-01-22 19:40:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:34 CET)\" (scheduled at 2026-01-22 19:40:34.010875+01:00)\n", - "2026-01-22 19:40:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 717.71 | 90.9794 | 9.79447 | 4914.12 |\n", - "| H4 | uptrend | 447.18 | 43.5771 | 2.92302 | 4914.12 |\n", - "| H1 | uptrend | 537.6 | 24.8201 | 2.00151 | 4914.12 |\n", - "| M30 | uptrend | 620.9 | 15.2759 | 1.42272 | 4914.12 |\n", - "| M15 | downtrend | 72.19 | 10.8366 | -0.117343 | 4914.12 |\n", - "| M5 | uptrend | 542.48 | 6.0602 | 0.493131 | 4914.12 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 609.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.72% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 183699.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 98.7%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 98.7/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 98.7%\n", - " πŸ“ˆ Enhanced Score: 73.1%\n", - " πŸ”€ HYBRID (60/40): 88.5%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:40:38,641 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:48,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:40:58,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:08,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:18,754 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:26 CET)\" (scheduled at 2026-01-22 19:41:26.633942+01:00)\n", - "2026-01-22 19:41:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:26 CET)\" executed successfully\n", - "2026-01-22 19:41:28,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:32 CET)\" (scheduled at 2026-01-22 19:41:32.132962+01:00)\n", - "2026-01-22 19:41:32,150 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:41:32,151 - INFO - Session: NY | ATR: 5.74000\n", - "2026-01-22 19:41:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:32 CET)\" executed successfully\n", - "2026-01-22 19:41:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:34 CET)\" (scheduled at 2026-01-22 19:41:34.010875+01:00)\n", - "2026-01-22 19:41:34,023 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 196.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:41:38,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:48,834 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:41:58,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:08,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:18,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:26 CET)\" (scheduled at 2026-01-22 19:42:26.633942+01:00)\n", - "2026-01-22 19:42:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:26 CET)\" executed successfully\n", - "2026-01-22 19:42:28,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:32 CET)\" (scheduled at 2026-01-22 19:42:32.132962+01:00)\n", - "2026-01-22 19:42:32,204 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:42:32,234 - INFO - Session: NY | ATR: 5.83500\n", - "2026-01-22 19:42:32,236 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:32 CET)\" executed successfully\n", - "2026-01-22 19:42:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:34 CET)\" (scheduled at 2026-01-22 19:42:34.010875+01:00)\n", - "2026-01-22 19:42:34,021 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 175.70\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:42:38,954 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:48,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:42:58,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:09,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:19,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:26,658 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:26 CET)\" (scheduled at 2026-01-22 19:43:26.633942+01:00)\n", - "2026-01-22 19:43:26,658 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:26 CET)\" executed successfully\n", - "2026-01-22 19:43:29,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:32 CET)\" (scheduled at 2026-01-22 19:43:32.132962+01:00)\n", - "2026-01-22 19:43:32,143 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:43:32,143 - INFO - Session: NY | ATR: 5.83500\n", - "2026-01-22 19:43:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:32 CET)\" executed successfully\n", - "2026-01-22 19:43:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:34 CET)\" (scheduled at 2026-01-22 19:43:34.010875+01:00)\n", - "2026-01-22 19:43:34,012 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 187.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:43:39,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:49,131 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:43:59,147 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:09,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:19,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:26,655 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:26 CET)\" (scheduled at 2026-01-22 19:44:26.633942+01:00)\n", - "2026-01-22 19:44:26,655 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:26 CET)\" executed successfully\n", - "2026-01-22 19:44:29,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:32 CET)\" (scheduled at 2026-01-22 19:44:32.132962+01:00)\n", - "2026-01-22 19:44:32,149 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:44:32,151 - INFO - Session: NY | ATR: 5.83500\n", - "2026-01-22 19:44:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:32 CET)\" executed successfully\n", - "2026-01-22 19:44:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:34 CET)\" (scheduled at 2026-01-22 19:44:34.010875+01:00)\n", - "2026-01-22 19:44:34,014 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 191.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:44:39,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:49,270 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:44:59,297 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:09,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:19,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:26 CET)\" (scheduled at 2026-01-22 19:45:26.633942+01:00)\n", - "2026-01-22 19:45:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:26 CET)\" executed successfully\n", - "2026-01-22 19:45:29,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:32,178 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:32 CET)\" (scheduled at 2026-01-22 19:45:32.132962+01:00)\n", - "2026-01-22 19:45:32,178 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:45:32,185 - INFO - Session: NY | ATR: 5.52071\n", - "2026-01-22 19:45:32,186 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:32 CET)\" executed successfully\n", - "2026-01-22 19:45:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:34 CET)\" (scheduled at 2026-01-22 19:45:34.010875+01:00)\n", - "2026-01-22 19:45:34,020 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 194.00\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:45:39,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:49,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:45:59,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:09,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:19,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:26 CET)\" (scheduled at 2026-01-22 19:46:26.633942+01:00)\n", - "2026-01-22 19:46:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:26 CET)\" executed successfully\n", - "2026-01-22 19:46:29,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:32 CET)\" (scheduled at 2026-01-22 19:46:32.132962+01:00)\n", - "2026-01-22 19:46:32,143 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:46:32,152 - INFO - Session: NY | ATR: 5.62357\n", - "2026-01-22 19:46:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:32 CET)\" executed successfully\n", - "2026-01-22 19:46:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:34 CET)\" (scheduled at 2026-01-22 19:46:34.010875+01:00)\n", - "2026-01-22 19:46:34,031 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 182.40\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:46:39,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:49,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:46:59,647 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:09,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:19,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:26 CET)\" (scheduled at 2026-01-22 19:47:26.633942+01:00)\n", - "2026-01-22 19:47:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:26 CET)\" executed successfully\n", - "2026-01-22 19:47:29,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:32 CET)\" (scheduled at 2026-01-22 19:47:32.132962+01:00)\n", - "2026-01-22 19:47:32,165 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:47:32,167 - INFO - Session: NY | ATR: 5.62857\n", - "2026-01-22 19:47:32,168 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:32 CET)\" executed successfully\n", - "2026-01-22 19:47:34,119 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:34 CET)\" (scheduled at 2026-01-22 19:47:34.010875+01:00)\n", - "2026-01-22 19:47:34,119 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 181.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:47:39,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:49,777 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:47:59,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:09,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:19,847 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:26,666 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:26 CET)\" (scheduled at 2026-01-22 19:48:26.633942+01:00)\n", - "2026-01-22 19:48:26,666 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:26 CET)\" executed successfully\n", - "2026-01-22 19:48:29,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:32 CET)\" (scheduled at 2026-01-22 19:48:32.132962+01:00)\n", - "2026-01-22 19:48:32,161 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:48:32,161 - INFO - Session: NY | ATR: 5.62857\n", - "2026-01-22 19:48:32,172 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:32 CET)\" executed successfully\n", - "2026-01-22 19:48:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:34 CET)\" (scheduled at 2026-01-22 19:48:34.010875+01:00)\n", - "2026-01-22 19:48:34,014 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 195.20\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:48:39,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:49,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:48:59,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:49:09,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:49:19,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:49:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:26 CET)\" (scheduled at 2026-01-22 19:49:26.633942+01:00)\n", - "2026-01-22 19:49:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:26 CET)\" executed successfully\n", - "2026-01-22 19:49:29,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:49:32,327 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:32 CET)\" (scheduled at 2026-01-22 19:49:32.132962+01:00)\n", - "2026-01-22 19:49:32,327 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:49:32,327 - INFO - Session: NY | ATR: 5.87143\n", - "2026-01-22 19:49:32,336 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:32 CET)\" executed successfully\n", - "2026-01-22 19:49:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:34 CET)\" (scheduled at 2026-01-22 19:49:34.010875+01:00)\n", - "2026-01-22 19:49:34,021 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 221.50\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:49:40,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:49:50,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:00,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:10,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:20,100 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:26 CET)\" (scheduled at 2026-01-22 19:50:26.633942+01:00)\n", - "2026-01-22 19:50:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:26 CET)\" executed successfully\n", - "2026-01-22 19:50:30,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:32 CET)\" (scheduled at 2026-01-22 19:50:32.132962+01:00)\n", - "2026-01-22 19:50:32,148 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:50:32,148 - INFO - Session: NY | ATR: 5.36286\n", - "2026-01-22 19:50:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:32 CET)\" executed successfully\n", - "2026-01-22 19:50:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:34 CET)\" (scheduled at 2026-01-22 19:50:34.010875+01:00)\n", - "2026-01-22 19:50:34,034 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 229.30\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:50:40,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:50:50,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:00,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:10,210 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:20,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:26 CET)\" (scheduled at 2026-01-22 19:51:26.633942+01:00)\n", - "2026-01-22 19:51:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:26 CET)\" executed successfully\n", - "2026-01-22 19:51:30,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:32 CET)\" (scheduled at 2026-01-22 19:51:32.132962+01:00)\n", - "2026-01-22 19:51:32,139 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:51:32,139 - INFO - Session: NY | ATR: 5.53143\n", - "2026-01-22 19:51:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:32 CET)\" executed successfully\n", - "2026-01-22 19:51:34,030 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:34 CET)\" (scheduled at 2026-01-22 19:51:34.010875+01:00)\n", - "2026-01-22 19:51:34,037 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 213.10\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:51:40,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:51:50,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:00,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:10,346 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:20,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:26 CET)\" (scheduled at 2026-01-22 19:52:26.633942+01:00)\n", - "2026-01-22 19:52:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:26 CET)\" executed successfully\n", - "2026-01-22 19:52:30,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:32,380 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:32 CET)\" (scheduled at 2026-01-22 19:52:32.132962+01:00)\n", - "2026-01-22 19:52:32,380 - INFO - \n", - "πŸ” Enhanced Position Monitor - 1 position(s)\n", - "2026-01-22 19:52:32,395 - INFO - Session: NY | ATR: 5.53143\n", - "2026-01-22 19:52:32,395 - INFO - πŸ“ˆ Trailing Trigger for #696946027: Tier 3: Locking 75% profit at 96.0%\n", - "2026-01-22 19:52:32,762 - INFO - βœ… Enhanced Trailing Stop updated for #696946027\n", - "2026-01-22 19:52:32,768 - INFO - Old SL: 4905.92000\n", - "2026-01-22 19:52:32,769 - INFO - New SL: 4911.91750\n", - "2026-01-22 19:52:32,772 - INFO - Buffer: 5.99750\n", - "2026-01-22 19:52:32,774 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:32 CET)\" executed successfully\n", - "2026-01-22 19:52:34,034 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:34 CET)\" (scheduled at 2026-01-22 19:52:34.010875+01:00)\n", - "2026-01-22 19:52:34,034 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸ›‘ TRADE BLOCKIERT: 1/1 Positionen aktiv\n", - " BUY @ 4893.91 | 🟒 235.60\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:52:40,411 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:52:50,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:00,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:10,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:20,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:26 CET)\" (scheduled at 2026-01-22 19:53:26.633942+01:00)\n", - "2026-01-22 19:53:26,658 - INFO - βœ… Updated closed position 696946027: manual_close, Profit: 15.33\n", - "2026-01-22 19:53:27,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:26 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "⚠️ Telegram send failed: 400\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:53:30,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:32 CET)\" (scheduled at 2026-01-22 19:53:32.132962+01:00)\n", - "2026-01-22 19:53:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:32 CET)\" executed successfully\n", - "2026-01-22 19:53:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:34 CET)\" (scheduled at 2026-01-22 19:53:34.010875+01:00)\n", - "2026-01-22 19:53:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 716.38 | 91.1537 | 9.79504 | 4916.55 |\n", - "| H4 | uptrend | 445.49 | 43.7514 | 2.9236 | 4916.54 |\n", - "| H1 | uptrend | 534.01 | 24.9944 | 2.00209 | 4916.54 |\n", - "| M30 | uptrend | 614.14 | 15.4502 | 1.42329 | 4916.54 |\n", - "| M15 | downtrend | 58.37 | 10.5711 | -0.092562 | 4916.54 |\n", - "| M5 | uptrend | 574.1 | 6.0445 | 0.520515 | 4916.54 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 608.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 184360.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:53:40,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:53:50,568 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:00,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:10,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:20,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:26 CET)\" (scheduled at 2026-01-22 19:54:26.633942+01:00)\n", - "2026-01-22 19:54:26,661 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:26 CET)\" executed successfully\n", - "2026-01-22 19:54:30,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:32,259 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:32 CET)\" (scheduled at 2026-01-22 19:54:32.132962+01:00)\n", - "2026-01-22 19:54:32,259 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:32 CET)\" executed successfully\n", - "2026-01-22 19:54:34,199 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:34 CET)\" (scheduled at 2026-01-22 19:54:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 716.37 | 91.1537 | 9.7949 | 4915.97 |\n", - "| H4 | uptrend | 445.47 | 43.7514 | 2.92346 | 4915.97 |\n", - "| H1 | uptrend | 533.97 | 24.9944 | 2.00195 | 4915.97 |\n", - "| M30 | uptrend | 614.08 | 15.4502 | 1.42316 | 4915.97 |\n", - "| M15 | downtrend | 58.46 | 10.5711 | -0.092697 | 4915.97 |\n", - "| M5 | uptrend | 573.95 | 6.0445 | 0.520381 | 4915.97 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 608.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 184345.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:54:34,408 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:54:40,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:54:50,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:00,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:10,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:20,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:26 CET)\" (scheduled at 2026-01-22 19:55:26.633942+01:00)\n", - "2026-01-22 19:55:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:26 CET)\" executed successfully\n", - "2026-01-22 19:55:30,771 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:32 CET)\" (scheduled at 2026-01-22 19:55:32.132962+01:00)\n", - "2026-01-22 19:55:32,164 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:32 CET)\" executed successfully\n", - "2026-01-22 19:55:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:34 CET)\" (scheduled at 2026-01-22 19:55:34.010875+01:00)\n", - "2026-01-22 19:55:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.59 | 91.2573 | 9.79548 | 4918.4 |\n", - "| H4 | uptrend | 444.5 | 43.8549 | 2.92404 | 4918.4 |\n", - "| H1 | uptrend | 531.92 | 25.098 | 2.00252 | 4918.4 |\n", - "| M30 | uptrend | 610.24 | 15.5538 | 1.42373 | 4918.4 |\n", - "| M15 | downtrend | 57.53 | 10.6747 | -0.092123 | 4918.4 |\n", - "| M5 | uptrend | 612.65 | 5.8191 | 0.534761 | 4918.4 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.98% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 185323.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:55:40,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:55:50,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:00,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:10,865 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:20,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:27,115 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:26 CET)\" (scheduled at 2026-01-22 19:56:26.633942+01:00)\n", - "2026-01-22 19:56:27,115 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:26 CET)\" executed successfully\n", - "2026-01-22 19:56:30,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:32 CET)\" (scheduled at 2026-01-22 19:56:32.132962+01:00)\n", - "2026-01-22 19:56:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:32 CET)\" executed successfully\n", - "2026-01-22 19:56:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:34 CET)\" (scheduled at 2026-01-22 19:56:34.010875+01:00)\n", - "2026-01-22 19:56:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.57 | 91.2573 | 9.79509 | 4916.77 |\n", - "| H4 | uptrend | 444.44 | 43.8549 | 2.92365 | 4916.77 |\n", - "| H1 | uptrend | 531.82 | 25.098 | 2.00214 | 4916.77 |\n", - "| M30 | uptrend | 610.08 | 15.5538 | 1.42335 | 4916.77 |\n", - "| M15 | downtrend | 57.77 | 10.6747 | -0.092508 | 4916.77 |\n", - "| M5 | uptrend | 611.23 | 5.8284 | 0.534376 | 4916.77 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.97% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 185221.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:56:40,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:56:50,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:00,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:10,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:21,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:26 CET)\" (scheduled at 2026-01-22 19:57:26.633942+01:00)\n", - "2026-01-22 19:57:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:26 CET)\" executed successfully\n", - "2026-01-22 19:57:31,034 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:32 CET)\" (scheduled at 2026-01-22 19:57:32.132962+01:00)\n", - "2026-01-22 19:57:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:32 CET)\" executed successfully\n", - "2026-01-22 19:57:34,037 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:34 CET)\" (scheduled at 2026-01-22 19:57:34.010875+01:00)\n", - "2026-01-22 19:57:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.55 | 91.2573 | 9.79491 | 4915.99 |\n", - "| H4 | uptrend | 444.41 | 43.8549 | 2.92347 | 4915.99 |\n", - "| H1 | uptrend | 531.77 | 25.098 | 2.00196 | 4915.99 |\n", - "| M30 | uptrend | 610 | 15.5538 | 1.42316 | 4915.99 |\n", - "| M15 | downtrend | 57.89 | 10.6747 | -0.092692 | 4915.99 |\n", - "| M5 | uptrend | 602.67 | 5.9091 | 0.534192 | 4915.99 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.10)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.97% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 184869.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:57:41,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:57:51,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:01,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:11,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:21,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:26 CET)\" (scheduled at 2026-01-22 19:58:26.633942+01:00)\n", - "2026-01-22 19:58:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:26 CET)\" executed successfully\n", - "2026-01-22 19:58:31,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:32 CET)\" (scheduled at 2026-01-22 19:58:32.132962+01:00)\n", - "2026-01-22 19:58:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:32 CET)\" executed successfully\n", - "2026-01-22 19:58:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:34 CET)\" (scheduled at 2026-01-22 19:58:34.010875+01:00)\n", - "2026-01-22 19:58:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 19:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.55 | 91.2573 | 9.79489 | 4915.93 |\n", - "| H4 | uptrend | 444.41 | 43.8549 | 2.92345 | 4915.93 |\n", - "| H1 | uptrend | 531.77 | 25.098 | 2.00194 | 4915.93 |\n", - "| M30 | uptrend | 610 | 15.5538 | 1.42316 | 4915.97 |\n", - "| M15 | downtrend | 57.89 | 10.6747 | -0.09269 | 4916 |\n", - "| M5 | uptrend | 602.67 | 5.9091 | 0.534194 | 4916 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.10)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.97% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 184868.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:58:41,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:58:51,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:01,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:11,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:21,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:26 CET)\" (scheduled at 2026-01-22 19:59:26.633942+01:00)\n", - "2026-01-22 19:59:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:26 CET)\" executed successfully\n", - "2026-01-22 19:59:31,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:32 CET)\" (scheduled at 2026-01-22 19:59:32.132962+01:00)\n", - "2026-01-22 19:59:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:32 CET)\" executed successfully\n", - "2026-01-22 19:59:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:34 CET)\" (scheduled at 2026-01-22 19:59:34.010875+01:00)\n", - "2026-01-22 19:59:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.56 | 91.2573 | 9.79496 | 4916.2 |\n", - "| H4 | uptrend | 444.42 | 43.8549 | 2.92352 | 4916.2 |\n", - "| H1 | uptrend | 531.78 | 25.098 | 2.00201 | 4916.2 |\n", - "| M30 | uptrend | 610.02 | 15.5538 | 1.42321 | 4916.2 |\n", - "| M15 | downtrend | 57.86 | 10.6747 | -0.092643 | 4916.2 |\n", - "| M5 | uptrend | 602.73 | 5.9091 | 0.534241 | 4916.2 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.10)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 98.97% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 184875.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.0%\n", - " πŸ“ˆ Enhanced Score: 73.2%\n", - " πŸ”€ HYBRID (60/40): 88.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 19:59:41,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 19:59:51,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:00,002 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 20:30:00 CET)\" (scheduled at 2026-01-22 20:00:00+01:00)\n", - "2026-01-22 20:00:00,002 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 20:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 20:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 25.22 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:00:01,361 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:11,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:21,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:26 CET)\" (scheduled at 2026-01-22 20:00:26.633942+01:00)\n", - "2026-01-22 20:00:26,655 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:26 CET)\" executed successfully\n", - "2026-01-22 20:00:31,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:32 CET)\" (scheduled at 2026-01-22 20:00:32.132962+01:00)\n", - "2026-01-22 20:00:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:32 CET)\" executed successfully\n", - "2026-01-22 20:00:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:34 CET)\" (scheduled at 2026-01-22 20:00:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:00:34,273 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.58 | 91.2573 | 9.79534 | 4917.8 |\n", - "| H4 | uptrend | 444.48 | 43.8549 | 2.92389 | 4917.8 |\n", - "| H1 | uptrend | 579.77 | 23.4667 | 2.0408 | 4917.83 |\n", - "| M30 | uptrend | 652.19 | 14.6042 | 1.4287 | 4917.83 |\n", - "| M15 | downtrend | 42.17 | 10.0737 | -0.063714 | 4917.83 |\n", - "| M5 | uptrend | 646.17 | 5.6485 | 0.54748 | 4917.82 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.27% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195276.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:00:41,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:00:51,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:01,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:11,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:21,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:26,766 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:26 CET)\" (scheduled at 2026-01-22 20:01:26.633942+01:00)\n", - "2026-01-22 20:01:26,766 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:26 CET)\" executed successfully\n", - "2026-01-22 20:01:31,581 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:32 CET)\" (scheduled at 2026-01-22 20:01:32.132962+01:00)\n", - "2026-01-22 20:01:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:32 CET)\" executed successfully\n", - "2026-01-22 20:01:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:34 CET)\" (scheduled at 2026-01-22 20:01:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:01:34,299 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.57 | 91.2573 | 9.79517 | 4917.08 |\n", - "| H4 | uptrend | 444.45 | 43.8549 | 2.92372 | 4917.08 |\n", - "| H1 | uptrend | 579.35 | 23.4817 | 2.04062 | 4917.08 |\n", - "| M30 | uptrend | 651.44 | 14.6192 | 1.42852 | 4917.09 |\n", - "| M15 | downtrend | 42.22 | 10.0887 | -0.063889 | 4917.09 |\n", - "| M5 | uptrend | 644.25 | 5.6635 | 0.547307 | 4917.09 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.27% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195097.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:01:41,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:01:51,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:01,644 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:11,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:21,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:26 CET)\" (scheduled at 2026-01-22 20:02:26.633942+01:00)\n", - "2026-01-22 20:02:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:26 CET)\" executed successfully\n", - "2026-01-22 20:02:31,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:32,166 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:32 CET)\" (scheduled at 2026-01-22 20:02:32.132962+01:00)\n", - "2026-01-22 20:02:32,167 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:32 CET)\" executed successfully\n", - "2026-01-22 20:02:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:34 CET)\" (scheduled at 2026-01-22 20:02:34.010875+01:00)\n", - "2026-01-22 20:02:34,174 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.57 | 91.2573 | 9.79519 | 4917.2 |\n", - "| H4 | uptrend | 444.46 | 43.8549 | 2.92375 | 4917.2 |\n", - "| H1 | uptrend | 579.34 | 23.4824 | 2.04065 | 4917.2 |\n", - "| M30 | uptrend | 651.42 | 14.6199 | 1.42855 | 4917.2 |\n", - "| M15 | downtrend | 42.2 | 10.0894 | -0.063863 | 4917.2 |\n", - "| M5 | uptrend | 644.2 | 5.6642 | 0.547333 | 4917.2 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.27% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195093.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:02:41,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:02:51,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:01,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:11,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:21,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:26,784 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:26 CET)\" (scheduled at 2026-01-22 20:03:26.633942+01:00)\n", - "2026-01-22 20:03:26,784 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:26 CET)\" executed successfully\n", - "2026-01-22 20:03:31,919 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:32,471 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:32 CET)\" (scheduled at 2026-01-22 20:03:32.132962+01:00)\n", - "2026-01-22 20:03:32,475 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:32 CET)\" executed successfully\n", - "2026-01-22 20:03:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:34 CET)\" (scheduled at 2026-01-22 20:03:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:03:34,248 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 715.58 | 91.2573 | 9.79534 | 4917.83 |\n", - "| H4 | uptrend | 444.48 | 43.8549 | 2.9239 | 4917.83 |\n", - "| H1 | uptrend | 578.08 | 23.5353 | 2.0408 | 4917.83 |\n", - "| M30 | uptrend | 649.14 | 14.6728 | 1.4287 | 4917.83 |\n", - "| M15 | downtrend | 41.88 | 10.1423 | -0.063714 | 4917.83 |\n", - "| M5 | uptrend | 638.42 | 5.7171 | 0.547482 | 4917.83 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 607.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.27% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194559.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:03:41,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:03:51,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:01,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:12,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:22,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:27,248 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:26 CET)\" (scheduled at 2026-01-22 20:04:26.633942+01:00)\n", - "2026-01-22 20:04:27,248 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:26 CET)\" executed successfully\n", - "2026-01-22 20:04:32,063 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:32 CET)\" (scheduled at 2026-01-22 20:04:32.132962+01:00)\n", - "2026-01-22 20:04:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:32 CET)\" executed successfully\n", - "2026-01-22 20:04:34,137 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:34 CET)\" (scheduled at 2026-01-22 20:04:34.010875+01:00)\n", - "2026-01-22 20:04:34,322 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 714.89 | 91.3502 | 9.7958 | 4919.77 |\n", - "| H4 | uptrend | 443.61 | 43.9478 | 2.92436 | 4919.78 |\n", - "| H1 | uptrend | 574.79 | 23.6753 | 2.04126 | 4919.78 |\n", - "| M30 | uptrend | 643.21 | 14.8128 | 1.42916 | 4919.78 |\n", - "| M15 | downtrend | 41.01 | 10.2823 | -0.063253 | 4919.78 |\n", - "| M5 | uptrend | 623.68 | 5.8571 | 0.547943 | 4919.78 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.38)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.28% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 193120.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:04:42,081 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:04:52,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:02,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:12,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:22,178 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:26 CET)\" (scheduled at 2026-01-22 20:05:26.633942+01:00)\n", - "2026-01-22 20:05:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:26 CET)\" executed successfully\n", - "2026-01-22 20:05:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:32 CET)\" (scheduled at 2026-01-22 20:05:32.132962+01:00)\n", - "2026-01-22 20:05:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:32 CET)\" executed successfully\n", - "2026-01-22 20:05:32,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:34 CET)\" (scheduled at 2026-01-22 20:05:34.010875+01:00)\n", - "2026-01-22 20:05:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 714.78 | 91.3652 | 9.79593 | 4920.3 |\n", - "| H4 | uptrend | 443.48 | 43.9628 | 2.92448 | 4920.3 |\n", - "| H1 | uptrend | 574.46 | 23.6903 | 2.04138 | 4920.3 |\n", - "| M30 | uptrend | 642.61 | 14.8278 | 1.42928 | 4920.3 |\n", - "| M15 | downtrend | 40.87 | 10.2973 | -0.06313 | 4920.3 |\n", - "| M5 | uptrend | 676.44 | 5.5412 | 0.562245 | 4920.3 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.29% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195143.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:05:42,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:05:52,250 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:02,277 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:12,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:22,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:26 CET)\" (scheduled at 2026-01-22 20:06:26.633942+01:00)\n", - "2026-01-22 20:06:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:26 CET)\" executed successfully\n", - "2026-01-22 20:06:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:32 CET)\" (scheduled at 2026-01-22 20:06:32.132962+01:00)\n", - "2026-01-22 20:06:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:32 CET)\" executed successfully\n", - "2026-01-22 20:06:32,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:34 CET)\" (scheduled at 2026-01-22 20:06:34.010875+01:00)\n", - "2026-01-22 20:06:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 714.67 | 91.3802 | 9.79605 | 4920.81 |\n", - "| H4 | uptrend | 443.35 | 43.9778 | 2.92461 | 4920.81 |\n", - "| H1 | uptrend | 574.13 | 23.7053 | 2.0415 | 4920.81 |\n", - "| M30 | uptrend | 642.02 | 14.8428 | 1.4294 | 4920.81 |\n", - "| M15 | downtrend | 40.73 | 10.3123 | -0.06301 | 4920.81 |\n", - "| M5 | uptrend | 670.45 | 5.5919 | 0.562365 | 4920.81 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 606.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.29% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194814.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:06:42,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:06:52,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:02,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:12,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:22,484 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:26 CET)\" (scheduled at 2026-01-22 20:07:26.633942+01:00)\n", - "2026-01-22 20:07:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:26 CET)\" executed successfully\n", - "2026-01-22 20:07:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:32 CET)\" (scheduled at 2026-01-22 20:07:32.132962+01:00)\n", - "2026-01-22 20:07:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:32 CET)\" executed successfully\n", - "2026-01-22 20:07:32,530 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:34 CET)\" (scheduled at 2026-01-22 20:07:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:07:34,255 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.22 | 91.573 | 9.79676 | 4923.81 |\n", - "| H4 | uptrend | 441.52 | 44.1706 | 2.92531 | 4923.81 |\n", - "| H1 | uptrend | 569.7 | 23.8981 | 2.04221 | 4923.81 |\n", - "| M30 | uptrend | 634.08 | 15.0356 | 1.43008 | 4923.68 |\n", - "| M15 | downtrend | 39.56 | 10.5051 | -0.062339 | 4923.65 |\n", - "| M5 | uptrend | 648.87 | 5.7848 | 0.563037 | 4923.65 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.54)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 192766.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:07:42,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:07:52,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:02,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:12,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:22,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:26,773 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:26 CET)\" (scheduled at 2026-01-22 20:08:26.633942+01:00)\n", - "2026-01-22 20:08:26,773 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:26 CET)\" executed successfully\n", - "2026-01-22 20:08:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:32 CET)\" (scheduled at 2026-01-22 20:08:32.132962+01:00)\n", - "2026-01-22 20:08:32,164 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:32 CET)\" executed successfully\n", - "2026-01-22 20:08:32,673 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:34 CET)\" (scheduled at 2026-01-22 20:08:34.010875+01:00)\n", - "2026-01-22 20:08:34,237 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.18 | 91.5766 | 9.79659 | 4923.12 |\n", - "| H4 | uptrend | 441.46 | 44.1742 | 2.92515 | 4923.12 |\n", - "| H1 | uptrend | 569.57 | 23.9017 | 2.04205 | 4923.12 |\n", - "| M30 | uptrend | 633.88 | 15.0392 | 1.42995 | 4923.12 |\n", - "| M15 | downtrend | 39.63 | 10.5087 | -0.062464 | 4923.12 |\n", - "| M5 | uptrend | 648.33 | 5.7884 | 0.562911 | 4923.12 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 192710.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:08:42,695 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:08:52,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:02,731 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:12,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:22,777 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:26,795 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:26 CET)\" (scheduled at 2026-01-22 20:09:26.633942+01:00)\n", - "2026-01-22 20:09:26,795 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:26 CET)\" executed successfully\n", - "2026-01-22 20:09:32,166 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:32 CET)\" (scheduled at 2026-01-22 20:09:32.132962+01:00)\n", - "2026-01-22 20:09:32,166 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:32 CET)\" executed successfully\n", - "2026-01-22 20:09:32,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:34,093 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:34 CET)\" (scheduled at 2026-01-22 20:09:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:09:34,475 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.15 | 91.5766 | 9.79624 | 4921.64 |\n", - "| H4 | uptrend | 441.4 | 44.1742 | 2.9248 | 4921.64 |\n", - "| H1 | uptrend | 569.47 | 23.9017 | 2.0417 | 4921.64 |\n", - "| M30 | uptrend | 633.72 | 15.0392 | 1.4296 | 4921.64 |\n", - "| M15 | downtrend | 39.85 | 10.5087 | -0.062814 | 4921.64 |\n", - "| M5 | uptrend | 647.92 | 5.7884 | 0.562562 | 4921.64 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.3% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 192649.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:09:42,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:09:52,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:02,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:12,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:22,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:26,693 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:26 CET)\" (scheduled at 2026-01-22 20:10:26.633942+01:00)\n", - "2026-01-22 20:10:26,693 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:26 CET)\" executed successfully\n", - "2026-01-22 20:10:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:32 CET)\" (scheduled at 2026-01-22 20:10:32.132962+01:00)\n", - "2026-01-22 20:10:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:32 CET)\" executed successfully\n", - "2026-01-22 20:10:33,018 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:34 CET)\" (scheduled at 2026-01-22 20:10:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:10:34,838 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.15 | 91.5766 | 9.79612 | 4921.14 |\n", - "| H4 | uptrend | 441.39 | 44.1742 | 2.92468 | 4921.14 |\n", - "| H1 | uptrend | 569.44 | 23.9017 | 2.04158 | 4921.14 |\n", - "| M30 | uptrend | 633.67 | 15.0392 | 1.42948 | 4921.13 |\n", - "| M15 | downtrend | 39.93 | 10.5087 | -0.062934 | 4921.13 |\n", - "| M5 | uptrend | 706.69 | 5.4306 | 0.575664 | 4921.11 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194994.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:10:43,050 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:10:53,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:03,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:13,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:23,140 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:26,766 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:26 CET)\" (scheduled at 2026-01-22 20:11:26.633942+01:00)\n", - "2026-01-22 20:11:26,766 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:26 CET)\" executed successfully\n", - "2026-01-22 20:11:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:32 CET)\" (scheduled at 2026-01-22 20:11:32.132962+01:00)\n", - "2026-01-22 20:11:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:32 CET)\" executed successfully\n", - "2026-01-22 20:11:33,165 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:34 CET)\" (scheduled at 2026-01-22 20:11:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:11:34,260 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.15 | 91.5766 | 9.79621 | 4921.5 |\n", - "| H4 | uptrend | 441.4 | 44.1742 | 2.92477 | 4921.5 |\n", - "| H1 | uptrend | 569.46 | 23.9017 | 2.04167 | 4921.51 |\n", - "| M30 | uptrend | 633.71 | 15.0392 | 1.42957 | 4921.51 |\n", - "| M15 | downtrend | 39.84 | 10.5087 | -0.062804 | 4921.68 |\n", - "| M5 | uptrend | 701.43 | 5.4728 | 0.575811 | 4921.73 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194791.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:11:43,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:11:53,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:03,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:13,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:23,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:26 CET)\" (scheduled at 2026-01-22 20:12:26.633942+01:00)\n", - "2026-01-22 20:12:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:26 CET)\" executed successfully\n", - "2026-01-22 20:12:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:32 CET)\" (scheduled at 2026-01-22 20:12:32.132962+01:00)\n", - "2026-01-22 20:12:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:32 CET)\" executed successfully\n", - "2026-01-22 20:12:33,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:34 CET)\" (scheduled at 2026-01-22 20:12:34.010875+01:00)\n", - "2026-01-22 20:12:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.18 | 91.5766 | 9.79657 | 4923.02 |\n", - "| H4 | uptrend | 441.45 | 44.1742 | 2.92513 | 4923.02 |\n", - "| H1 | uptrend | 569.56 | 23.9017 | 2.04203 | 4923.02 |\n", - "| M30 | uptrend | 633.86 | 15.0392 | 1.42992 | 4923.02 |\n", - "| M15 | downtrend | 39.64 | 10.5087 | -0.062488 | 4923.02 |\n", - "| M5 | uptrend | 687.09 | 5.5899 | 0.576116 | 4923.02 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194248.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:12:43,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:12:53,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:03,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:13,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:23,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:26 CET)\" (scheduled at 2026-01-22 20:13:26.633942+01:00)\n", - "2026-01-22 20:13:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:26 CET)\" executed successfully\n", - "2026-01-22 20:13:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:32 CET)\" (scheduled at 2026-01-22 20:13:32.132962+01:00)\n", - "2026-01-22 20:13:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:32 CET)\" executed successfully\n", - "2026-01-22 20:13:33,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:34 CET)\" (scheduled at 2026-01-22 20:13:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:13:34,279 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.17 | 91.5766 | 9.79651 | 4922.77 |\n", - "| H4 | uptrend | 441.44 | 44.1742 | 2.92507 | 4922.77 |\n", - "| H1 | uptrend | 569.55 | 23.9017 | 2.04197 | 4922.77 |\n", - "| M30 | uptrend | 633.84 | 15.0392 | 1.42986 | 4922.77 |\n", - "| M15 | downtrend | 39.68 | 10.5087 | -0.062547 | 4922.77 |\n", - "| M5 | uptrend | 687.02 | 5.5899 | 0.576057 | 4922.77 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194241.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:13:43,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:13:53,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:03,547 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:13,608 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:23,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:26,687 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:26 CET)\" (scheduled at 2026-01-22 20:14:26.633942+01:00)\n", - "2026-01-22 20:14:26,687 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:26 CET)\" executed successfully\n", - "2026-01-22 20:14:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:32 CET)\" (scheduled at 2026-01-22 20:14:32.132962+01:00)\n", - "2026-01-22 20:14:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:32 CET)\" executed successfully\n", - "2026-01-22 20:14:33,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:34 CET)\" (scheduled at 2026-01-22 20:14:34.010875+01:00)\n", - "2026-01-22 20:14:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 713.18 | 91.5766 | 9.79663 | 4923.28 |\n", - "| H4 | uptrend | 441.46 | 44.1742 | 2.92519 | 4923.28 |\n", - "| H1 | uptrend | 569.58 | 23.9017 | 2.04209 | 4923.28 |\n", - "| M30 | uptrend | 633.89 | 15.0392 | 1.42999 | 4923.28 |\n", - "| M15 | downtrend | 39.6 | 10.5087 | -0.062426 | 4923.28 |\n", - "| M5 | uptrend | 687.16 | 5.5899 | 0.576177 | 4923.28 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.31% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 194255.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.3%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.3/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.3%\n", - " πŸ“ˆ Enhanced Score: 70.3%\n", - " πŸ”€ HYBRID (60/40): 87.7%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (99%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:14:43,677 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:14:53,703 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:03,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:13,757 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:23,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:26,825 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:26 CET)\" (scheduled at 2026-01-22 20:15:26.633942+01:00)\n", - "2026-01-22 20:15:26,825 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:26 CET)\" executed successfully\n", - "2026-01-22 20:15:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:32 CET)\" (scheduled at 2026-01-22 20:15:32.132962+01:00)\n", - "2026-01-22 20:15:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:32 CET)\" executed successfully\n", - "2026-01-22 20:15:33,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:34,141 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:34 CET)\" (scheduled at 2026-01-22 20:15:34.010875+01:00)\n", - "2026-01-22 20:15:34,378 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.7964 | 4922.3 |\n", - "| H4 | uptrend | 441.13 | 44.2042 | 2.92496 | 4922.3 |\n", - "| H1 | uptrend | 568.8 | 23.9317 | 2.04185 | 4922.3 |\n", - "| M30 | uptrend | 632.53 | 15.0692 | 1.42975 | 4922.3 |\n", - "| M15 | downtrend | 21.18 | 9.9181 | -0.031514 | 4922.3 |\n", - "| M5 | uptrend | 729.72 | 5.3884 | 0.589804 | 4922.3 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 196362.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:15:43,823 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:15:53,849 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:03,873 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:13,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:23,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:27,464 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:17:26 CET)\" (scheduled at 2026-01-22 20:16:26.633942+01:00)\n", - "2026-01-22 20:16:27,464 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:17:26 CET)\" executed successfully\n", - "2026-01-22 20:16:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:17:32 CET)\" (scheduled at 2026-01-22 20:16:32.132962+01:00)\n", - "2026-01-22 20:16:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:17:32 CET)\" executed successfully\n", - "2026-01-22 20:16:33,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:34,276 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:16:34 CET)\" (scheduled at 2026-01-22 20:16:34.010875+01:00)\n", - "2026-01-22 20:16:34,443 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.95 | 91.6066 | 9.7966 | 4923.16 |\n", - "| H4 | uptrend | 441.16 | 44.2042 | 2.92516 | 4923.16 |\n", - "| H1 | uptrend | 568.86 | 23.9317 | 2.04206 | 4923.16 |\n", - "| M30 | uptrend | 632.62 | 15.0692 | 1.42996 | 4923.16 |\n", - "| M15 | downtrend | 21 | 9.9409 | -0.031311 | 4923.16 |\n", - "| M5 | uptrend | 726.88 | 5.4113 | 0.590007 | 4923.16 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.64% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 196284.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:16:43,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:16:54,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:04,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:14,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:24,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:26 CET)\" (scheduled at 2026-01-22 20:17:26.633942+01:00)\n", - "2026-01-22 20:17:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:26 CET)\" executed successfully\n", - "2026-01-22 20:17:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:32 CET)\" (scheduled at 2026-01-22 20:17:32.132962+01:00)\n", - "2026-01-22 20:17:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:32 CET)\" executed successfully\n", - "2026-01-22 20:17:34,077 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:34 CET)\" (scheduled at 2026-01-22 20:17:34.010875+01:00)\n", - "2026-01-22 20:17:34,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:34,234 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.92 | 91.6066 | 9.79623 | 4921.58 |\n", - "| H4 | uptrend | 441.1 | 44.2042 | 2.92479 | 4921.58 |\n", - "| H1 | uptrend | 568.75 | 23.9317 | 2.04169 | 4921.58 |\n", - "| M30 | uptrend | 632.45 | 15.0692 | 1.42958 | 4921.58 |\n", - "| M15 | downtrend | 21.06 | 10.0302 | -0.031684 | 4921.58 |\n", - "| M5 | uptrend | 714.63 | 5.5006 | 0.589634 | 4921.58 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195749.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:17:44,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:17:54,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:04,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:14,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:24,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:26,850 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:26 CET)\" (scheduled at 2026-01-22 20:18:26.633942+01:00)\n", - "2026-01-22 20:18:26,850 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:26 CET)\" executed successfully\n", - "2026-01-22 20:18:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:32 CET)\" (scheduled at 2026-01-22 20:18:32.132962+01:00)\n", - "2026-01-22 20:18:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:32 CET)\" executed successfully\n", - "2026-01-22 20:18:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:34 CET)\" (scheduled at 2026-01-22 20:18:34.010875+01:00)\n", - "2026-01-22 20:18:34,166 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.79635 | 4922.08 |\n", - "| H4 | uptrend | 441.12 | 44.2042 | 2.9249 | 4922.08 |\n", - "| H1 | uptrend | 568.79 | 23.9317 | 2.04181 | 4922.09 |\n", - "| M30 | uptrend | 632.51 | 15.0692 | 1.42971 | 4922.09 |\n", - "| M15 | downtrend | 20.98 | 10.0302 | -0.031564 | 4922.09 |\n", - "| M5 | uptrend | 714.78 | 5.5006 | 0.589754 | 4922.09 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195763.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:18:34,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:44,297 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:18:54,319 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:04,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:14,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:24,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:26 CET)\" (scheduled at 2026-01-22 20:19:26.633942+01:00)\n", - "2026-01-22 20:19:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:26 CET)\" executed successfully\n", - "2026-01-22 20:19:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:32 CET)\" (scheduled at 2026-01-22 20:19:32.132962+01:00)\n", - "2026-01-22 20:19:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:32 CET)\" executed successfully\n", - "2026-01-22 20:19:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:34 CET)\" (scheduled at 2026-01-22 20:19:34.010875+01:00)\n", - "2026-01-22 20:19:34,228 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.91 | 91.6066 | 9.79613 | 4921.17 |\n", - "| H4 | uptrend | 441.09 | 44.2042 | 2.92469 | 4921.17 |\n", - "| H1 | uptrend | 568.73 | 23.9317 | 2.04159 | 4921.17 |\n", - "| M30 | uptrend | 632.41 | 15.0692 | 1.42949 | 4921.17 |\n", - "| M15 | downtrend | 21.11 | 10.0352 | -0.031781 | 4921.17 |\n", - "| M5 | uptrend | 713.87 | 5.5056 | 0.589537 | 4921.17 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 195711.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:19:34,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:44,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:19:54,629 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:04,639 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:14,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:24,689 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:26 CET)\" (scheduled at 2026-01-22 20:20:26.633942+01:00)\n", - "2026-01-22 20:20:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:26 CET)\" executed successfully\n", - "2026-01-22 20:20:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:32 CET)\" (scheduled at 2026-01-22 20:20:32.132962+01:00)\n", - "2026-01-22 20:20:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:32 CET)\" executed successfully\n", - "2026-01-22 20:20:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:34 CET)\" (scheduled at 2026-01-22 20:20:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:20:34,274 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.94 | 91.6066 | 9.79648 | 4922.66 |\n", - "| H4 | uptrend | 441.14 | 44.2042 | 2.92504 | 4922.66 |\n", - "| H1 | uptrend | 568.82 | 23.9317 | 2.04194 | 4922.66 |\n", - "| M30 | uptrend | 632.57 | 15.0692 | 1.42984 | 4922.66 |\n", - "| M15 | downtrend | 20.88 | 10.0352 | -0.031429 | 4922.66 |\n", - "| M5 | uptrend | 770.09 | 5.2123 | 0.602094 | 4922.66 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.22)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.64% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 197997.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:20:34,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:44,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:20:54,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:04,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:14,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:24,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:26,806 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:26 CET)\" (scheduled at 2026-01-22 20:21:26.633942+01:00)\n", - "2026-01-22 20:21:26,806 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:26 CET)\" executed successfully\n", - "2026-01-22 20:21:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:32 CET)\" (scheduled at 2026-01-22 20:21:32.132962+01:00)\n", - "2026-01-22 20:21:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:32 CET)\" executed successfully\n", - "2026-01-22 20:21:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:34 CET)\" (scheduled at 2026-01-22 20:21:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:21:34,367 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.92 | 91.6066 | 9.79627 | 4921.75 |\n", - "| H4 | uptrend | 441.11 | 44.2042 | 2.92483 | 4921.75 |\n", - "| H1 | uptrend | 568.76 | 23.9317 | 2.04173 | 4921.75 |\n", - "| M30 | uptrend | 632.47 | 15.0692 | 1.42962 | 4921.73 |\n", - "| M15 | downtrend | 21.03 | 10.0352 | -0.031649 | 4921.73 |\n", - "| M5 | uptrend | 769.81 | 5.2123 | 0.601874 | 4921.73 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.64% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 197970.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:21:34,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:44,840 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:21:54,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:04,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:14,905 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:24,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:26,783 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:26 CET)\" (scheduled at 2026-01-22 20:22:26.633942+01:00)\n", - "2026-01-22 20:22:26,783 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:26 CET)\" executed successfully\n", - "2026-01-22 20:22:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:32 CET)\" (scheduled at 2026-01-22 20:22:32.132962+01:00)\n", - "2026-01-22 20:22:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:32 CET)\" executed successfully\n", - "2026-01-22 20:22:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:34 CET)\" (scheduled at 2026-01-22 20:22:34.010875+01:00)\n", - "2026-01-22 20:22:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.91 | 91.6066 | 9.79613 | 4921.18 |\n", - "| H4 | uptrend | 441.09 | 44.2042 | 2.92469 | 4921.18 |\n", - "| H1 | uptrend | 568.73 | 23.9317 | 2.04159 | 4921.18 |\n", - "| M30 | uptrend | 632.41 | 15.0692 | 1.42949 | 4921.18 |\n", - "| M15 | downtrend | 21.11 | 10.0352 | -0.031779 | 4921.18 |\n", - "| M5 | uptrend | 766.49 | 5.2337 | 0.601744 | 4921.18 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 197808.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:22:34,938 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:44,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:22:54,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:05,006 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:15,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:25,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:26 CET)\" (scheduled at 2026-01-22 20:23:26.633942+01:00)\n", - "2026-01-22 20:23:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:26 CET)\" executed successfully\n", - "2026-01-22 20:23:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:32 CET)\" (scheduled at 2026-01-22 20:23:32.132962+01:00)\n", - "2026-01-22 20:23:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:32 CET)\" executed successfully\n", - "2026-01-22 20:23:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:34 CET)\" (scheduled at 2026-01-22 20:23:34.010875+01:00)\n", - "2026-01-22 20:23:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.87 | 91.6066 | 9.7956 | 4918.9 |\n", - "| H4 | uptrend | 441.01 | 44.2042 | 2.92415 | 4918.9 |\n", - "| H1 | uptrend | 568.58 | 23.9317 | 2.04105 | 4918.9 |\n", - "| M30 | uptrend | 632.17 | 15.0692 | 1.42895 | 4918.91 |\n", - "| M15 | downtrend | 21.18 | 10.1695 | -0.032315 | 4918.91 |\n", - "| M5 | uptrend | 741.91 | 5.4023 | 0.601208 | 4918.91 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 196790.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:23:35,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:45,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:23:55,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:05,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:15,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:25,169 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:26 CET)\" (scheduled at 2026-01-22 20:24:26.633942+01:00)\n", - "2026-01-22 20:24:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:26 CET)\" executed successfully\n", - "2026-01-22 20:24:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:32 CET)\" (scheduled at 2026-01-22 20:24:32.132962+01:00)\n", - "2026-01-22 20:24:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:32 CET)\" executed successfully\n", - "2026-01-22 20:24:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:34 CET)\" (scheduled at 2026-01-22 20:24:34.010875+01:00)\n", - "2026-01-22 20:24:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.87 | 91.6066 | 9.79561 | 4918.94 |\n", - "| H4 | uptrend | 441.01 | 44.2042 | 2.92416 | 4918.94 |\n", - "| H1 | uptrend | 568.58 | 23.9317 | 2.04106 | 4918.94 |\n", - "| M30 | uptrend | 632.18 | 15.0692 | 1.42896 | 4918.94 |\n", - "| M15 | downtrend | 21.08 | 10.2174 | -0.032308 | 4918.94 |\n", - "| M5 | uptrend | 735.41 | 5.4502 | 0.601215 | 4918.94 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 196531.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:24:35,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:45,202 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:24:55,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:05,237 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:15,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:25,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:26,664 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:26 CET)\" (scheduled at 2026-01-22 20:25:26.633942+01:00)\n", - "2026-01-22 20:25:26,664 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:26 CET)\" executed successfully\n", - "2026-01-22 20:25:32,268 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:32 CET)\" (scheduled at 2026-01-22 20:25:32.132962+01:00)\n", - "2026-01-22 20:25:32,268 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:32 CET)\" executed successfully\n", - "2026-01-22 20:25:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:34 CET)\" (scheduled at 2026-01-22 20:25:34.010875+01:00)\n", - "2026-01-22 20:25:34,208 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.86 | 91.6066 | 9.79543 | 4918.21 |\n", - "| H4 | uptrend | 440.98 | 44.2042 | 2.92399 | 4918.21 |\n", - "| H1 | uptrend | 568.53 | 23.9317 | 2.04089 | 4918.21 |\n", - "| M30 | uptrend | 632.1 | 15.0692 | 1.42879 | 4918.21 |\n", - "| M15 | downtrend | 21.19 | 10.2174 | -0.03248 | 4918.21 |\n", - "| M5 | uptrend | 797.39 | 5.1302 | 0.61361 | 4918.21 |\n", - "+------+-----------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198988.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:25:35,296 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:45,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:25:55,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:05,362 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:15,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:25,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:26 CET)\" (scheduled at 2026-01-22 20:26:26.633942+01:00)\n", - "2026-01-22 20:26:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:26 CET)\" executed successfully\n", - "2026-01-22 20:26:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:32 CET)\" (scheduled at 2026-01-22 20:26:32.132962+01:00)\n", - "2026-01-22 20:26:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:32 CET)\" executed successfully\n", - "2026-01-22 20:26:34,032 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:34 CET)\" (scheduled at 2026-01-22 20:26:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:26:34,266 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.85 | 91.6066 | 9.79525 | 4917.44 |\n", - "| H4 | uptrend | 440.95 | 44.2042 | 2.92381 | 4917.44 |\n", - "| H1 | uptrend | 568.48 | 23.9317 | 2.04071 | 4917.44 |\n", - "| M30 | uptrend | 632.02 | 15.0692 | 1.4286 | 4917.4 |\n", - "| M15 | downtrend | 21.13 | 10.3074 | -0.032672 | 4917.4 |\n", - "| M5 | uptrend | 782.33 | 5.2273 | 0.613421 | 4917.41 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.64% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198394.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:26:35,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:45,441 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:26:55,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:05,483 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:15,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:25,520 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:26,664 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:26 CET)\" (scheduled at 2026-01-22 20:27:26.633942+01:00)\n", - "2026-01-22 20:27:26,664 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:26 CET)\" executed successfully\n", - "2026-01-22 20:27:32,526 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:32 CET)\" (scheduled at 2026-01-22 20:27:32.132962+01:00)\n", - "2026-01-22 20:27:32,526 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:32 CET)\" executed successfully\n", - "2026-01-22 20:27:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:34 CET)\" (scheduled at 2026-01-22 20:27:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:27:34,358 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.73 | 91.6066 | 9.79365 | 4910.68 |\n", - "| H4 | uptrend | 440.71 | 44.2042 | 2.92221 | 4910.68 |\n", - "| H1 | uptrend | 559.22 | 24.3088 | 2.03911 | 4910.68 |\n", - "| M30 | uptrend | 615.54 | 15.4542 | 1.4269 | 4910.2 |\n", - "| M15 | downtrend | 21.26 | 10.7895 | -0.034401 | 4910.08 |\n", - "| M5 | uptrend | 713.6 | 5.7144 | 0.611673 | 4910.01 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.93)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 193383.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:27:35,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:45,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:27:55,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:05,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:15,605 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:25,639 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:26 CET)\" (scheduled at 2026-01-22 20:28:26.633942+01:00)\n", - "2026-01-22 20:28:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:26 CET)\" executed successfully\n", - "2026-01-22 20:28:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:32 CET)\" (scheduled at 2026-01-22 20:28:32.132962+01:00)\n", - "2026-01-22 20:28:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:32 CET)\" executed successfully\n", - "2026-01-22 20:28:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:34 CET)\" (scheduled at 2026-01-22 20:28:34.010875+01:00)\n", - "2026-01-22 20:28:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.73 | 91.6066 | 9.79364 | 4910.61 |\n", - "| H4 | uptrend | 440.71 | 44.2042 | 2.92219 | 4910.61 |\n", - "| H1 | uptrend | 558.33 | 24.3474 | 2.03909 | 4910.61 |\n", - "| M30 | uptrend | 614.36 | 15.4849 | 1.42699 | 4910.61 |\n", - "| M15 | downtrend | 21.14 | 10.8117 | -0.034276 | 4910.61 |\n", - "| M5 | uptrend | 711.63 | 5.7316 | 0.611814 | 4910.61 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 193122.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:28:35,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:45,675 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:28:55,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:05,710 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:15,733 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:25,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:26 CET)\" (scheduled at 2026-01-22 20:29:26.633942+01:00)\n", - "2026-01-22 20:29:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:26 CET)\" executed successfully\n", - "2026-01-22 20:29:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:32 CET)\" (scheduled at 2026-01-22 20:29:32.132962+01:00)\n", - "2026-01-22 20:29:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:32 CET)\" executed successfully\n", - "2026-01-22 20:29:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:34 CET)\" (scheduled at 2026-01-22 20:29:34.010875+01:00)\n", - "2026-01-22 20:29:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.76 | 91.6066 | 9.79409 | 4912.51 |\n", - "| H4 | uptrend | 440.78 | 44.2042 | 2.92264 | 4912.51 |\n", - "| H1 | uptrend | 558.46 | 24.3474 | 2.03954 | 4912.51 |\n", - "| M30 | uptrend | 614.55 | 15.4849 | 1.42744 | 4912.52 |\n", - "| M15 | downtrend | 20.86 | 10.8117 | -0.033825 | 4912.52 |\n", - "| M5 | uptrend | 712.16 | 5.7316 | 0.612268 | 4912.53 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.97)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.63% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 193175.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 99.6%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 99.6/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 99.6%\n", - " πŸ“ˆ Enhanced Score: 70.4%\n", - " πŸ”€ HYBRID (60/40): 87.9%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:29:35,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:45,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:29:55,815 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:00,016 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 21:00:00 CET)\" (scheduled at 2026-01-22 20:30:00+01:00)\n", - "2026-01-22 20:30:00,016 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 21:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 20:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.44 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:30:05,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:15,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:25,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:26,808 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:26 CET)\" (scheduled at 2026-01-22 20:30:26.633942+01:00)\n", - "2026-01-22 20:30:26,808 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:26 CET)\" executed successfully\n", - "2026-01-22 20:30:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:32 CET)\" (scheduled at 2026-01-22 20:30:32.132962+01:00)\n", - "2026-01-22 20:30:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:32 CET)\" executed successfully\n", - "2026-01-22 20:30:34,030 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:34 CET)\" (scheduled at 2026-01-22 20:30:34.010875+01:00)\n", - "2026-01-22 20:30:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.795 | 4916.39 |\n", - "| H4 | uptrend | 440.92 | 44.2042 | 2.92356 | 4916.39 |\n", - "| H1 | uptrend | 558.71 | 24.3474 | 2.04046 | 4916.39 |\n", - "| M30 | uptrend | 657.89 | 14.5174 | 1.43262 | 4916.39 |\n", - "| M15 | downtrend | 2.49 | 10.178 | -0.003802 | 4916.39 |\n", - "| M5 | uptrend | 763.25 | 5.4608 | 0.625187 | 4916.39 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 199358.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:30:35,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:45,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:30:55,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:05,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:15,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:26,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:26 CET)\" (scheduled at 2026-01-22 20:31:26.633942+01:00)\n", - "2026-01-22 20:31:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:26 CET)\" executed successfully\n", - "2026-01-22 20:31:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:32 CET)\" (scheduled at 2026-01-22 20:31:32.132962+01:00)\n", - "2026-01-22 20:31:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:32 CET)\" executed successfully\n", - "2026-01-22 20:31:34,170 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:34 CET)\" (scheduled at 2026-01-22 20:31:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:31:34,441 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.81 | 91.6066 | 9.79478 | 4915.43 |\n", - "| H4 | uptrend | 440.88 | 44.2042 | 2.92333 | 4915.43 |\n", - "| H1 | uptrend | 558.65 | 24.3474 | 2.04024 | 4915.48 |\n", - "| M30 | uptrend | 655.98 | 14.5574 | 1.43241 | 4915.48 |\n", - "| M15 | downtrend | 2.62 | 10.218 | -0.004017 | 4915.48 |\n", - "| M5 | uptrend | 757.44 | 5.5008 | 0.624974 | 4915.49 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.95% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198945.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:31:36,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:46,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:31:56,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:06,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:16,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:26,129 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:26,782 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:26 CET)\" (scheduled at 2026-01-22 20:32:26.633942+01:00)\n", - "2026-01-22 20:32:26,782 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:26 CET)\" executed successfully\n", - "2026-01-22 20:32:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:32 CET)\" (scheduled at 2026-01-22 20:32:32.132962+01:00)\n", - "2026-01-22 20:32:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:32 CET)\" executed successfully\n", - "2026-01-22 20:32:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:34 CET)\" (scheduled at 2026-01-22 20:32:34.010875+01:00)\n", - "2026-01-22 20:32:34,161 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.82 | 91.6066 | 9.79482 | 4915.61 |\n", - "| H4 | uptrend | 440.89 | 44.2042 | 2.92338 | 4915.61 |\n", - "| H1 | uptrend | 558.66 | 24.3474 | 2.04027 | 4915.61 |\n", - "| M30 | uptrend | 655.61 | 14.566 | 1.43244 | 4915.61 |\n", - "| M15 | downtrend | 2.6 | 10.2265 | -0.003986 | 4915.61 |\n", - "| M5 | uptrend | 756.29 | 5.5093 | 0.625002 | 4915.61 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.05)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.95% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198871.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:32:36,141 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:46,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:32:56,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:06,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:16,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:26,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:26 CET)\" (scheduled at 2026-01-22 20:33:26.633942+01:00)\n", - "2026-01-22 20:33:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:26 CET)\" executed successfully\n", - "2026-01-22 20:33:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:32 CET)\" (scheduled at 2026-01-22 20:33:32.132962+01:00)\n", - "2026-01-22 20:33:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:32 CET)\" executed successfully\n", - "2026-01-22 20:33:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:34 CET)\" (scheduled at 2026-01-22 20:33:34.010875+01:00)\n", - "2026-01-22 20:33:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.86 | 91.6066 | 9.7954 | 4918.08 |\n", - "| H4 | uptrend | 440.98 | 44.2042 | 2.92396 | 4918.08 |\n", - "| H1 | uptrend | 558.82 | 24.3474 | 2.04086 | 4918.08 |\n", - "| M30 | uptrend | 652.61 | 14.6389 | 1.43302 | 4918.08 |\n", - "| M15 | downtrend | 2.2 | 10.2994 | -0.003403 | 4918.08 |\n", - "| M5 | uptrend | 747.12 | 5.5822 | 0.625586 | 4918.08 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198306.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:33:36,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:46,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:33:56,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:06,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:16,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:26,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:26 CET)\" (scheduled at 2026-01-22 20:34:26.633942+01:00)\n", - "2026-01-22 20:34:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:26 CET)\" executed successfully\n", - "2026-01-22 20:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:32 CET)\" (scheduled at 2026-01-22 20:34:32.132962+01:00)\n", - "2026-01-22 20:34:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:32 CET)\" executed successfully\n", - "2026-01-22 20:34:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:34 CET)\" (scheduled at 2026-01-22 20:34:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:34:34,256 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79498 | 4916.3 |\n", - "| H4 | uptrend | 440.92 | 44.2042 | 2.92355 | 4916.34 |\n", - "| H1 | uptrend | 558.7 | 24.3474 | 2.04045 | 4916.34 |\n", - "| M30 | uptrend | 652.42 | 14.6389 | 1.43261 | 4916.34 |\n", - "| M15 | downtrend | 2.47 | 10.2994 | -0.003814 | 4916.34 |\n", - "| M5 | uptrend | 746.63 | 5.5822 | 0.625175 | 4916.34 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 198256.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:34:36,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:46,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:34:56,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:06,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:16,471 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:26,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:26 CET)\" (scheduled at 2026-01-22 20:35:26.633942+01:00)\n", - "2026-01-22 20:35:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:26 CET)\" executed successfully\n", - "2026-01-22 20:35:32,155 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:32 CET)\" (scheduled at 2026-01-22 20:35:32.132962+01:00)\n", - "2026-01-22 20:35:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:32 CET)\" executed successfully\n", - "2026-01-22 20:35:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:34 CET)\" (scheduled at 2026-01-22 20:35:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:35:34,265 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79502 | 4916.47 |\n", - "| H4 | uptrend | 440.92 | 44.2042 | 2.92358 | 4916.47 |\n", - "| H1 | uptrend | 558.71 | 24.3474 | 2.04048 | 4916.47 |\n", - "| M30 | uptrend | 652.44 | 14.6389 | 1.43264 | 4916.47 |\n", - "| M15 | downtrend | 2.45 | 10.2994 | -0.003778 | 4916.49 |\n", - "| M5 | uptrend | 809.21 | 5.2549 | 0.637848 | 4916.5 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200761.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:35:36,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:46,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:35:56,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:06,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:16,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:26,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:26,734 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:26 CET)\" (scheduled at 2026-01-22 20:36:26.633942+01:00)\n", - "2026-01-22 20:36:26,736 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:26 CET)\" executed successfully\n", - "2026-01-22 20:36:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:32 CET)\" (scheduled at 2026-01-22 20:36:32.132962+01:00)\n", - "2026-01-22 20:36:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:32 CET)\" executed successfully\n", - "2026-01-22 20:36:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:34 CET)\" (scheduled at 2026-01-22 20:36:34.010875+01:00)\n", - "2026-01-22 20:36:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79496 | 4916.19 |\n", - "| H4 | uptrend | 440.91 | 44.2042 | 2.92351 | 4916.19 |\n", - "| H1 | uptrend | 558.69 | 24.3474 | 2.04041 | 4916.19 |\n", - "| M30 | uptrend | 652.41 | 14.6389 | 1.43258 | 4916.19 |\n", - "| M15 | downtrend | 2.49 | 10.2994 | -0.003849 | 4916.19 |\n", - "| M5 | uptrend | 795.07 | 5.3478 | 0.637775 | 4916.19 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200190.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:36:36,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:46,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:36:56,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:06,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:16,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:26 CET)\" (scheduled at 2026-01-22 20:37:26.633942+01:00)\n", - "2026-01-22 20:37:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:26 CET)\" executed successfully\n", - "2026-01-22 20:37:26,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:32 CET)\" (scheduled at 2026-01-22 20:37:32.132962+01:00)\n", - "2026-01-22 20:37:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:32 CET)\" executed successfully\n", - "2026-01-22 20:37:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:34 CET)\" (scheduled at 2026-01-22 20:37:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:37:34,368 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.85 | 91.6066 | 9.79522 | 4917.29 |\n", - "| H4 | uptrend | 440.95 | 44.2042 | 2.92377 | 4917.29 |\n", - "| H1 | uptrend | 558.76 | 24.3474 | 2.04067 | 4917.29 |\n", - "| M30 | uptrend | 652.53 | 14.6389 | 1.43284 | 4917.29 |\n", - "| M15 | downtrend | 2.32 | 10.2994 | -0.003589 | 4917.29 |\n", - "| M5 | uptrend | 795.39 | 5.3478 | 0.638035 | 4917.29 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200222.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:37:36,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:46,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:37:56,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:06,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:16,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:26,980 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:26 CET)\" (scheduled at 2026-01-22 20:38:26.633942+01:00)\n", - "2026-01-22 20:38:26,980 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:26 CET)\" executed successfully\n", - "2026-01-22 20:38:26,988 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:32 CET)\" (scheduled at 2026-01-22 20:38:32.132962+01:00)\n", - "2026-01-22 20:38:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:32 CET)\" executed successfully\n", - "2026-01-22 20:38:34,459 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:34 CET)\" (scheduled at 2026-01-22 20:38:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:38:34,685 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79492 | 4916.04 |\n", - "| H4 | uptrend | 440.9 | 44.2042 | 2.92348 | 4916.04 |\n", - "| H1 | uptrend | 558.68 | 24.3474 | 2.04038 | 4916.04 |\n", - "| M30 | uptrend | 652.39 | 14.6389 | 1.43254 | 4916.04 |\n", - "| M15 | downtrend | 2.51 | 10.2994 | -0.003882 | 4916.05 |\n", - "| M5 | uptrend | 795.03 | 5.3478 | 0.637742 | 4916.05 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200186.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:38:36,998 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:47,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:38:57,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:07,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:17,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:26,760 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:26 CET)\" (scheduled at 2026-01-22 20:39:26.633942+01:00)\n", - "2026-01-22 20:39:26,760 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:26 CET)\" executed successfully\n", - "2026-01-22 20:39:27,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:32 CET)\" (scheduled at 2026-01-22 20:39:32.132962+01:00)\n", - "2026-01-22 20:39:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:32 CET)\" executed successfully\n", - "2026-01-22 20:39:34,506 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:34 CET)\" (scheduled at 2026-01-22 20:39:34.010875+01:00)\n", - "2026-01-22 20:39:34,700 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79497 | 4916.24 |\n", - "| H4 | uptrend | 440.91 | 44.2042 | 2.92353 | 4916.24 |\n", - "| H1 | uptrend | 558.7 | 24.3474 | 2.04042 | 4916.24 |\n", - "| M30 | uptrend | 652.41 | 14.6389 | 1.43259 | 4916.24 |\n", - "| M15 | downtrend | 2.48 | 10.2994 | -0.003837 | 4916.24 |\n", - "| M5 | uptrend | 795.08 | 5.3478 | 0.637787 | 4916.24 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200192.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:39:34,869 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 21:39:34 CET)\" (scheduled at 2026-01-22 20:39:34.806528+01:00)\n", - "2026-01-22 20:39:34,879 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 21:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[20:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:39:37,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:47,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:39:57,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:07,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:17,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:26 CET)\" (scheduled at 2026-01-22 20:40:26.633942+01:00)\n", - "2026-01-22 20:40:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:26 CET)\" executed successfully\n", - "2026-01-22 20:40:27,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:32 CET)\" (scheduled at 2026-01-22 20:40:32.132962+01:00)\n", - "2026-01-22 20:40:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:32 CET)\" executed successfully\n", - "2026-01-22 20:40:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:34 CET)\" (scheduled at 2026-01-22 20:40:34.010875+01:00)\n", - "2026-01-22 20:40:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79505 | 4916.59 |\n", - "| H4 | uptrend | 440.92 | 44.2042 | 2.92361 | 4916.59 |\n", - "| H1 | uptrend | 558.72 | 24.3474 | 2.04051 | 4916.59 |\n", - "| M30 | uptrend | 652.45 | 14.6389 | 1.43267 | 4916.59 |\n", - "| M15 | downtrend | 2.43 | 10.2994 | -0.003755 | 4916.59 |\n", - "| M5 | uptrend | 860.49 | 5.0379 | 0.65026 | 4916.59 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202813.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:40:37,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:47,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:40:57,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:07,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:17,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:26,803 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:26 CET)\" (scheduled at 2026-01-22 20:41:26.633942+01:00)\n", - "2026-01-22 20:41:26,803 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:26 CET)\" executed successfully\n", - "2026-01-22 20:41:27,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:32 CET)\" (scheduled at 2026-01-22 20:41:32.132962+01:00)\n", - "2026-01-22 20:41:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:32 CET)\" executed successfully\n", - "2026-01-22 20:41:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:34 CET)\" (scheduled at 2026-01-22 20:41:34.010875+01:00)\n", - "2026-01-22 20:41:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79493 | 4916.09 |\n", - "| H4 | uptrend | 440.91 | 44.2042 | 2.92349 | 4916.09 |\n", - "| H1 | uptrend | 558.69 | 24.3474 | 2.04039 | 4916.09 |\n", - "| M30 | uptrend | 652.4 | 14.6389 | 1.43255 | 4916.09 |\n", - "| M15 | downtrend | 2.51 | 10.2994 | -0.003873 | 4916.09 |\n", - "| M5 | uptrend | 854.76 | 5.0708 | 0.650142 | 4916.09 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202575.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:41:37,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:47,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:41:57,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:07,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:17,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:26 CET)\" (scheduled at 2026-01-22 20:42:26.633942+01:00)\n", - "2026-01-22 20:42:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:26 CET)\" executed successfully\n", - "2026-01-22 20:42:27,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:32 CET)\" (scheduled at 2026-01-22 20:42:32.132962+01:00)\n", - "2026-01-22 20:42:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:32 CET)\" executed successfully\n", - "2026-01-22 20:42:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:34 CET)\" (scheduled at 2026-01-22 20:42:34.010875+01:00)\n", - "2026-01-22 20:42:34,259 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.82 | 91.6066 | 9.7949 | 4915.96 |\n", - "| H4 | uptrend | 440.9 | 44.2042 | 2.92346 | 4915.96 |\n", - "| H1 | uptrend | 558.68 | 24.3474 | 2.04036 | 4915.96 |\n", - "| M30 | uptrend | 652.38 | 14.6389 | 1.43252 | 4915.96 |\n", - "| M15 | downtrend | 2.53 | 10.2994 | -0.003904 | 4915.96 |\n", - "| M5 | uptrend | 854.72 | 5.0708 | 0.650111 | 4915.96 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202571.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:42:37,577 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:47,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:42:57,638 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:07,651 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:17,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:26 CET)\" (scheduled at 2026-01-22 20:43:26.633942+01:00)\n", - "2026-01-22 20:43:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:26 CET)\" executed successfully\n", - "2026-01-22 20:43:27,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:32 CET)\" (scheduled at 2026-01-22 20:43:32.132962+01:00)\n", - "2026-01-22 20:43:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:32 CET)\" executed successfully\n", - "2026-01-22 20:43:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:34 CET)\" (scheduled at 2026-01-22 20:43:34.010875+01:00)\n", - "2026-01-22 20:43:34,156 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.83 | 91.6066 | 9.79504 | 4916.56 |\n", - "| H4 | uptrend | 440.92 | 44.2042 | 2.9236 | 4916.56 |\n", - "| H1 | uptrend | 558.72 | 24.3474 | 2.0405 | 4916.56 |\n", - "| M30 | uptrend | 652.45 | 14.6389 | 1.43266 | 4916.56 |\n", - "| M15 | downtrend | 2.43 | 10.2994 | -0.003762 | 4916.56 |\n", - "| M5 | uptrend | 854.9 | 5.0708 | 0.650253 | 4916.56 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.96% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202589.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:43:37,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:47,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:43:57,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:07,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:17,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:26 CET)\" (scheduled at 2026-01-22 20:44:26.633942+01:00)\n", - "2026-01-22 20:44:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:26 CET)\" executed successfully\n", - "2026-01-22 20:44:27,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:32 CET)\" (scheduled at 2026-01-22 20:44:32.132962+01:00)\n", - "2026-01-22 20:44:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:32 CET)\" executed successfully\n", - "2026-01-22 20:44:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:34 CET)\" (scheduled at 2026-01-22 20:44:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:44:34,277 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+-----------+------------+---------+-----------+---------|\n", - "| D1 | uptrend | 712.8 | 91.6066 | 9.79459 | 4914.63 |\n", - "| H4 | uptrend | 440.85 | 44.2042 | 2.92314 | 4914.63 |\n", - "| H1 | uptrend | 558.59 | 24.3474 | 2.04004 | 4914.63 |\n", - "| M30 | uptrend | 651.25 | 14.661 | 1.43221 | 4914.63 |\n", - "| M15 | downtrend | 2.74 | 10.3215 | -0.004239 | 4914.54 |\n", - "| M5 | uptrend | 837.52 | 5.1722 | 0.649773 | 4914.53 |\n", - "+------+-----------+------------+---------+-----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 99.95% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 201761.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:44:37,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:47,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:44:57,936 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:07,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:17,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:26 CET)\" (scheduled at 2026-01-22 20:45:26.633942+01:00)\n", - "2026-01-22 20:45:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:26 CET)\" executed successfully\n", - "2026-01-22 20:45:28,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:32 CET)\" (scheduled at 2026-01-22 20:45:32.132962+01:00)\n", - "2026-01-22 20:45:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:32 CET)\" executed successfully\n", - "2026-01-22 20:45:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:34 CET)\" (scheduled at 2026-01-22 20:45:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:45:34,264 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.75 | 91.6066 | 9.79386 | 4911.53 |\n", - "| H4 | uptrend | 440.74 | 44.2042 | 2.92241 | 4911.53 |\n", - "| H1 | uptrend | 558.39 | 24.3474 | 2.03931 | 4911.53 |\n", - "| M30 | uptrend | 639.95 | 14.9124 | 1.43147 | 4911.52 |\n", - "| M15 | uptrend | 16.1 | 9.8415 | 0.023763 | 4911.51 |\n", - "| M5 | uptrend | 871.22 | 5.0599 | 0.661251 | 4911.5 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 203244.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:45:38,018 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:48,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:45:58,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:08,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:18,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:26 CET)\" (scheduled at 2026-01-22 20:46:26.633942+01:00)\n", - "2026-01-22 20:46:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:26 CET)\" executed successfully\n", - "2026-01-22 20:46:28,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:32 CET)\" (scheduled at 2026-01-22 20:46:32.132962+01:00)\n", - "2026-01-22 20:46:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:32 CET)\" executed successfully\n", - "2026-01-22 20:46:34,043 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:34 CET)\" (scheduled at 2026-01-22 20:46:34.010875+01:00)\n", - "2026-01-22 20:46:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.74 | 91.6066 | 9.79375 | 4911.09 |\n", - "| H4 | uptrend | 440.73 | 44.2042 | 2.92231 | 4911.09 |\n", - "| H1 | uptrend | 558.36 | 24.3474 | 2.03921 | 4911.09 |\n", - "| M30 | uptrend | 639.9 | 14.9124 | 1.43137 | 4911.09 |\n", - "| M15 | uptrend | 16.03 | 9.8415 | 0.023664 | 4911.09 |\n", - "| M5 | uptrend | 871.09 | 5.0599 | 0.661154 | 4911.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 203227.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:46:38,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:48,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:46:58,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:08,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:18,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:26 CET)\" (scheduled at 2026-01-22 20:47:26.633942+01:00)\n", - "2026-01-22 20:47:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:26 CET)\" executed successfully\n", - "2026-01-22 20:47:28,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:32 CET)\" (scheduled at 2026-01-22 20:47:32.132962+01:00)\n", - "2026-01-22 20:47:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:32 CET)\" executed successfully\n", - "2026-01-22 20:47:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:34 CET)\" (scheduled at 2026-01-22 20:47:34.010875+01:00)\n", - "2026-01-22 20:47:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.74 | 91.6066 | 9.79375 | 4911.1 |\n", - "| H4 | uptrend | 440.73 | 44.2042 | 2.92231 | 4911.1 |\n", - "| H1 | uptrend | 558.36 | 24.3474 | 2.03921 | 4911.1 |\n", - "| M30 | uptrend | 638.68 | 14.941 | 1.43137 | 4911.1 |\n", - "| M15 | uptrend | 15.99 | 9.8701 | 0.023666 | 4911.1 |\n", - "| M5 | uptrend | 866.21 | 5.0885 | 0.661156 | 4911.1 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202931.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:47:38,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:48,335 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:47:58,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:08,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:18,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:26 CET)\" (scheduled at 2026-01-22 20:48:26.633942+01:00)\n", - "2026-01-22 20:48:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:26 CET)\" executed successfully\n", - "2026-01-22 20:48:28,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:32 CET)\" (scheduled at 2026-01-22 20:48:32.132962+01:00)\n", - "2026-01-22 20:48:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:32 CET)\" executed successfully\n", - "2026-01-22 20:48:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:34 CET)\" (scheduled at 2026-01-22 20:48:34.010875+01:00)\n", - "2026-01-22 20:48:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 712.69 | 91.6066 | 9.79304 | 4908.07 |\n", - "| H4 | uptrend | 440.62 | 44.2042 | 2.92159 | 4908.07 |\n", - "| H1 | uptrend | 555.33 | 24.4717 | 2.03849 | 4908.07 |\n", - "| M30 | uptrend | 631.59 | 15.101 | 1.43066 | 4908.07 |\n", - "| M15 | uptrend | 15.25 | 10.0301 | 0.02295 | 4908.07 |\n", - "| M5 | uptrend | 838.89 | 5.2485 | 0.66044 | 4908.07 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.86)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200917.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:48:38,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:48,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:48:58,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:08,534 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:18,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:26 CET)\" (scheduled at 2026-01-22 20:49:26.633942+01:00)\n", - "2026-01-22 20:49:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:26 CET)\" executed successfully\n", - "2026-01-22 20:49:28,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:32 CET)\" (scheduled at 2026-01-22 20:49:32.132962+01:00)\n", - "2026-01-22 20:49:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:32 CET)\" executed successfully\n", - "2026-01-22 20:49:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:34 CET)\" (scheduled at 2026-01-22 20:49:34.010875+01:00)\n", - "2026-01-22 20:49:34,162 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.67 | 91.6066 | 9.79281 | 4907.09 |\n", - "| H4 | uptrend | 440.59 | 44.2042 | 2.92136 | 4907.09 |\n", - "| H1 | uptrend | 552.3 | 24.6031 | 2.03826 | 4907.09 |\n", - "| M30 | uptrend | 626.04 | 15.2324 | 1.43043 | 4907.09 |\n", - "| M15 | uptrend | 14.91 | 10.1615 | 0.022719 | 4907.09 |\n", - "| M5 | uptrend | 818.11 | 5.3799 | 0.660209 | 4907.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 199316.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:49:38,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:48,632 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:49:58,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:08,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:18,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:26 CET)\" (scheduled at 2026-01-22 20:50:26.633942+01:00)\n", - "2026-01-22 20:50:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:26 CET)\" executed successfully\n", - "2026-01-22 20:50:28,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:32 CET)\" (scheduled at 2026-01-22 20:50:32.132962+01:00)\n", - "2026-01-22 20:50:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:32 CET)\" executed successfully\n", - "2026-01-22 20:50:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:34 CET)\" (scheduled at 2026-01-22 20:50:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:50:34,262 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.69 | 91.6066 | 9.79312 | 4908.43 |\n", - "| H4 | uptrend | 440.63 | 44.2042 | 2.92168 | 4908.43 |\n", - "| H1 | uptrend | 552.1 | 24.616 | 2.03858 | 4908.43 |\n", - "| M30 | uptrend | 625.65 | 15.2453 | 1.43074 | 4908.42 |\n", - "| M15 | uptrend | 15.1 | 10.1743 | 0.02304 | 4908.45 |\n", - "| M5 | uptrend | 880.02 | 5.0747 | 0.669882 | 4908.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.87)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 201756.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:50:38,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:48,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:50:58,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:08,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:18,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:26,783 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:26 CET)\" (scheduled at 2026-01-22 20:51:26.633942+01:00)\n", - "2026-01-22 20:51:26,783 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:26 CET)\" executed successfully\n", - "2026-01-22 20:51:28,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:32 CET)\" (scheduled at 2026-01-22 20:51:32.132962+01:00)\n", - "2026-01-22 20:51:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:32 CET)\" executed successfully\n", - "2026-01-22 20:51:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:34 CET)\" (scheduled at 2026-01-22 20:51:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.72 | 91.6066 | 9.79345 | 4909.82 |\n", - "| H4 | uptrend | 440.68 | 44.2042 | 2.92201 | 4909.82 |\n", - "| H1 | uptrend | 552.19 | 24.616 | 2.03891 | 4909.82 |\n", - "| M30 | uptrend | 625.8 | 15.2453 | 1.43107 | 4909.82 |\n", - "| M15 | uptrend | 15.31 | 10.1743 | 0.023362 | 4909.81 |\n", - "| M5 | uptrend | 864.03 | 5.1712 | 0.670204 | 4909.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.90)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 201152.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:51:34,248 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:51:38,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:48,925 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:51:58,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:08,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:18,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:26 CET)\" (scheduled at 2026-01-22 20:52:26.633942+01:00)\n", - "2026-01-22 20:52:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:26 CET)\" executed successfully\n", - "2026-01-22 20:52:29,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:32 CET)\" (scheduled at 2026-01-22 20:52:32.132962+01:00)\n", - "2026-01-22 20:52:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:32 CET)\" executed successfully\n", - "2026-01-22 20:52:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:34 CET)\" (scheduled at 2026-01-22 20:52:34.010875+01:00)\n", - "2026-01-22 20:52:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.74 | 91.6066 | 9.79369 | 4910.83 |\n", - "| H4 | uptrend | 440.72 | 44.2042 | 2.92225 | 4910.83 |\n", - "| H1 | uptrend | 552.25 | 24.616 | 2.03914 | 4910.83 |\n", - "| M30 | uptrend | 625.9 | 15.2453 | 1.43131 | 4910.83 |\n", - "| M15 | uptrend | 15.47 | 10.1743 | 0.023603 | 4910.83 |\n", - "| M5 | uptrend | 845.99 | 5.2833 | 0.670445 | 4910.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.93)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200458.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:52:39,042 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:49,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:52:59,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:09,124 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:19,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:26 CET)\" (scheduled at 2026-01-22 20:53:26.633942+01:00)\n", - "2026-01-22 20:53:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:26 CET)\" executed successfully\n", - "2026-01-22 20:53:29,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:32 CET)\" (scheduled at 2026-01-22 20:53:32.132962+01:00)\n", - "2026-01-22 20:53:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:32 CET)\" executed successfully\n", - "2026-01-22 20:53:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:34 CET)\" (scheduled at 2026-01-22 20:53:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.73 | 91.6066 | 9.79356 | 4910.3 |\n", - "| H4 | uptrend | 440.7 | 44.2042 | 2.92212 | 4910.3 |\n", - "| H1 | uptrend | 552.22 | 24.616 | 2.03902 | 4910.3 |\n", - "| M30 | uptrend | 625.85 | 15.2453 | 1.43118 | 4910.3 |\n", - "| M15 | uptrend | 15.38 | 10.1743 | 0.02348 | 4910.31 |\n", - "| M5 | uptrend | 845.84 | 5.2833 | 0.670322 | 4910.31 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200438.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:53:34,237 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:53:39,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:49,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:53:59,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:09,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:19,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:26 CET)\" (scheduled at 2026-01-22 20:54:26.633942+01:00)\n", - "2026-01-22 20:54:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:26 CET)\" executed successfully\n", - "2026-01-22 20:54:29,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:32 CET)\" (scheduled at 2026-01-22 20:54:32.132962+01:00)\n", - "2026-01-22 20:54:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:32 CET)\" executed successfully\n", - "2026-01-22 20:54:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:34 CET)\" (scheduled at 2026-01-22 20:54:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:54:34,371 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.73 | 91.6066 | 9.79359 | 4910.41 |\n", - "| H4 | uptrend | 440.7 | 44.2042 | 2.92215 | 4910.41 |\n", - "| H1 | uptrend | 552.23 | 24.616 | 2.03905 | 4910.41 |\n", - "| M30 | uptrend | 625.86 | 15.2453 | 1.43121 | 4910.41 |\n", - "| M15 | uptrend | 15.4 | 10.1743 | 0.023501 | 4910.4 |\n", - "| M5 | uptrend | 845.86 | 5.2833 | 0.670343 | 4910.4 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 200441.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:54:39,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:49,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:54:59,756 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:09,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:19,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:26 CET)\" (scheduled at 2026-01-22 20:55:26.633942+01:00)\n", - "2026-01-22 20:55:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:26 CET)\" executed successfully\n", - "2026-01-22 20:55:29,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:32 CET)\" (scheduled at 2026-01-22 20:55:32.132962+01:00)\n", - "2026-01-22 20:55:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:32 CET)\" executed successfully\n", - "2026-01-22 20:55:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:34 CET)\" (scheduled at 2026-01-22 20:55:34.010875+01:00)\n", - "2026-01-22 20:55:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.77 | 91.6066 | 9.79417 | 4912.88 |\n", - "| H4 | uptrend | 440.79 | 44.2042 | 2.92273 | 4912.88 |\n", - "| H1 | uptrend | 552.39 | 24.616 | 2.03963 | 4912.88 |\n", - "| M30 | uptrend | 626.11 | 15.2453 | 1.43179 | 4912.88 |\n", - "| M15 | uptrend | 15.78 | 10.1743 | 0.024087 | 4912.88 |\n", - "| M5 | uptrend | 901.96 | 5.0432 | 0.682313 | 4912.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.98)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202751.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:55:39,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:49,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:55:59,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:56:09,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:56:19,953 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:56:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:26 CET)\" (scheduled at 2026-01-22 20:56:26.633942+01:00)\n", - "2026-01-22 20:56:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:26 CET)\" executed successfully\n", - "2026-01-22 20:56:29,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:56:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:32 CET)\" (scheduled at 2026-01-22 20:56:32.132962+01:00)\n", - "2026-01-22 20:56:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:32 CET)\" executed successfully\n", - "2026-01-22 20:56:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:34 CET)\" (scheduled at 2026-01-22 20:56:34.010875+01:00)\n", - "2026-01-22 20:56:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.75 | 91.6066 | 9.79388 | 4911.64 |\n", - "| H4 | uptrend | 440.75 | 44.2042 | 2.92244 | 4911.64 |\n", - "| H1 | uptrend | 552.31 | 24.616 | 2.03934 | 4911.64 |\n", - "| M30 | uptrend | 625.99 | 15.2453 | 1.4315 | 4911.64 |\n", - "| M15 | uptrend | 15.59 | 10.1743 | 0.023794 | 4911.64 |\n", - "| M5 | uptrend | 897.51 | 5.066 | 0.68202 | 4911.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202540.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:56:39,998 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:56:50,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:00,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:10,065 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:20,100 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:26 CET)\" (scheduled at 2026-01-22 20:57:26.633942+01:00)\n", - "2026-01-22 20:57:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:26 CET)\" executed successfully\n", - "2026-01-22 20:57:30,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:32 CET)\" (scheduled at 2026-01-22 20:57:32.132962+01:00)\n", - "2026-01-22 20:57:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:32 CET)\" executed successfully\n", - "2026-01-22 20:57:34,104 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:34 CET)\" (scheduled at 2026-01-22 20:57:34.010875+01:00)\n", - "2026-01-22 20:57:34,290 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.76 | 91.6066 | 9.79406 | 4912.38 |\n", - "| H4 | uptrend | 440.77 | 44.2042 | 2.92261 | 4912.38 |\n", - "| H1 | uptrend | 552.35 | 24.616 | 2.03951 | 4912.38 |\n", - "| M30 | uptrend | 626.06 | 15.2453 | 1.43168 | 4912.38 |\n", - "| M15 | uptrend | 15.71 | 10.1743 | 0.023969 | 4912.38 |\n", - "| M5 | uptrend | 897.74 | 5.066 | 0.682195 | 4912.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.97)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202568.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:57:40,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:57:50,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:00,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:10,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:20,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:26,671 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:26 CET)\" (scheduled at 2026-01-22 20:58:26.633942+01:00)\n", - "2026-01-22 20:58:26,671 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:26 CET)\" executed successfully\n", - "2026-01-22 20:58:30,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:32 CET)\" (scheduled at 2026-01-22 20:58:32.132962+01:00)\n", - "2026-01-22 20:58:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:32 CET)\" executed successfully\n", - "2026-01-22 20:58:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:34 CET)\" (scheduled at 2026-01-22 20:58:34.010875+01:00)\n", - "2026-01-22 20:58:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 20:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.76 | 91.6066 | 9.794 | 4912.16 |\n", - "| H4 | uptrend | 440.77 | 44.2042 | 2.92256 | 4912.16 |\n", - "| H1 | uptrend | 552.34 | 24.616 | 2.03946 | 4912.16 |\n", - "| M30 | uptrend | 626.04 | 15.2453 | 1.43162 | 4912.16 |\n", - "| M15 | uptrend | 15.67 | 10.1743 | 0.023917 | 4912.16 |\n", - "| M5 | uptrend | 897.67 | 5.066 | 0.682143 | 4912.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 202560.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:58:40,296 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:58:50,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:00,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:10,376 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:20,396 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:26 CET)\" (scheduled at 2026-01-22 20:59:26.633942+01:00)\n", - "2026-01-22 20:59:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:26 CET)\" executed successfully\n", - "2026-01-22 20:59:30,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:32 CET)\" (scheduled at 2026-01-22 20:59:32.132962+01:00)\n", - "2026-01-22 20:59:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:32 CET)\" executed successfully\n", - "2026-01-22 20:59:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:34 CET)\" (scheduled at 2026-01-22 20:59:34.010875+01:00)\n", - "2026-01-22 20:59:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.75 | 91.6066 | 9.79383 | 4911.41 |\n", - "| H4 | uptrend | 440.74 | 44.2042 | 2.92238 | 4911.41 |\n", - "| H1 | uptrend | 552.29 | 24.616 | 2.03928 | 4911.41 |\n", - "| M30 | uptrend | 625.96 | 15.2453 | 1.43145 | 4911.41 |\n", - "| M15 | uptrend | 15.56 | 10.1743 | 0.02374 | 4911.41 |\n", - "| M5 | uptrend | 884.1 | 5.1425 | 0.681965 | 4911.41 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 201997.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 75.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 73.5%\n", - " πŸ”€ HYBRID (60/40): 89.4%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%), High volume\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 20:59:40,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 20:59:50,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:00,014 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 21:30:00 CET)\" (scheduled at 2026-01-22 21:00:00+01:00)\n", - "2026-01-22 21:00:00,048 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 21:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 21:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.70 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:00:00,511 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:10,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:20,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:27,295 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:26 CET)\" (scheduled at 2026-01-22 21:00:26.633942+01:00)\n", - "2026-01-22 21:00:27,295 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:26 CET)\" executed successfully\n", - "2026-01-22 21:00:30,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:32,165 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:32 CET)\" (scheduled at 2026-01-22 21:00:32.132962+01:00)\n", - "2026-01-22 21:00:32,165 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:32 CET)\" executed successfully\n", - "2026-01-22 21:00:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:34 CET)\" (scheduled at 2026-01-22 21:00:34.010875+01:00)\n", - "2026-01-22 21:00:34,156 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.76 | 91.6066 | 9.79403 | 4912.26 |\n", - "| H4 | uptrend | 440.77 | 44.2042 | 2.92259 | 4912.26 |\n", - "| H1 | uptrend | 604.62 | 22.9327 | 2.07984 | 4912.26 |\n", - "| M30 | uptrend | 671.48 | 14.2313 | 1.4334 | 4912.26 |\n", - "| M15 | uptrend | 36.34 | 9.5226 | 0.051908 | 4912.26 |\n", - "| M5 | uptrend | 952.81 | 4.8501 | 0.693191 | 4912.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 603.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 214869.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:00:40,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:00:50,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:00,771 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:10,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:20,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:26 CET)\" (scheduled at 2026-01-22 21:01:26.633942+01:00)\n", - "2026-01-22 21:01:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:26 CET)\" executed successfully\n", - "2026-01-22 21:01:30,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:32,330 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:32 CET)\" (scheduled at 2026-01-22 21:01:32.132962+01:00)\n", - "2026-01-22 21:01:32,330 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:32 CET)\" executed successfully\n", - "2026-01-22 21:01:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:34 CET)\" (scheduled at 2026-01-22 21:01:34.010875+01:00)\n", - "2026-01-22 21:01:34,144 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.78 | 91.6066 | 9.79433 | 4913.56 |\n", - "| H4 | uptrend | 440.82 | 44.2042 | 2.92289 | 4913.56 |\n", - "| H1 | uptrend | 600.45 | 23.0956 | 2.08014 | 4913.56 |\n", - "| M30 | uptrend | 664.02 | 14.3942 | 1.43371 | 4913.56 |\n", - "| M15 | uptrend | 35.94 | 9.6855 | 0.052215 | 4913.56 |\n", - "| M5 | uptrend | 922.27 | 5.013 | 0.693499 | 4913.56 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 212612.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:01:41,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:01:51,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:01,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:11,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:21,278 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:26 CET)\" (scheduled at 2026-01-22 21:02:26.633942+01:00)\n", - "2026-01-22 21:02:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:26 CET)\" executed successfully\n", - "2026-01-22 21:02:31,303 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:32,156 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:32 CET)\" (scheduled at 2026-01-22 21:02:32.132962+01:00)\n", - "2026-01-22 21:02:32,156 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:32 CET)\" executed successfully\n", - "2026-01-22 21:02:34,071 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:34 CET)\" (scheduled at 2026-01-22 21:02:34.010875+01:00)\n", - "2026-01-22 21:02:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.87 | 91.6066 | 9.7955 | 4918.49 |\n", - "| H4 | uptrend | 440.99 | 44.2042 | 2.92406 | 4918.49 |\n", - "| H1 | uptrend | 593.86 | 23.3649 | 2.08131 | 4918.49 |\n", - "| M30 | uptrend | 652.36 | 14.6635 | 1.43487 | 4918.49 |\n", - "| M15 | uptrend | 35.75 | 9.9548 | 0.05338 | 4918.49 |\n", - "| M5 | uptrend | 876.72 | 5.2823 | 0.694663 | 4918.49 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 209199.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:02:41,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:02:51,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:01,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:11,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:21,427 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:26 CET)\" (scheduled at 2026-01-22 21:03:26.633942+01:00)\n", - "2026-01-22 21:03:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:26 CET)\" executed successfully\n", - "2026-01-22 21:03:31,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:32 CET)\" (scheduled at 2026-01-22 21:03:32.132962+01:00)\n", - "2026-01-22 21:03:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:32 CET)\" executed successfully\n", - "2026-01-22 21:03:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:34 CET)\" (scheduled at 2026-01-22 21:03:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:03:34,267 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.88 | 91.6066 | 9.7957 | 4919.36 |\n", - "| H4 | uptrend | 441.02 | 44.2042 | 2.92426 | 4919.36 |\n", - "| H1 | uptrend | 592.18 | 23.4327 | 2.08146 | 4919.13 |\n", - "| M30 | uptrend | 649.42 | 14.7313 | 1.43502 | 4919.12 |\n", - "| M15 | uptrend | 35.61 | 10.0226 | 0.053529 | 4919.12 |\n", - "| M5 | uptrend | 865.79 | 5.3501 | 0.694817 | 4919.14 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208353.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:03:41,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:03:51,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:01,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:11,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:21,577 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:26,771 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:26 CET)\" (scheduled at 2026-01-22 21:04:26.633942+01:00)\n", - "2026-01-22 21:04:26,771 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:26 CET)\" executed successfully\n", - "2026-01-22 21:04:31,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:32 CET)\" (scheduled at 2026-01-22 21:04:32.132962+01:00)\n", - "2026-01-22 21:04:32,164 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:32 CET)\" executed successfully\n", - "2026-01-22 21:04:34,045 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:34 CET)\" (scheduled at 2026-01-22 21:04:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:04:34,392 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.9 | 91.6066 | 9.79598 | 4920.52 |\n", - "| H4 | uptrend | 441.06 | 44.2042 | 2.92454 | 4920.52 |\n", - "| H1 | uptrend | 590.56 | 23.5006 | 2.08179 | 4920.52 |\n", - "| M30 | uptrend | 646.59 | 14.7992 | 1.43535 | 4920.52 |\n", - "| M15 | uptrend | 35.58 | 10.0905 | 0.05386 | 4920.52 |\n", - "| M5 | uptrend | 855.35 | 5.418 | 0.695143 | 4920.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 207549.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:04:41,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:04:51,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:01,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:11,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:21,719 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:27,777 - WARNING - Run time of job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:06:26 CET)\" was missed by 0:00:01.143618\n", - "2026-01-22 21:05:31,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:32,198 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:06:32 CET)\" (scheduled at 2026-01-22 21:05:32.132962+01:00)\n", - "2026-01-22 21:05:32,199 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:06:32 CET)\" executed successfully\n", - "2026-01-22 21:05:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:06:34 CET)\" (scheduled at 2026-01-22 21:05:34.010875+01:00)\n", - "2026-01-22 21:05:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.94 | 91.6066 | 9.79651 | 4922.77 |\n", - "| H4 | uptrend | 441.14 | 44.2042 | 2.92507 | 4922.77 |\n", - "| H1 | uptrend | 586.4 | 23.6734 | 2.08232 | 4922.77 |\n", - "| M30 | uptrend | 639.36 | 14.972 | 1.43588 | 4922.77 |\n", - "| M15 | uptrend | 35.32 | 10.2633 | 0.054382 | 4922.73 |\n", - "| M5 | uptrend | 899.77 | 5.2529 | 0.708963 | 4922.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.22)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208321.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:05:41,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:05:51,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:01,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:11,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:21,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:26,774 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:26 CET)\" (scheduled at 2026-01-22 21:06:26.633942+01:00)\n", - "2026-01-22 21:06:26,774 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:26 CET)\" executed successfully\n", - "2026-01-22 21:06:31,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:32 CET)\" (scheduled at 2026-01-22 21:06:32.132962+01:00)\n", - "2026-01-22 21:06:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:32 CET)\" executed successfully\n", - "2026-01-22 21:06:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:34 CET)\" (scheduled at 2026-01-22 21:06:34.010875+01:00)\n", - "2026-01-22 21:06:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.95 | 91.6066 | 9.79657 | 4923.03 |\n", - "| H4 | uptrend | 441.15 | 44.2042 | 2.92513 | 4923.03 |\n", - "| H1 | uptrend | 585.98 | 23.6913 | 2.08238 | 4923.03 |\n", - "| M30 | uptrend | 638.63 | 14.9899 | 1.43594 | 4923.03 |\n", - "| M15 | uptrend | 35.31 | 10.2812 | 0.054453 | 4923.03 |\n", - "| M5 | uptrend | 896.8 | 5.2708 | 0.709025 | 4923.03 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208101.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:06:41,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:06:51,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:01,991 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:12,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:22,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:26 CET)\" (scheduled at 2026-01-22 21:07:26.633942+01:00)\n", - "2026-01-22 21:07:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:26 CET)\" executed successfully\n", - "2026-01-22 21:07:32,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:32,184 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:32 CET)\" (scheduled at 2026-01-22 21:07:32.132962+01:00)\n", - "2026-01-22 21:07:32,186 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:32 CET)\" executed successfully\n", - "2026-01-22 21:07:34,046 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:34 CET)\" (scheduled at 2026-01-22 21:07:34.010875+01:00)\n", - "2026-01-22 21:07:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.79635 | 4922.08 |\n", - "| H4 | uptrend | 441.12 | 44.2042 | 2.9249 | 4922.08 |\n", - "| H1 | uptrend | 585.91 | 23.6913 | 2.08216 | 4922.08 |\n", - "| M30 | uptrend | 638.53 | 14.9899 | 1.43572 | 4922.08 |\n", - "| M15 | uptrend | 35.16 | 10.2812 | 0.054228 | 4922.08 |\n", - "| M5 | uptrend | 896.51 | 5.2708 | 0.7088 | 4922.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208064.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:07:42,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:07:52,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:02,142 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:12,171 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:22,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:26 CET)\" (scheduled at 2026-01-22 21:08:26.633942+01:00)\n", - "2026-01-22 21:08:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:26 CET)\" executed successfully\n", - "2026-01-22 21:08:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:32 CET)\" (scheduled at 2026-01-22 21:08:32.132962+01:00)\n", - "2026-01-22 21:08:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:32 CET)\" executed successfully\n", - "2026-01-22 21:08:32,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:34,034 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:34 CET)\" (scheduled at 2026-01-22 21:08:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:08:34,265 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.94 | 91.6066 | 9.79648 | 4922.63 |\n", - "| H4 | uptrend | 441.14 | 44.2042 | 2.92503 | 4922.63 |\n", - "| H1 | uptrend | 585.95 | 23.6913 | 2.08228 | 4922.6 |\n", - "| M30 | uptrend | 638.58 | 14.9899 | 1.43584 | 4922.6 |\n", - "| M15 | uptrend | 35.24 | 10.2812 | 0.054344 | 4922.57 |\n", - "| M5 | uptrend | 896.66 | 5.2708 | 0.708916 | 4922.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.22)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208084.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:08:42,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:08:52,266 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:02,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:12,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:22,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:26 CET)\" (scheduled at 2026-01-22 21:09:26.633942+01:00)\n", - "2026-01-22 21:09:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:26 CET)\" executed successfully\n", - "2026-01-22 21:09:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:32 CET)\" (scheduled at 2026-01-22 21:09:32.132962+01:00)\n", - "2026-01-22 21:09:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:32 CET)\" executed successfully\n", - "2026-01-22 21:09:32,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:34 CET)\" (scheduled at 2026-01-22 21:09:34.010875+01:00)\n", - "2026-01-22 21:09:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.79641 | 4922.35 |\n", - "| H4 | uptrend | 441.13 | 44.2042 | 2.92497 | 4922.35 |\n", - "| H1 | uptrend | 585.93 | 23.6913 | 2.08222 | 4922.35 |\n", - "| M30 | uptrend | 638.56 | 14.9899 | 1.43578 | 4922.35 |\n", - "| M15 | uptrend | 35.2 | 10.2812 | 0.054292 | 4922.35 |\n", - "| M5 | uptrend | 896.59 | 5.2708 | 0.708864 | 4922.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 208074.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:09:42,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:09:52,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:02,923 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:12,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:22,970 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:26 CET)\" (scheduled at 2026-01-22 21:10:26.633942+01:00)\n", - "2026-01-22 21:10:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:26 CET)\" executed successfully\n", - "2026-01-22 21:10:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:32 CET)\" (scheduled at 2026-01-22 21:10:32.132962+01:00)\n", - "2026-01-22 21:10:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:32 CET)\" executed successfully\n", - "2026-01-22 21:10:33,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:34 CET)\" (scheduled at 2026-01-22 21:10:34.010875+01:00)\n", - "2026-01-22 21:10:34,245 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.7964 | 4922.28 |\n", - "| H4 | uptrend | 441.13 | 44.2042 | 2.92495 | 4922.28 |\n", - "| H1 | uptrend | 585.93 | 23.6913 | 2.08221 | 4922.28 |\n", - "| M30 | uptrend | 638.55 | 14.9899 | 1.43577 | 4922.28 |\n", - "| M15 | uptrend | 35.19 | 10.2812 | 0.054266 | 4922.24 |\n", - "| M5 | uptrend | 972.73 | 4.9465 | 0.721737 | 4922.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 211118.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:10:43,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:10:53,053 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:03,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:13,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:23,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:26,800 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:26 CET)\" (scheduled at 2026-01-22 21:11:26.633942+01:00)\n", - "2026-01-22 21:11:26,800 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:26 CET)\" executed successfully\n", - "2026-01-22 21:11:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:32 CET)\" (scheduled at 2026-01-22 21:11:32.132962+01:00)\n", - "2026-01-22 21:11:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:32 CET)\" executed successfully\n", - "2026-01-22 21:11:33,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:34 CET)\" (scheduled at 2026-01-22 21:11:34.010875+01:00)\n", - "2026-01-22 21:11:34,225 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.79635 | 4922.08 |\n", - "| H4 | uptrend | 441.12 | 44.2042 | 2.9249 | 4922.08 |\n", - "| H1 | uptrend | 585.91 | 23.6913 | 2.08216 | 4922.08 |\n", - "| M30 | uptrend | 638.53 | 14.9899 | 1.43572 | 4922.08 |\n", - "| M15 | uptrend | 35.16 | 10.2812 | 0.054228 | 4922.08 |\n", - "| M5 | uptrend | 972.4 | 4.9479 | 0.721699 | 4922.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 211100.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:11:43,174 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:11:53,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:03,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:13,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:23,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:26 CET)\" (scheduled at 2026-01-22 21:12:26.633942+01:00)\n", - "2026-01-22 21:12:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:26 CET)\" executed successfully\n", - "2026-01-22 21:12:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:32 CET)\" (scheduled at 2026-01-22 21:12:32.132962+01:00)\n", - "2026-01-22 21:12:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:32 CET)\" executed successfully\n", - "2026-01-22 21:12:33,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:34 CET)\" (scheduled at 2026-01-22 21:12:34.010875+01:00)\n", - "2026-01-22 21:12:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.93 | 91.6066 | 9.79642 | 4922.39 |\n", - "| H4 | uptrend | 441.13 | 44.2042 | 2.92498 | 4922.39 |\n", - "| H1 | uptrend | 585.93 | 23.6913 | 2.08223 | 4922.39 |\n", - "| M30 | uptrend | 638.56 | 14.9899 | 1.43579 | 4922.39 |\n", - "| M15 | uptrend | 35.21 | 10.2812 | 0.054301 | 4922.39 |\n", - "| M5 | uptrend | 967.19 | 4.975 | 0.721772 | 4922.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 210900.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:12:43,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:12:53,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:03,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:13,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:23,451 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:26 CET)\" (scheduled at 2026-01-22 21:13:26.633942+01:00)\n", - "2026-01-22 21:13:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:26 CET)\" executed successfully\n", - "2026-01-22 21:13:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:32 CET)\" (scheduled at 2026-01-22 21:13:32.132962+01:00)\n", - "2026-01-22 21:13:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:32 CET)\" executed successfully\n", - "2026-01-22 21:13:33,473 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:34,054 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:34 CET)\" (scheduled at 2026-01-22 21:13:34.010875+01:00)\n", - "2026-01-22 21:13:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.95 | 91.6066 | 9.79663 | 4923.26 |\n", - "| H4 | uptrend | 441.16 | 44.2042 | 2.92518 | 4923.23 |\n", - "| H1 | uptrend | 585.8 | 23.6992 | 2.08243 | 4923.23 |\n", - "| M30 | uptrend | 638.32 | 14.9978 | 1.436 | 4923.26 |\n", - "| M15 | uptrend | 35.32 | 10.2891 | 0.054507 | 4923.26 |\n", - "| M5 | uptrend | 959.21 | 5.0179 | 0.721978 | 4923.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 210555.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:13:43,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:13:53,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:03,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:13,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:23,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:26 CET)\" (scheduled at 2026-01-22 21:14:26.633942+01:00)\n", - "2026-01-22 21:14:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:26 CET)\" executed successfully\n", - "2026-01-22 21:14:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:32 CET)\" (scheduled at 2026-01-22 21:14:32.132962+01:00)\n", - "2026-01-22 21:14:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:32 CET)\" executed successfully\n", - "2026-01-22 21:14:33,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:34 CET)\" (scheduled at 2026-01-22 21:14:34.010875+01:00)\n", - "2026-01-22 21:14:34,254 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 712.97 | 91.6066 | 9.79686 | 4924.26 |\n", - "| H4 | uptrend | 441.2 | 44.2042 | 2.92542 | 4924.26 |\n", - "| H1 | uptrend | 584.16 | 23.7684 | 2.08267 | 4924.26 |\n", - "| M30 | uptrend | 635.49 | 15.067 | 1.43623 | 4924.26 |\n", - "| M15 | uptrend | 35.23 | 10.3583 | 0.054743 | 4924.26 |\n", - "| M5 | uptrend | 946.45 | 5.0872 | 0.722214 | 4924.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 604.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 209652.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:14:43,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:14:53,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:03,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:13,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:23,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:26 CET)\" (scheduled at 2026-01-22 21:15:26.633942+01:00)\n", - "2026-01-22 21:15:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:26 CET)\" executed successfully\n", - "2026-01-22 21:15:32,162 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:32 CET)\" (scheduled at 2026-01-22 21:15:32.132962+01:00)\n", - "2026-01-22 21:15:32,162 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:32 CET)\" executed successfully\n", - "2026-01-22 21:15:33,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:34,135 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:34 CET)\" (scheduled at 2026-01-22 21:15:34.010875+01:00)\n", - "2026-01-22 21:15:34,303 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 711.42 | 91.8109 | 9.79736 | 4926.35 |\n", - "| H4 | uptrend | 439.24 | 44.4085 | 2.92591 | 4926.35 |\n", - "| H1 | uptrend | 579.19 | 23.9777 | 2.08317 | 4926.35 |\n", - "| M30 | uptrend | 627 | 15.2763 | 1.43673 | 4926.35 |\n", - "| M15 | uptrend | 58.37 | 9.9072 | 0.086746 | 4926.35 |\n", - "| M5 | uptrend | 979.13 | 5.0125 | 0.736185 | 4926.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 602.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 211001.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:15:43,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:15:53,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:03,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:13,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:23,924 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:27,003 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:26 CET)\" (scheduled at 2026-01-22 21:16:26.633942+01:00)\n", - "2026-01-22 21:16:27,003 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:26 CET)\" executed successfully\n", - "2026-01-22 21:16:32,292 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:32 CET)\" (scheduled at 2026-01-22 21:16:32.132962+01:00)\n", - "2026-01-22 21:16:32,292 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:32 CET)\" executed successfully\n", - "2026-01-22 21:16:33,950 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:34,047 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:34 CET)\" (scheduled at 2026-01-22 21:16:34.010875+01:00)\n", - "2026-01-22 21:16:34,285 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 711.4 | 91.8109 | 9.79713 | 4925.39 |\n", - "| H4 | uptrend | 439.21 | 44.4085 | 2.92569 | 4925.39 |\n", - "| H1 | uptrend | 579.13 | 23.9777 | 2.08294 | 4925.39 |\n", - "| M30 | uptrend | 626.9 | 15.2763 | 1.4365 | 4925.39 |\n", - "| M15 | uptrend | 58.11 | 9.9258 | 0.086519 | 4925.39 |\n", - "| M5 | uptrend | 975.21 | 5.0311 | 0.735958 | 4925.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 602.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 210812.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:16:43,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:16:53,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:17:04,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:17:14,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:17:24,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:17:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:26 CET)\" (scheduled at 2026-01-22 21:17:26.633942+01:00)\n", - "2026-01-22 21:17:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:26 CET)\" executed successfully\n", - "2026-01-22 21:17:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:32 CET)\" (scheduled at 2026-01-22 21:17:32.132962+01:00)\n", - "2026-01-22 21:17:32,165 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:32 CET)\" executed successfully\n", - "2026-01-22 21:17:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:34 CET)\" (scheduled at 2026-01-22 21:17:34.010875+01:00)\n", - "2026-01-22 21:17:34,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:17:34,435 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.85 | 91.8887 | 9.7978 | 4928.24 |\n", - "| H4 | uptrend | 438.54 | 44.4864 | 2.92636 | 4928.24 |\n", - "| H1 | uptrend | 577.44 | 24.0556 | 2.08361 | 4928.24 |\n", - "| M30 | uptrend | 624.01 | 15.3542 | 1.43718 | 4928.24 |\n", - "| M15 | uptrend | 58.11 | 10.0036 | 0.087193 | 4928.24 |\n", - "| M5 | uptrend | 961.23 | 5.109 | 0.736631 | 4928.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 209793.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:17:44,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:17:54,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:18:04,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:18:14,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:18:24,231 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:18:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:26 CET)\" (scheduled at 2026-01-22 21:18:26.633942+01:00)\n", - "2026-01-22 21:18:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:26 CET)\" executed successfully\n", - "2026-01-22 21:18:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:32 CET)\" (scheduled at 2026-01-22 21:18:32.132962+01:00)\n", - "2026-01-22 21:18:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:32 CET)\" executed successfully\n", - "2026-01-22 21:18:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:34 CET)\" (scheduled at 2026-01-22 21:18:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.79 | 91.8937 | 9.79754 | 4927.11 |\n", - "| H4 | uptrend | 438.45 | 44.4914 | 2.92609 | 4927.11 |\n", - "| H1 | uptrend | 577.25 | 24.0606 | 2.08335 | 4927.11 |\n", - "| M30 | uptrend | 623.7 | 15.3592 | 1.43693 | 4927.18 |\n", - "| M15 | uptrend | 57.91 | 10.0086 | 0.086942 | 4927.18 |\n", - "| M5 | uptrend | 959.97 | 5.114 | 0.73639 | 4927.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 209679.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:18:34,254 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:19:34 CET)\" executed successfully\n", - "2026-01-22 21:18:34,273 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:18:44,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:18:54,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:19:04,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:19:14,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:19:24,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:19:26,752 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:26 CET)\" (scheduled at 2026-01-22 21:19:26.633942+01:00)\n", - "2026-01-22 21:19:26,752 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:26 CET)\" executed successfully\n", - "2026-01-22 21:19:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:32 CET)\" (scheduled at 2026-01-22 21:19:32.132962+01:00)\n", - "2026-01-22 21:19:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:32 CET)\" executed successfully\n", - "2026-01-22 21:19:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:34 CET)\" (scheduled at 2026-01-22 21:19:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.79 | 91.8937 | 9.79752 | 4927.05 |\n", - "| H4 | uptrend | 438.45 | 44.4914 | 2.92608 | 4927.05 |\n", - "| H1 | uptrend | 577.25 | 24.0606 | 2.08333 | 4927.05 |\n", - "| M30 | uptrend | 623.69 | 15.3592 | 1.43689 | 4927.05 |\n", - "| M15 | uptrend | 57.89 | 10.0086 | 0.086912 | 4927.05 |\n", - "| M5 | uptrend | 959.92 | 5.114 | 0.73635 | 4927.05 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 209674.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:19:34,239 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:20:34 CET)\" executed successfully\n", - "2026-01-22 21:19:34,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:19:44,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:19:54,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:04,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:14,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:24,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:26,653 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:26 CET)\" (scheduled at 2026-01-22 21:20:26.633942+01:00)\n", - "2026-01-22 21:20:26,653 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:26 CET)\" executed successfully\n", - "2026-01-22 21:20:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:32 CET)\" (scheduled at 2026-01-22 21:20:32.132962+01:00)\n", - "2026-01-22 21:20:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:32 CET)\" executed successfully\n", - "2026-01-22 21:20:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:34 CET)\" (scheduled at 2026-01-22 21:20:34.010875+01:00)\n", - "2026-01-22 21:20:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.78 | 91.8937 | 9.79748 | 4926.88 |\n", - "| H4 | uptrend | 438.44 | 44.4914 | 2.92604 | 4926.88 |\n", - "| H1 | uptrend | 577.24 | 24.0606 | 2.08329 | 4926.88 |\n", - "| M30 | uptrend | 623.67 | 15.3592 | 1.43685 | 4926.88 |\n", - "| M15 | uptrend | 57.86 | 10.0086 | 0.086871 | 4926.88 |\n", - "| M5 | uptrend | 1039.23 | 4.8108 | 0.74993 | 4926.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 212842.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:20:34,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:44,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:20:54,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:04,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:14,689 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:24,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:26 CET)\" (scheduled at 2026-01-22 21:21:26.633942+01:00)\n", - "2026-01-22 21:21:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:26 CET)\" executed successfully\n", - "2026-01-22 21:21:32,252 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:32 CET)\" (scheduled at 2026-01-22 21:21:32.132962+01:00)\n", - "2026-01-22 21:21:32,252 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:32 CET)\" executed successfully\n", - "2026-01-22 21:21:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:34 CET)\" (scheduled at 2026-01-22 21:21:34.010875+01:00)\n", - "2026-01-22 21:21:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79728 | 4926.02 |\n", - "| H4 | uptrend | 438.41 | 44.4914 | 2.92584 | 4926.02 |\n", - "| H1 | uptrend | 577.18 | 24.0606 | 2.08309 | 4926.02 |\n", - "| M30 | uptrend | 623.58 | 15.3592 | 1.43665 | 4926.02 |\n", - "| M15 | uptrend | 57.73 | 10.0086 | 0.086668 | 4926.02 |\n", - "| M5 | uptrend | 1019.72 | 4.9015 | 0.749726 | 4926.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 212039.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:21:34,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:44,800 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:21:54,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:04,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:14,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:24,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:26 CET)\" (scheduled at 2026-01-22 21:22:26.633942+01:00)\n", - "2026-01-22 21:22:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:26 CET)\" executed successfully\n", - "2026-01-22 21:22:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:32 CET)\" (scheduled at 2026-01-22 21:22:32.132962+01:00)\n", - "2026-01-22 21:22:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:32 CET)\" executed successfully\n", - "2026-01-22 21:22:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:34 CET)\" (scheduled at 2026-01-22 21:22:34.010875+01:00)\n", - "2026-01-22 21:22:34,246 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.76 | 91.8937 | 9.79721 | 4925.72 |\n", - "| H4 | uptrend | 438.4 | 44.4914 | 2.92577 | 4925.72 |\n", - "| H1 | uptrend | 577.16 | 24.0606 | 2.08302 | 4925.72 |\n", - "| M30 | uptrend | 623.55 | 15.3592 | 1.43658 | 4925.72 |\n", - "| M15 | uptrend | 57.68 | 10.0086 | 0.086597 | 4925.72 |\n", - "| M5 | uptrend | 1019.62 | 4.9015 | 0.749655 | 4925.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.82)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 212027.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:22:34,920 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:44,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:22:54,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:05,006 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:15,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:25,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:26,762 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:26 CET)\" (scheduled at 2026-01-22 21:23:26.633942+01:00)\n", - "2026-01-22 21:23:26,762 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:26 CET)\" executed successfully\n", - "2026-01-22 21:23:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:32 CET)\" (scheduled at 2026-01-22 21:23:32.132962+01:00)\n", - "2026-01-22 21:23:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:32 CET)\" executed successfully\n", - "2026-01-22 21:23:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:34 CET)\" (scheduled at 2026-01-22 21:23:34.010875+01:00)\n", - "2026-01-22 21:23:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79735 | 4926.34 |\n", - "| H4 | uptrend | 438.42 | 44.4914 | 2.92591 | 4926.35 |\n", - "| H1 | uptrend | 577.2 | 24.0606 | 2.08317 | 4926.35 |\n", - "| M30 | uptrend | 623.61 | 15.3592 | 1.43673 | 4926.35 |\n", - "| M15 | uptrend | 57.78 | 10.0086 | 0.086746 | 4926.35 |\n", - "| M5 | uptrend | 1019.82 | 4.9015 | 0.749804 | 4926.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 212052.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:23:35,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:45,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:23:55,124 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:05,156 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:15,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:25,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:26 CET)\" (scheduled at 2026-01-22 21:24:26.633942+01:00)\n", - "2026-01-22 21:24:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:26 CET)\" executed successfully\n", - "2026-01-22 21:24:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:32 CET)\" (scheduled at 2026-01-22 21:24:32.132962+01:00)\n", - "2026-01-22 21:24:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:32 CET)\" executed successfully\n", - "2026-01-22 21:24:34,030 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:34 CET)\" (scheduled at 2026-01-22 21:24:34.010875+01:00)\n", - "2026-01-22 21:24:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.8 | 91.8937 | 9.79772 | 4927.89 |\n", - "| H4 | uptrend | 438.48 | 44.4914 | 2.92628 | 4927.89 |\n", - "| H1 | uptrend | 577.3 | 24.0606 | 2.08353 | 4927.89 |\n", - "| M30 | uptrend | 623.77 | 15.3592 | 1.43709 | 4927.89 |\n", - "| M15 | uptrend | 58.02 | 10.0086 | 0.08711 | 4927.89 |\n", - "| M5 | uptrend | 1004.51 | 4.9787 | 0.750168 | 4927.89 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.87)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 211480.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:24:35,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:45,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:24:55,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:05,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:15,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:25,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:26 CET)\" (scheduled at 2026-01-22 21:25:26.633942+01:00)\n", - "2026-01-22 21:25:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:26 CET)\" executed successfully\n", - "2026-01-22 21:25:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:32 CET)\" (scheduled at 2026-01-22 21:25:32.132962+01:00)\n", - "2026-01-22 21:25:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:32 CET)\" executed successfully\n", - "2026-01-22 21:25:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:34 CET)\" (scheduled at 2026-01-22 21:25:34.010875+01:00)\n", - "2026-01-22 21:25:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79735 | 4926.33 |\n", - "| H4 | uptrend | 438.42 | 44.4914 | 2.92591 | 4926.33 |\n", - "| H1 | uptrend | 577.2 | 24.0606 | 2.08316 | 4926.33 |\n", - "| M30 | uptrend | 623.61 | 15.3592 | 1.43672 | 4926.33 |\n", - "| M15 | uptrend | 57.78 | 10.0086 | 0.086742 | 4926.33 |\n", - "| M5 | uptrend | 1076.32 | 4.7252 | 0.762873 | 4926.33 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 214311.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:25:35,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:45,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:25:55,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:05,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:15,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:25,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:26,884 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:26 CET)\" (scheduled at 2026-01-22 21:26:26.633942+01:00)\n", - "2026-01-22 21:26:26,884 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:26 CET)\" executed successfully\n", - "2026-01-22 21:26:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:32 CET)\" (scheduled at 2026-01-22 21:26:32.132962+01:00)\n", - "2026-01-22 21:26:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:32 CET)\" executed successfully\n", - "2026-01-22 21:26:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:34 CET)\" (scheduled at 2026-01-22 21:26:34.010875+01:00)\n", - "2026-01-22 21:26:34,144 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.7973 | 4926.11 |\n", - "| H4 | uptrend | 438.42 | 44.4914 | 2.92586 | 4926.11 |\n", - "| H1 | uptrend | 577.18 | 24.0606 | 2.08311 | 4926.11 |\n", - "| M30 | uptrend | 623.59 | 15.3592 | 1.43667 | 4926.11 |\n", - "| M15 | uptrend | 57.74 | 10.0086 | 0.08669 | 4926.11 |\n", - "| M5 | uptrend | 1066.57 | 4.7681 | 0.762821 | 4926.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 213915.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:26:35,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:45,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:26:55,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:05,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:15,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:25,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:26 CET)\" (scheduled at 2026-01-22 21:27:26.633942+01:00)\n", - "2026-01-22 21:27:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:26 CET)\" executed successfully\n", - "2026-01-22 21:27:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:32 CET)\" (scheduled at 2026-01-22 21:27:32.132962+01:00)\n", - "2026-01-22 21:27:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:32 CET)\" executed successfully\n", - "2026-01-22 21:27:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:34 CET)\" (scheduled at 2026-01-22 21:27:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:27:34,279 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79728 | 4926.04 |\n", - "| H4 | uptrend | 438.41 | 44.4914 | 2.92584 | 4926.04 |\n", - "| H1 | uptrend | 577.18 | 24.0606 | 2.08309 | 4926.04 |\n", - "| M30 | uptrend | 623.6 | 15.3592 | 1.4367 | 4926.23 |\n", - "| M15 | uptrend | 57.76 | 10.0086 | 0.086718 | 4926.23 |\n", - "| M5 | uptrend | 1065.18 | 4.7745 | 0.762849 | 4926.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 213861.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:27:35,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:45,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:27:55,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:05,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:15,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:25,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:26,779 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:26 CET)\" (scheduled at 2026-01-22 21:28:26.633942+01:00)\n", - "2026-01-22 21:28:26,779 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:26 CET)\" executed successfully\n", - "2026-01-22 21:28:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:32 CET)\" (scheduled at 2026-01-22 21:28:32.132962+01:00)\n", - "2026-01-22 21:28:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:32 CET)\" executed successfully\n", - "2026-01-22 21:28:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:34 CET)\" (scheduled at 2026-01-22 21:28:34.010875+01:00)\n", - "2026-01-22 21:28:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.75 | 91.8937 | 9.79703 | 4924.99 |\n", - "| H4 | uptrend | 438.38 | 44.4914 | 2.92559 | 4924.99 |\n", - "| H1 | uptrend | 577.11 | 24.0606 | 2.08285 | 4924.99 |\n", - "| M30 | uptrend | 623.47 | 15.3592 | 1.43641 | 4924.99 |\n", - "| M15 | uptrend | 57.52 | 10.0165 | 0.086425 | 4924.99 |\n", - "| M5 | uptrend | 1050.93 | 4.8373 | 0.762556 | 4924.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.80)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 213257.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:28:35,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:45,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:28:55,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:05,917 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:15,936 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:25,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:26 CET)\" (scheduled at 2026-01-22 21:29:26.633942+01:00)\n", - "2026-01-22 21:29:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:26 CET)\" executed successfully\n", - "2026-01-22 21:29:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:32 CET)\" (scheduled at 2026-01-22 21:29:32.132962+01:00)\n", - "2026-01-22 21:29:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:32 CET)\" executed successfully\n", - "2026-01-22 21:29:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:34 CET)\" (scheduled at 2026-01-22 21:29:34.010875+01:00)\n", - "2026-01-22 21:29:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79728 | 4926.03 |\n", - "| H4 | uptrend | 438.41 | 44.4914 | 2.92584 | 4926.03 |\n", - "| H1 | uptrend | 577.18 | 24.0606 | 2.08309 | 4926.03 |\n", - "| M30 | uptrend | 623.58 | 15.3592 | 1.43665 | 4926.03 |\n", - "| M15 | uptrend | 57.68 | 10.0179 | 0.086671 | 4926.03 |\n", - "| M5 | uptrend | 1050.96 | 4.8388 | 0.762802 | 4926.03 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 213286.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:29:35,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:45,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:29:56,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:00,006 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 22:00:00 CET)\" (scheduled at 2026-01-22 21:30:00+01:00)\n", - "2026-01-22 21:30:00,028 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 22:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 21:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: NY β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.18 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:30:06,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:16,054 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:26,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:26,683 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:26 CET)\" (scheduled at 2026-01-22 21:30:26.633942+01:00)\n", - "2026-01-22 21:30:26,683 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:26 CET)\" executed successfully\n", - "2026-01-22 21:30:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:32 CET)\" (scheduled at 2026-01-22 21:30:32.132962+01:00)\n", - "2026-01-22 21:30:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:32 CET)\" executed successfully\n", - "2026-01-22 21:30:34,052 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:34 CET)\" (scheduled at 2026-01-22 21:30:34.010875+01:00)\n", - "2026-01-22 21:30:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79736 | 4926.38 |\n", - "| H4 | uptrend | 438.43 | 44.4914 | 2.92592 | 4926.38 |\n", - "| H1 | uptrend | 577.2 | 24.0606 | 2.08317 | 4926.38 |\n", - "| M30 | uptrend | 670.7 | 14.3428 | 1.44296 | 4926.38 |\n", - "| M15 | uptrend | 84.43 | 9.383 | 0.11883 | 4926.38 |\n", - "| M5 | uptrend | 1129.65 | 4.5738 | 0.775028 | 4926.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221811.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:30:36,091 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:46,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:30:56,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:06,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:16,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:26,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:26 CET)\" (scheduled at 2026-01-22 21:31:26.633942+01:00)\n", - "2026-01-22 21:31:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:26 CET)\" executed successfully\n", - "2026-01-22 21:31:32,155 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:32 CET)\" (scheduled at 2026-01-22 21:31:32.132962+01:00)\n", - "2026-01-22 21:31:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:32 CET)\" executed successfully\n", - "2026-01-22 21:31:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:34 CET)\" (scheduled at 2026-01-22 21:31:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.78 | 91.8937 | 9.79743 | 4926.64 |\n", - "| H4 | uptrend | 438.43 | 44.4914 | 2.92598 | 4926.64 |\n", - "| H1 | uptrend | 577.22 | 24.0606 | 2.08324 | 4926.64 |\n", - "| M30 | uptrend | 670.29 | 14.3521 | 1.44302 | 4926.64 |\n", - "| M15 | uptrend | 84.39 | 9.3923 | 0.118891 | 4926.64 |\n", - "| M5 | uptrend | 1127.45 | 4.5831 | 0.775089 | 4926.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221691.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:31:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:31:36,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:46,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:31:56,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:06,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:16,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:26,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:26,802 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:26 CET)\" (scheduled at 2026-01-22 21:32:26.633942+01:00)\n", - "2026-01-22 21:32:26,804 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:26 CET)\" executed successfully\n", - "2026-01-22 21:32:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:32 CET)\" (scheduled at 2026-01-22 21:32:32.132962+01:00)\n", - "2026-01-22 21:32:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:32 CET)\" executed successfully\n", - "2026-01-22 21:32:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:34 CET)\" (scheduled at 2026-01-22 21:32:34.010875+01:00)\n", - "2026-01-22 21:32:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.78 | 91.8937 | 9.79743 | 4926.67 |\n", - "| H4 | uptrend | 438.44 | 44.4914 | 2.92599 | 4926.67 |\n", - "| H1 | uptrend | 577.22 | 24.0606 | 2.08324 | 4926.67 |\n", - "| M30 | uptrend | 669.56 | 14.3678 | 1.44303 | 4926.67 |\n", - "| M15 | uptrend | 84.25 | 9.408 | 0.118898 | 4926.67 |\n", - "| M5 | uptrend | 1123.61 | 4.5988 | 0.775096 | 4926.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221471.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:32:36,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:46,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:32:56,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:06,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:16,419 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:26,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:26 CET)\" (scheduled at 2026-01-22 21:33:26.633942+01:00)\n", - "2026-01-22 21:33:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:26 CET)\" executed successfully\n", - "2026-01-22 21:33:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:32 CET)\" (scheduled at 2026-01-22 21:33:32.132962+01:00)\n", - "2026-01-22 21:33:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:32 CET)\" executed successfully\n", - "2026-01-22 21:33:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:34 CET)\" (scheduled at 2026-01-22 21:33:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:33:34,276 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.77 | 91.8937 | 9.79727 | 4926 |\n", - "| H4 | uptrend | 438.41 | 44.4914 | 2.92583 | 4926 |\n", - "| H1 | uptrend | 577.18 | 24.0606 | 2.08309 | 4926.01 |\n", - "| M30 | uptrend | 669.5 | 14.3678 | 1.44288 | 4926.04 |\n", - "| M15 | uptrend | 84.15 | 9.408 | 0.118747 | 4926.03 |\n", - "| M5 | uptrend | 1123.39 | 4.5988 | 0.774945 | 4926.03 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221444.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:33:36,458 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:46,486 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:33:56,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:06,517 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:16,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:26,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:26,710 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:26 CET)\" (scheduled at 2026-01-22 21:34:26.633942+01:00)\n", - "2026-01-22 21:34:26,711 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:26 CET)\" executed successfully\n", - "2026-01-22 21:34:32,183 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:32 CET)\" (scheduled at 2026-01-22 21:34:32.132962+01:00)\n", - "2026-01-22 21:34:32,183 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:32 CET)\" executed successfully\n", - "2026-01-22 21:34:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:34 CET)\" (scheduled at 2026-01-22 21:34:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:34:34,298 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.7965 | 4922.73 |\n", - "| H4 | uptrend | 438.3 | 44.4914 | 2.92506 | 4922.73 |\n", - "| H1 | uptrend | 576.96 | 24.0606 | 2.08231 | 4922.73 |\n", - "| M30 | uptrend | 659.36 | 14.5807 | 1.44208 | 4922.68 |\n", - "| M15 | uptrend | 81.74 | 9.6209 | 0.117958 | 4922.69 |\n", - "| M5 | uptrend | 1072.6 | 4.8117 | 0.774156 | 4922.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218427.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:34:36,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:46,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:34:56,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:06,638 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:16,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:26,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:26,844 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:26 CET)\" (scheduled at 2026-01-22 21:35:26.633942+01:00)\n", - "2026-01-22 21:35:26,847 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:26 CET)\" executed successfully\n", - "2026-01-22 21:35:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:32 CET)\" (scheduled at 2026-01-22 21:35:32.132962+01:00)\n", - "2026-01-22 21:35:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:32 CET)\" executed successfully\n", - "2026-01-22 21:35:34,186 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:34 CET)\" (scheduled at 2026-01-22 21:35:34.010875+01:00)\n", - "2026-01-22 21:35:34,346 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79622 | 4921.53 |\n", - "| H4 | uptrend | 438.25 | 44.4914 | 2.92477 | 4921.53 |\n", - "| H1 | uptrend | 576.88 | 24.0606 | 2.08203 | 4921.53 |\n", - "| M30 | uptrend | 646.32 | 14.8721 | 1.44181 | 4921.53 |\n", - "| M15 | uptrend | 79.15 | 9.9123 | 0.117684 | 4921.53 |\n", - "| M5 | uptrend | 1079.66 | 4.8365 | 0.783261 | 4921.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 217500.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:35:36,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:46,725 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:35:56,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:06,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:16,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:26 CET)\" (scheduled at 2026-01-22 21:36:26.633942+01:00)\n", - "2026-01-22 21:36:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:26 CET)\" executed successfully\n", - "2026-01-22 21:36:26,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:32 CET)\" (scheduled at 2026-01-22 21:36:32.132962+01:00)\n", - "2026-01-22 21:36:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:32 CET)\" executed successfully\n", - "2026-01-22 21:36:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:34 CET)\" (scheduled at 2026-01-22 21:36:34.010875+01:00)\n", - "2026-01-22 21:36:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.73 | 91.8937 | 9.79677 | 4923.87 |\n", - "| H4 | uptrend | 438.34 | 44.4914 | 2.92533 | 4923.87 |\n", - "| H1 | uptrend | 577.04 | 24.0606 | 2.08258 | 4923.87 |\n", - "| M30 | uptrend | 646.56 | 14.8721 | 1.44237 | 4923.87 |\n", - "| M15 | uptrend | 79.52 | 9.9123 | 0.118237 | 4923.87 |\n", - "| M5 | uptrend | 1043.88 | 5.0058 | 0.783814 | 4923.87 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.77)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216132.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:36:36,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:46,835 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:36:56,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:06,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:16,892 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:26 CET)\" (scheduled at 2026-01-22 21:37:26.633942+01:00)\n", - "2026-01-22 21:37:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:26 CET)\" executed successfully\n", - "2026-01-22 21:37:26,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:32,155 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:32 CET)\" (scheduled at 2026-01-22 21:37:32.132962+01:00)\n", - "2026-01-22 21:37:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:32 CET)\" executed successfully\n", - "2026-01-22 21:37:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:34 CET)\" (scheduled at 2026-01-22 21:37:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79626 | 4921.71 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92482 | 4921.71 |\n", - "| H1 | uptrend | 576.9 | 24.0606 | 2.08207 | 4921.71 |\n", - "| M30 | uptrend | 646.34 | 14.8721 | 1.44186 | 4921.71 |\n", - "| M15 | uptrend | 79.18 | 9.9123 | 0.117726 | 4921.71 |\n", - "| M5 | uptrend | 1043.2 | 5.0058 | 0.783304 | 4921.71 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216047.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:37:34,237 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:37:36,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:46,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:37:56,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:07,001 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:17,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:27,038 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:27,533 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:26 CET)\" (scheduled at 2026-01-22 21:38:26.633942+01:00)\n", - "2026-01-22 21:38:27,535 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:26 CET)\" executed successfully\n", - "2026-01-22 21:38:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:32 CET)\" (scheduled at 2026-01-22 21:38:32.132962+01:00)\n", - "2026-01-22 21:38:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:32 CET)\" executed successfully\n", - "2026-01-22 21:38:34,773 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:34 CET)\" (scheduled at 2026-01-22 21:38:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:38:35,033 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79638 | 4922.23 |\n", - "| H4 | uptrend | 438.28 | 44.4914 | 2.92495 | 4922.25 |\n", - "| H1 | uptrend | 576.93 | 24.0606 | 2.0822 | 4922.25 |\n", - "| M30 | uptrend | 646.39 | 14.8721 | 1.44199 | 4922.26 |\n", - "| M15 | uptrend | 79.27 | 9.9123 | 0.117856 | 4922.26 |\n", - "| M5 | uptrend | 1043.38 | 5.0058 | 0.783434 | 4922.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216069.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:38:37,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:47,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:38:57,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:07,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:17,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:26 CET)\" (scheduled at 2026-01-22 21:39:26.633942+01:00)\n", - "2026-01-22 21:39:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:26 CET)\" executed successfully\n", - "2026-01-22 21:39:27,178 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:32,297 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:32 CET)\" (scheduled at 2026-01-22 21:39:32.132962+01:00)\n", - "2026-01-22 21:39:32,297 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:32 CET)\" executed successfully\n", - "2026-01-22 21:39:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:34 CET)\" (scheduled at 2026-01-22 21:39:34.010875+01:00)\n", - "2026-01-22 21:39:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.68 | 91.8937 | 9.79611 | 4921.08 |\n", - "| H4 | uptrend | 438.24 | 44.4914 | 2.92467 | 4921.08 |\n", - "| H1 | uptrend | 576.86 | 24.0606 | 2.08192 | 4921.08 |\n", - "| M30 | uptrend | 646.27 | 14.8721 | 1.44171 | 4921.08 |\n", - "| M15 | uptrend | 79.08 | 9.9123 | 0.117577 | 4921.08 |\n", - "| M5 | uptrend | 1043 | 5.0058 | 0.783155 | 4921.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216022.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:39:34,808 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 22:39:34 CET)\" (scheduled at 2026-01-22 21:39:34.806528+01:00)\n", - "2026-01-22 21:39:34,832 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 22:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[21:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:39:37,192 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:47,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:39:57,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:07,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:17,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:26 CET)\" (scheduled at 2026-01-22 21:40:26.633942+01:00)\n", - "2026-01-22 21:40:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:26 CET)\" executed successfully\n", - "2026-01-22 21:40:27,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:32 CET)\" (scheduled at 2026-01-22 21:40:32.132962+01:00)\n", - "2026-01-22 21:40:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:32 CET)\" executed successfully\n", - "2026-01-22 21:40:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:34 CET)\" (scheduled at 2026-01-22 21:40:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79626 | 4921.72 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92482 | 4921.72 |\n", - "| H1 | uptrend | 576.9 | 24.0606 | 2.08207 | 4921.72 |\n", - "| M30 | uptrend | 646.34 | 14.8721 | 1.44186 | 4921.72 |\n", - "| M15 | uptrend | 79.18 | 9.9123 | 0.117729 | 4921.72 |\n", - "| M5 | uptrend | 1087.86 | 4.8518 | 0.791709 | 4921.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 217834.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:40:34,249 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:40:37,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:47,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:40:57,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:07,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:17,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:26 CET)\" (scheduled at 2026-01-22 21:41:26.633942+01:00)\n", - "2026-01-22 21:41:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:26 CET)\" executed successfully\n", - "2026-01-22 21:41:27,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:32,169 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:32 CET)\" (scheduled at 2026-01-22 21:41:32.132962+01:00)\n", - "2026-01-22 21:41:32,169 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:32 CET)\" executed successfully\n", - "2026-01-22 21:41:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:34 CET)\" (scheduled at 2026-01-22 21:41:34.010875+01:00)\n", - "2026-01-22 21:41:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.66 | 91.8937 | 9.79574 | 4919.49 |\n", - "| H4 | uptrend | 438.18 | 44.4914 | 2.92429 | 4919.49 |\n", - "| H1 | uptrend | 576.75 | 24.0606 | 2.08155 | 4919.49 |\n", - "| M30 | uptrend | 646.1 | 14.8721 | 1.44133 | 4919.49 |\n", - "| M15 | uptrend | 78.83 | 9.9123 | 0.117202 | 4919.49 |\n", - "| M5 | uptrend | 1078.88 | 4.8889 | 0.791183 | 4919.49 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 217414.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:41:37,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:47,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:41:57,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:07,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:17,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:26 CET)\" (scheduled at 2026-01-22 21:42:26.633942+01:00)\n", - "2026-01-22 21:42:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:26 CET)\" executed successfully\n", - "2026-01-22 21:42:27,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:32 CET)\" (scheduled at 2026-01-22 21:42:32.132962+01:00)\n", - "2026-01-22 21:42:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:32 CET)\" executed successfully\n", - "2026-01-22 21:42:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:34 CET)\" (scheduled at 2026-01-22 21:42:34.010875+01:00)\n", - "2026-01-22 21:42:34,162 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.67 | 91.8937 | 9.7959 | 4920.19 |\n", - "| H4 | uptrend | 438.21 | 44.4914 | 2.92446 | 4920.19 |\n", - "| H1 | uptrend | 576.8 | 24.0606 | 2.08171 | 4920.19 |\n", - "| M30 | uptrend | 646.17 | 14.8721 | 1.44149 | 4920.18 |\n", - "| M15 | uptrend | 78.94 | 9.9123 | 0.117365 | 4920.18 |\n", - "| M5 | uptrend | 1073.77 | 4.9132 | 0.791346 | 4920.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 217228.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:42:37,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:47,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:42:57,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:07,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:17,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:26 CET)\" (scheduled at 2026-01-22 21:43:26.633942+01:00)\n", - "2026-01-22 21:43:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:26 CET)\" executed successfully\n", - "2026-01-22 21:43:27,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:32 CET)\" (scheduled at 2026-01-22 21:43:32.132962+01:00)\n", - "2026-01-22 21:43:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:32 CET)\" executed successfully\n", - "2026-01-22 21:43:34,044 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:34 CET)\" (scheduled at 2026-01-22 21:43:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:43:34,274 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79624 | 4921.64 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.9248 | 4921.64 |\n", - "| H1 | uptrend | 576.89 | 24.0606 | 2.08205 | 4921.64 |\n", - "| M30 | uptrend | 646.33 | 14.8721 | 1.44184 | 4921.64 |\n", - "| M15 | uptrend | 79.17 | 9.9123 | 0.11771 | 4921.64 |\n", - "| M5 | uptrend | 1074.23 | 4.9132 | 0.791691 | 4921.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 217286.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:43:37,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:47,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:43:57,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:07,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:17,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:27,182 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:26 CET)\" (scheduled at 2026-01-22 21:44:26.633942+01:00)\n", - "2026-01-22 21:44:27,182 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:26 CET)\" executed successfully\n", - "2026-01-22 21:44:27,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:32 CET)\" (scheduled at 2026-01-22 21:44:32.132962+01:00)\n", - "2026-01-22 21:44:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:32 CET)\" executed successfully\n", - "2026-01-22 21:44:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:34 CET)\" (scheduled at 2026-01-22 21:44:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:44:34,278 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.7965 | 4922.71 |\n", - "| H4 | uptrend | 438.3 | 44.4914 | 2.92505 | 4922.71 |\n", - "| H1 | uptrend | 576.96 | 24.0606 | 2.08231 | 4922.71 |\n", - "| M30 | uptrend | 646.44 | 14.8721 | 1.44209 | 4922.71 |\n", - "| M15 | uptrend | 79.34 | 9.9123 | 0.117963 | 4922.71 |\n", - "| M5 | uptrend | 1065.59 | 4.9546 | 0.791941 | 4922.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216969.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:44:37,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:47,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:44:57,953 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:07,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:18,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:26,786 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:26 CET)\" (scheduled at 2026-01-22 21:45:26.633942+01:00)\n", - "2026-01-22 21:45:26,786 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:26 CET)\" executed successfully\n", - "2026-01-22 21:45:28,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:32 CET)\" (scheduled at 2026-01-22 21:45:32.132962+01:00)\n", - "2026-01-22 21:45:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:32 CET)\" executed successfully\n", - "2026-01-22 21:45:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:34 CET)\" (scheduled at 2026-01-22 21:45:34.010875+01:00)\n", - "2026-01-22 21:45:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.73 | 91.8937 | 9.79671 | 4923.61 |\n", - "| H4 | uptrend | 438.33 | 44.4914 | 2.92527 | 4923.61 |\n", - "| H1 | uptrend | 577.02 | 24.0606 | 2.08252 | 4923.61 |\n", - "| M30 | uptrend | 646.54 | 14.8721 | 1.4423 | 4923.61 |\n", - "| M15 | uptrend | 108.16 | 9.3371 | 0.151479 | 4923.61 |\n", - "| M5 | uptrend | 1123.04 | 4.7515 | 0.800417 | 4923.61 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.77)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221012.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:45:38,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:48,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:45:58,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:08,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:18,152 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:26 CET)\" (scheduled at 2026-01-22 21:46:26.633942+01:00)\n", - "2026-01-22 21:46:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:26 CET)\" executed successfully\n", - "2026-01-22 21:46:28,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:32 CET)\" (scheduled at 2026-01-22 21:46:32.132962+01:00)\n", - "2026-01-22 21:46:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:32 CET)\" executed successfully\n", - "2026-01-22 21:46:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:34 CET)\" (scheduled at 2026-01-22 21:46:34.010875+01:00)\n", - "2026-01-22 21:46:34,155 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.72 | 91.8937 | 9.79655 | 4922.92 |\n", - "| H4 | uptrend | 438.3 | 44.4914 | 2.9251 | 4922.92 |\n", - "| H1 | uptrend | 576.98 | 24.0606 | 2.08236 | 4922.92 |\n", - "| M30 | uptrend | 646.46 | 14.8721 | 1.44214 | 4922.92 |\n", - "| M15 | uptrend | 108.04 | 9.3371 | 0.151316 | 4922.92 |\n", - "| M5 | uptrend | 1122.81 | 4.7515 | 0.800254 | 4922.92 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220984.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:46:38,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:48,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:46:58,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:08,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:18,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:26 CET)\" (scheduled at 2026-01-22 21:47:26.633942+01:00)\n", - "2026-01-22 21:47:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:26 CET)\" executed successfully\n", - "2026-01-22 21:47:28,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:32 CET)\" (scheduled at 2026-01-22 21:47:32.132962+01:00)\n", - "2026-01-22 21:47:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:32 CET)\" executed successfully\n", - "2026-01-22 21:47:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:34 CET)\" (scheduled at 2026-01-22 21:47:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:47:34,258 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.72 | 91.8937 | 9.79657 | 4923.01 |\n", - "| H4 | uptrend | 438.31 | 44.4914 | 2.92512 | 4923.01 |\n", - "| H1 | uptrend | 576.98 | 24.0606 | 2.08238 | 4923.01 |\n", - "| M30 | uptrend | 646.47 | 14.8721 | 1.44216 | 4923 |\n", - "| M15 | uptrend | 107.89 | 9.3514 | 0.151332 | 4922.99 |\n", - "| M5 | uptrend | 1119.47 | 4.7658 | 0.800271 | 4922.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220843.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:47:38,362 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:48,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:47:58,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:08,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:18,451 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:26 CET)\" (scheduled at 2026-01-22 21:48:26.633942+01:00)\n", - "2026-01-22 21:48:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:26 CET)\" executed successfully\n", - "2026-01-22 21:48:28,482 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:32 CET)\" (scheduled at 2026-01-22 21:48:32.132962+01:00)\n", - "2026-01-22 21:48:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:32 CET)\" executed successfully\n", - "2026-01-22 21:48:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:34 CET)\" (scheduled at 2026-01-22 21:48:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:48:34,271 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.74 | 91.8937 | 9.79682 | 4924.09 |\n", - "| H4 | uptrend | 438.34 | 44.4914 | 2.92538 | 4924.09 |\n", - "| H1 | uptrend | 577.05 | 24.0606 | 2.08263 | 4924.09 |\n", - "| M30 | uptrend | 646.59 | 14.8721 | 1.44242 | 4924.09 |\n", - "| M15 | uptrend | 108.07 | 9.3514 | 0.151592 | 4924.09 |\n", - "| M5 | uptrend | 1119.83 | 4.7658 | 0.800531 | 4924.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.78)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220887.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:48:38,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:48,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:48:58,552 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:08,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:18,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:26,789 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:26 CET)\" (scheduled at 2026-01-22 21:49:26.633942+01:00)\n", - "2026-01-22 21:49:26,789 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:26 CET)\" executed successfully\n", - "2026-01-22 21:49:28,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:32 CET)\" (scheduled at 2026-01-22 21:49:32.132962+01:00)\n", - "2026-01-22 21:49:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:32 CET)\" executed successfully\n", - "2026-01-22 21:49:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:34 CET)\" (scheduled at 2026-01-22 21:49:34.010875+01:00)\n", - "2026-01-22 21:49:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.79651 | 4922.76 |\n", - "| H4 | uptrend | 438.3 | 44.4914 | 2.92507 | 4922.76 |\n", - "| H1 | uptrend | 576.97 | 24.0606 | 2.08232 | 4922.76 |\n", - "| M30 | uptrend | 646.45 | 14.8721 | 1.4421 | 4922.76 |\n", - "| M15 | uptrend | 107.37 | 9.3928 | 0.151278 | 4922.76 |\n", - "| M5 | uptrend | 1109.74 | 4.8072 | 0.800217 | 4922.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220419.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:49:38,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:48,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:49:58,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:08,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:18,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:26 CET)\" (scheduled at 2026-01-22 21:50:26.633942+01:00)\n", - "2026-01-22 21:50:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:26 CET)\" executed successfully\n", - "2026-01-22 21:50:28,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:32 CET)\" (scheduled at 2026-01-22 21:50:32.132962+01:00)\n", - "2026-01-22 21:50:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:32 CET)\" executed successfully\n", - "2026-01-22 21:50:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:34 CET)\" (scheduled at 2026-01-22 21:50:34.010875+01:00)\n", - "2026-01-22 21:50:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79627 | 4921.76 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92483 | 4921.76 |\n", - "| H1 | uptrend | 576.9 | 24.0606 | 2.08208 | 4921.76 |\n", - "| M30 | uptrend | 646.34 | 14.8721 | 1.44187 | 4921.76 |\n", - "| M15 | uptrend | 106.59 | 9.4471 | 0.151042 | 4921.76 |\n", - "| M5 | uptrend | 1170.2 | 4.6033 | 0.808017 | 4921.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222772.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:50:38,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:48,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:50:58,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:08,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:18,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:26 CET)\" (scheduled at 2026-01-22 21:51:26.633942+01:00)\n", - "2026-01-22 21:51:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:26 CET)\" executed successfully\n", - "2026-01-22 21:51:28,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:32 CET)\" (scheduled at 2026-01-22 21:51:32.132962+01:00)\n", - "2026-01-22 21:51:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:32 CET)\" executed successfully\n", - "2026-01-22 21:51:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:34 CET)\" (scheduled at 2026-01-22 21:51:34.010875+01:00)\n", - "2026-01-22 21:51:34,152 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79626 | 4921.72 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92482 | 4921.71 |\n", - "| H1 | uptrend | 576.9 | 24.0606 | 2.08207 | 4921.71 |\n", - "| M30 | uptrend | 646.34 | 14.8721 | 1.44186 | 4921.71 |\n", - "| M15 | uptrend | 105.85 | 9.5121 | 0.15103 | 4921.71 |\n", - "| M5 | uptrend | 1153.89 | 4.6683 | 0.808005 | 4921.71 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222075.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:51:38,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:48,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:51:59,011 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:09,039 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:19,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:26 CET)\" (scheduled at 2026-01-22 21:52:26.633942+01:00)\n", - "2026-01-22 21:52:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:26 CET)\" executed successfully\n", - "2026-01-22 21:52:29,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:32 CET)\" (scheduled at 2026-01-22 21:52:32.132962+01:00)\n", - "2026-01-22 21:52:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:32 CET)\" executed successfully\n", - "2026-01-22 21:52:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:34 CET)\" (scheduled at 2026-01-22 21:52:34.010875+01:00)\n", - "2026-01-22 21:52:34,142 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.67 | 91.8937 | 9.79598 | 4920.52 |\n", - "| H4 | uptrend | 438.22 | 44.4914 | 2.92452 | 4920.46 |\n", - "| H1 | uptrend | 576.81 | 24.0606 | 2.08177 | 4920.46 |\n", - "| M30 | uptrend | 646.2 | 14.8721 | 1.44156 | 4920.46 |\n", - "| M15 | uptrend | 104.79 | 9.59 | 0.150734 | 4920.46 |\n", - "| M5 | uptrend | 1134.55 | 4.7461 | 0.80771 | 4920.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221216.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:52:39,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:49,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:52:59,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:09,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:19,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:26 CET)\" (scheduled at 2026-01-22 21:53:26.633942+01:00)\n", - "2026-01-22 21:53:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:26 CET)\" executed successfully\n", - "2026-01-22 21:53:29,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:32 CET)\" (scheduled at 2026-01-22 21:53:32.132962+01:00)\n", - "2026-01-22 21:53:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:32 CET)\" executed successfully\n", - "2026-01-22 21:53:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:34 CET)\" (scheduled at 2026-01-22 21:53:34.010875+01:00)\n", - "2026-01-22 21:53:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.66 | 91.8937 | 9.79585 | 4919.97 |\n", - "| H4 | uptrend | 438.2 | 44.4914 | 2.92441 | 4919.97 |\n", - "| H1 | uptrend | 576.78 | 24.0606 | 2.08166 | 4919.97 |\n", - "| M30 | uptrend | 646.15 | 14.8721 | 1.44144 | 4919.97 |\n", - "| M15 | uptrend | 104.64 | 9.5957 | 0.150619 | 4919.97 |\n", - "| M5 | uptrend | 1133.02 | 4.7519 | 0.807594 | 4919.97 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221137.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:53:39,249 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:49,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:53:59,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:09,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:19,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:26 CET)\" (scheduled at 2026-01-22 21:54:26.633942+01:00)\n", - "2026-01-22 21:54:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:26 CET)\" executed successfully\n", - "2026-01-22 21:54:29,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:32 CET)\" (scheduled at 2026-01-22 21:54:32.132962+01:00)\n", - "2026-01-22 21:54:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:32 CET)\" executed successfully\n", - "2026-01-22 21:54:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:34 CET)\" (scheduled at 2026-01-22 21:54:34.010875+01:00)\n", - "2026-01-22 21:54:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.67 | 91.8937 | 9.79586 | 4920 |\n", - "| H4 | uptrend | 438.2 | 44.4914 | 2.92441 | 4920 |\n", - "| H1 | uptrend | 576.78 | 24.0606 | 2.08167 | 4920 |\n", - "| M30 | uptrend | 646.15 | 14.8721 | 1.44145 | 4920 |\n", - "| M15 | uptrend | 104.46 | 9.6128 | 0.150626 | 4920 |\n", - "| M5 | uptrend | 1128.96 | 4.769 | 0.807601 | 4920 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220964.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:54:39,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:49,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:54:59,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:09,483 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:19,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:26 CET)\" (scheduled at 2026-01-22 21:55:26.633942+01:00)\n", - "2026-01-22 21:55:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:26 CET)\" executed successfully\n", - "2026-01-22 21:55:29,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:32 CET)\" (scheduled at 2026-01-22 21:55:32.132962+01:00)\n", - "2026-01-22 21:55:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:32 CET)\" executed successfully\n", - "2026-01-22 21:55:34,235 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:34 CET)\" (scheduled at 2026-01-22 21:55:34.010875+01:00)\n", - "2026-01-22 21:55:34,391 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79634 | 4922.05 |\n", - "| H4 | uptrend | 438.27 | 44.4914 | 2.9249 | 4922.05 |\n", - "| H1 | uptrend | 576.92 | 24.0606 | 2.08215 | 4922.05 |\n", - "| M30 | uptrend | 646.37 | 14.8721 | 1.44194 | 4922.05 |\n", - "| M15 | uptrend | 104.8 | 9.6128 | 0.15111 | 4922.05 |\n", - "| M5 | uptrend | 1178.73 | 4.6084 | 0.814801 | 4922.05 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223011.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:55:39,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:49,585 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:55:59,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:09,628 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:19,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:26,812 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:26 CET)\" (scheduled at 2026-01-22 21:56:26.633942+01:00)\n", - "2026-01-22 21:56:26,812 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:26 CET)\" executed successfully\n", - "2026-01-22 21:56:29,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:32 CET)\" (scheduled at 2026-01-22 21:56:32.132962+01:00)\n", - "2026-01-22 21:56:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:32 CET)\" executed successfully\n", - "2026-01-22 21:56:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:34 CET)\" (scheduled at 2026-01-22 21:56:34.010875+01:00)\n", - "2026-01-22 21:56:34,195 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.68 | 91.8937 | 9.7961 | 4921.02 |\n", - "| H4 | uptrend | 438.24 | 44.4914 | 2.92466 | 4921.02 |\n", - "| H1 | uptrend | 576.85 | 24.0606 | 2.08191 | 4921.02 |\n", - "| M30 | uptrend | 646.26 | 14.8721 | 1.44169 | 4921.02 |\n", - "| M15 | uptrend | 104.63 | 9.6128 | 0.150867 | 4921.02 |\n", - "| M5 | uptrend | 1162.7 | 4.6705 | 0.814558 | 4921.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222342.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:56:39,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:49,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:56:59,765 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:09,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:19,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:26 CET)\" (scheduled at 2026-01-22 21:57:26.633942+01:00)\n", - "2026-01-22 21:57:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:26 CET)\" executed successfully\n", - "2026-01-22 21:57:29,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:32 CET)\" (scheduled at 2026-01-22 21:57:32.132962+01:00)\n", - "2026-01-22 21:57:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:32 CET)\" executed successfully\n", - "2026-01-22 21:57:34,041 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:34 CET)\" (scheduled at 2026-01-22 21:57:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:57:34,288 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.63 | 91.8937 | 9.79538 | 4917.99 |\n", - "| H4 | uptrend | 438.13 | 44.4914 | 2.92394 | 4917.99 |\n", - "| H1 | uptrend | 576.65 | 24.0606 | 2.08117 | 4917.89 |\n", - "| M30 | uptrend | 643.37 | 14.9314 | 1.44095 | 4917.89 |\n", - "| M15 | uptrend | 103.04 | 9.7143 | 0.150144 | 4917.96 |\n", - "| M5 | uptrend | 1120 | 4.8441 | 0.813806 | 4917.84 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220279.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:57:39,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:49,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:57:59,912 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:58:09,939 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:58:19,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:58:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:26 CET)\" (scheduled at 2026-01-22 21:58:26.633942+01:00)\n", - "2026-01-22 21:58:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:26 CET)\" executed successfully\n", - "2026-01-22 21:58:29,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:58:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:32 CET)\" (scheduled at 2026-01-22 21:58:32.132962+01:00)\n", - "2026-01-22 21:58:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:32 CET)\" executed successfully\n", - "2026-01-22 21:58:34,041 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:34 CET)\" (scheduled at 2026-01-22 21:58:34.010875+01:00)\n", - "2026-01-22 21:58:34,248 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 21:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.6 | 91.8937 | 9.7949 | 4915.96 |\n", - "| H4 | uptrend | 438.06 | 44.4914 | 2.92346 | 4915.96 |\n", - "| H1 | uptrend | 576.52 | 24.0606 | 2.08071 | 4915.96 |\n", - "| M30 | uptrend | 636.7 | 15.0828 | 1.44047 | 4915.86 |\n", - "| M15 | uptrend | 101.12 | 9.8657 | 0.149648 | 4915.86 |\n", - "| M5 | uptrend | 1085.43 | 4.9955 | 0.813338 | 4915.86 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218230.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:58:40,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:58:50,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:00,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:10,111 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:20,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:26,748 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:26 CET)\" (scheduled at 2026-01-22 21:59:26.633942+01:00)\n", - "2026-01-22 21:59:26,748 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:26 CET)\" executed successfully\n", - "2026-01-22 21:59:30,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:32 CET)\" (scheduled at 2026-01-22 21:59:32.132962+01:00)\n", - "2026-01-22 21:59:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:32 CET)\" executed successfully\n", - "2026-01-22 21:59:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:34 CET)\" (scheduled at 2026-01-22 21:59:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:59:34,283 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: NY\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.6 | 91.8937 | 9.79491 | 4916.01 |\n", - "| H4 | uptrend | 438.06 | 44.4914 | 2.92347 | 4916.01 |\n", - "| H1 | uptrend | 576.53 | 24.0606 | 2.08075 | 4916.13 |\n", - "| M30 | uptrend | 632.32 | 15.1878 | 1.44053 | 4916.08 |\n", - "| M15 | uptrend | 100.09 | 9.9707 | 0.1497 | 4916.08 |\n", - "| M5 | uptrend | 1063.14 | 5.1005 | 0.813381 | 4916.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 216927.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 21:59:40,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 21:59:50,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:00,027 - INFO - Running job \"TradingInfrastructure.send_daily_report (trigger: cron[hour='22', minute='0'], next run at: 2026-01-23 22:00:00 CET)\" (scheduled at 2026-01-22 22:00:00+01:00)\n", - "2026-01-22 22:00:00,155 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 22:30:00 CET)\" (scheduled at 2026-01-22 22:00:00+01:00)\n", - "2026-01-22 22:00:00,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:00,269 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 22:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 22:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.18 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:00:01,424 - INFO - Job \"TradingInfrastructure.send_daily_report (trigger: cron[hour='22', minute='0'], next run at: 2026-01-23 22:00:00 CET)\" executed successfully\n", - "2026-01-22 22:00:10,752 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:20,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:26 CET)\" (scheduled at 2026-01-22 22:00:26.633942+01:00)\n", - "2026-01-22 22:00:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:26 CET)\" executed successfully\n", - "2026-01-22 22:00:30,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:32 CET)\" (scheduled at 2026-01-22 22:00:32.132962+01:00)\n", - "2026-01-22 22:00:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:32 CET)\" executed successfully\n", - "2026-01-22 22:00:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:34 CET)\" (scheduled at 2026-01-22 22:00:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:00:34,287 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.63 | 91.8937 | 9.79539 | 4918.02 |\n", - "| H4 | uptrend | 438.13 | 44.4914 | 2.92395 | 4918.02 |\n", - "| H1 | uptrend | 629.33 | 22.4648 | 2.12068 | 4918.02 |\n", - "| M30 | uptrend | 676.9 | 14.2258 | 1.44442 | 4918.02 |\n", - "| M15 | uptrend | 125.13 | 9.3813 | 0.176088 | 4918.02 |\n", - "| M5 | uptrend | 1123.55 | 4.859 | 0.818905 | 4918.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229698.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:00:40,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:00:50,865 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:00,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:10,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:20,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:26 CET)\" (scheduled at 2026-01-22 22:01:26.633942+01:00)\n", - "2026-01-22 22:01:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:26 CET)\" executed successfully\n", - "2026-01-22 22:01:30,942 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:32,369 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:32 CET)\" (scheduled at 2026-01-22 22:01:32.132962+01:00)\n", - "2026-01-22 22:01:32,369 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:32 CET)\" executed successfully\n", - "2026-01-22 22:01:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:34 CET)\" (scheduled at 2026-01-22 22:01:34.010875+01:00)\n", - "2026-01-22 22:01:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.61 | 91.8937 | 9.7951 | 4916.82 |\n", - "| H4 | uptrend | 438.09 | 44.4914 | 2.92366 | 4916.82 |\n", - "| H1 | uptrend | 628.61 | 22.4877 | 2.1204 | 4916.82 |\n", - "| M30 | uptrend | 675.68 | 14.2487 | 1.44413 | 4916.82 |\n", - "| M15 | uptrend | 124.63 | 9.4042 | 0.175805 | 4916.82 |\n", - "| M5 | uptrend | 1117.9 | 4.8819 | 0.818622 | 4916.82 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229269.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:01:40,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:01:50,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:01,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:11,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:21,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:26 CET)\" (scheduled at 2026-01-22 22:02:26.633942+01:00)\n", - "2026-01-22 22:02:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:26 CET)\" executed successfully\n", - "2026-01-22 22:02:31,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:32,167 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:32 CET)\" (scheduled at 2026-01-22 22:02:32.132962+01:00)\n", - "2026-01-22 22:02:32,167 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:32 CET)\" executed successfully\n", - "2026-01-22 22:02:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:34 CET)\" (scheduled at 2026-01-22 22:02:34.010875+01:00)\n", - "2026-01-22 22:02:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.58 | 91.8937 | 9.79465 | 4914.88 |\n", - "| H4 | uptrend | 438.02 | 44.4914 | 2.9232 | 4914.88 |\n", - "| H1 | uptrend | 624.51 | 22.6305 | 2.11994 | 4914.88 |\n", - "| M30 | uptrend | 668.76 | 14.3915 | 1.44367 | 4914.88 |\n", - "| M15 | uptrend | 122.44 | 9.547 | 0.175347 | 4914.88 |\n", - "| M5 | uptrend | 1085.53 | 5.0247 | 0.818177 | 4914.94 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226874.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:02:41,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:02:51,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:01,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:11,154 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:21,186 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:26 CET)\" (scheduled at 2026-01-22 22:03:26.633942+01:00)\n", - "2026-01-22 22:03:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:26 CET)\" executed successfully\n", - "2026-01-22 22:03:31,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:32,199 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:32 CET)\" (scheduled at 2026-01-22 22:03:32.132962+01:00)\n", - "2026-01-22 22:03:32,199 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:32 CET)\" executed successfully\n", - "2026-01-22 22:03:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:34 CET)\" (scheduled at 2026-01-22 22:03:34.010875+01:00)\n", - "2026-01-22 22:03:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.61 | 91.8937 | 9.79505 | 4916.59 |\n", - "| H4 | uptrend | 438.08 | 44.4914 | 2.92361 | 4916.59 |\n", - "| H1 | uptrend | 624.63 | 22.6305 | 2.12034 | 4916.59 |\n", - "| M30 | uptrend | 668.95 | 14.3915 | 1.44408 | 4916.59 |\n", - "| M15 | uptrend | 122.73 | 9.547 | 0.175751 | 4916.59 |\n", - "| M5 | uptrend | 1086.05 | 5.0247 | 0.818567 | 4916.59 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226943.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:03:41,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:03:51,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:01,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:11,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:21,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:26 CET)\" (scheduled at 2026-01-22 22:04:26.633942+01:00)\n", - "2026-01-22 22:04:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:26 CET)\" executed successfully\n", - "2026-01-22 22:04:31,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:32 CET)\" (scheduled at 2026-01-22 22:04:32.132962+01:00)\n", - "2026-01-22 22:04:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:32 CET)\" executed successfully\n", - "2026-01-22 22:04:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:34 CET)\" (scheduled at 2026-01-22 22:04:34.010875+01:00)\n", - "2026-01-22 22:04:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.6 | 91.8937 | 9.79499 | 4916.32 |\n", - "| H4 | uptrend | 438.07 | 44.4914 | 2.92354 | 4916.32 |\n", - "| H1 | uptrend | 624.61 | 22.6305 | 2.12028 | 4916.32 |\n", - "| M30 | uptrend | 668.9 | 14.3915 | 1.44397 | 4916.12 |\n", - "| M15 | uptrend | 122.66 | 9.547 | 0.175654 | 4916.18 |\n", - "| M5 | uptrend | 1085.92 | 5.0247 | 0.81847 | 4916.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226927.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:04:41,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:04:51,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:01,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:11,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:21,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:26,719 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:26 CET)\" (scheduled at 2026-01-22 22:05:26.633942+01:00)\n", - "2026-01-22 22:05:26,719 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:26 CET)\" executed successfully\n", - "2026-01-22 22:05:31,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:32 CET)\" (scheduled at 2026-01-22 22:05:32.132962+01:00)\n", - "2026-01-22 22:05:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:32 CET)\" executed successfully\n", - "2026-01-22 22:05:34,133 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:34 CET)\" (scheduled at 2026-01-22 22:05:34.010875+01:00)\n", - "2026-01-22 22:05:34,327 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.65 | 91.8937 | 9.79566 | 4919.19 |\n", - "| H4 | uptrend | 438.17 | 44.4914 | 2.92422 | 4919.19 |\n", - "| H1 | uptrend | 623.59 | 22.6748 | 2.12096 | 4919.19 |\n", - "| M30 | uptrend | 667.18 | 14.4358 | 1.44469 | 4919.19 |\n", - "| M15 | uptrend | 122.59 | 9.5913 | 0.176365 | 4919.19 |\n", - "| M5 | uptrend | 1124.66 | 4.8851 | 0.824113 | 4919.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.66)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228240.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:05:41,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:05:51,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:01,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:11,558 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:21,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:26,881 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:26 CET)\" (scheduled at 2026-01-22 22:06:26.633942+01:00)\n", - "2026-01-22 22:06:26,881 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:26 CET)\" executed successfully\n", - "2026-01-22 22:06:31,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:32,193 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:32 CET)\" (scheduled at 2026-01-22 22:06:32.132962+01:00)\n", - "2026-01-22 22:06:32,195 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:32 CET)\" executed successfully\n", - "2026-01-22 22:06:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:34 CET)\" (scheduled at 2026-01-22 22:06:34.010875+01:00)\n", - "2026-01-22 22:06:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.63 | 91.8937 | 9.79541 | 4918.11 |\n", - "| H4 | uptrend | 438.13 | 44.4914 | 2.92397 | 4918.11 |\n", - "| H1 | uptrend | 623.51 | 22.6748 | 2.1207 | 4918.11 |\n", - "| M30 | uptrend | 667.06 | 14.4358 | 1.44444 | 4918.11 |\n", - "| M15 | uptrend | 122.41 | 9.5913 | 0.17611 | 4918.11 |\n", - "| M5 | uptrend | 1124.31 | 4.8851 | 0.823858 | 4918.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228196.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:06:41,628 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:06:51,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:01,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:11,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:21,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:26 CET)\" (scheduled at 2026-01-22 22:07:26.633942+01:00)\n", - "2026-01-22 22:07:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:26 CET)\" executed successfully\n", - "2026-01-22 22:07:31,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:32,180 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:32 CET)\" (scheduled at 2026-01-22 22:07:32.132962+01:00)\n", - "2026-01-22 22:07:32,182 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:32 CET)\" executed successfully\n", - "2026-01-22 22:07:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:34 CET)\" (scheduled at 2026-01-22 22:07:34.010875+01:00)\n", - "2026-01-22 22:07:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.66 | 91.8937 | 9.79581 | 4919.8 |\n", - "| H4 | uptrend | 438.19 | 44.4914 | 2.92437 | 4919.8 |\n", - "| H1 | uptrend | 622.32 | 22.7227 | 2.1211 | 4919.8 |\n", - "| M30 | uptrend | 665.04 | 14.4837 | 1.44484 | 4919.8 |\n", - "| M15 | uptrend | 122.08 | 9.6392 | 0.176509 | 4919.8 |\n", - "| M5 | uptrend | 1113.94 | 4.933 | 0.824257 | 4919.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227484.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:07:41,752 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:07:51,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:01,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:11,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:21,835 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:26 CET)\" (scheduled at 2026-01-22 22:08:26.633942+01:00)\n", - "2026-01-22 22:08:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:26 CET)\" executed successfully\n", - "2026-01-22 22:08:31,857 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:32,516 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:32 CET)\" (scheduled at 2026-01-22 22:08:32.132962+01:00)\n", - "2026-01-22 22:08:32,530 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:32 CET)\" executed successfully\n", - "2026-01-22 22:08:34,227 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:34 CET)\" (scheduled at 2026-01-22 22:08:34.010875+01:00)\n", - "2026-01-22 22:08:34,374 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79614 | 4921.21 |\n", - "| H4 | uptrend | 438.24 | 44.4914 | 2.9247 | 4921.21 |\n", - "| H1 | uptrend | 619.9 | 22.8148 | 2.12143 | 4921.21 |\n", - "| M30 | uptrend | 660.99 | 14.5758 | 1.44517 | 4921.21 |\n", - "| M15 | uptrend | 121.15 | 9.7313 | 0.176842 | 4921.21 |\n", - "| M5 | uptrend | 1093.96 | 5.0251 | 0.82459 | 4921.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226067.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:08:41,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:08:51,896 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:01,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:11,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:21,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:26 CET)\" (scheduled at 2026-01-22 22:09:26.633942+01:00)\n", - "2026-01-22 22:09:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:26 CET)\" executed successfully\n", - "2026-01-22 22:09:31,981 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:32,377 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:32 CET)\" (scheduled at 2026-01-22 22:09:32.132962+01:00)\n", - "2026-01-22 22:09:32,378 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:32 CET)\" executed successfully\n", - "2026-01-22 22:09:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:34 CET)\" (scheduled at 2026-01-22 22:09:34.010875+01:00)\n", - "2026-01-22 22:09:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.66 | 91.8937 | 9.79583 | 4919.9 |\n", - "| H4 | uptrend | 438.2 | 44.4914 | 2.92439 | 4919.9 |\n", - "| H1 | uptrend | 618.9 | 22.8484 | 2.12113 | 4919.9 |\n", - "| M30 | uptrend | 659.33 | 14.6094 | 1.44486 | 4919.9 |\n", - "| M15 | uptrend | 120.52 | 9.7649 | 0.176533 | 4919.9 |\n", - "| M5 | uptrend | 1086.29 | 5.0587 | 0.824281 | 4919.9 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225486.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:09:42,001 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:09:52,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:02,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:12,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:22,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:26 CET)\" (scheduled at 2026-01-22 22:10:26.633942+01:00)\n", - "2026-01-22 22:10:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:26 CET)\" executed successfully\n", - "2026-01-22 22:10:32,115 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:32 CET)\" (scheduled at 2026-01-22 22:10:32.132962+01:00)\n", - "2026-01-22 22:10:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:32 CET)\" executed successfully\n", - "2026-01-22 22:10:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:34 CET)\" (scheduled at 2026-01-22 22:10:34.010875+01:00)\n", - "2026-01-22 22:10:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.66 | 91.8937 | 9.79583 | 4919.87 |\n", - "| H4 | uptrend | 438.19 | 44.4914 | 2.92438 | 4919.87 |\n", - "| H1 | uptrend | 618.9 | 22.8484 | 2.12112 | 4919.88 |\n", - "| M30 | uptrend | 659.33 | 14.6094 | 1.44486 | 4919.91 |\n", - "| M15 | uptrend | 120.52 | 9.7649 | 0.176535 | 4919.91 |\n", - "| M5 | uptrend | 1167.46 | 4.7409 | 0.83023 | 4919.93 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228733.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:10:42,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:10:52,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:02,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:12,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:22,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:26,719 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:26 CET)\" (scheduled at 2026-01-22 22:11:26.633942+01:00)\n", - "2026-01-22 22:11:26,719 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:26 CET)\" executed successfully\n", - "2026-01-22 22:11:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:32 CET)\" (scheduled at 2026-01-22 22:11:32.132962+01:00)\n", - "2026-01-22 22:11:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:32 CET)\" executed successfully\n", - "2026-01-22 22:11:32,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:34 CET)\" (scheduled at 2026-01-22 22:11:34.010875+01:00)\n", - "2026-01-22 22:11:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.67 | 91.8937 | 9.7959 | 4920.17 |\n", - "| H4 | uptrend | 438.21 | 44.4914 | 2.92445 | 4920.17 |\n", - "| H1 | uptrend | 618.92 | 22.8484 | 2.12119 | 4920.17 |\n", - "| M30 | uptrend | 659.36 | 14.6094 | 1.44492 | 4920.17 |\n", - "| M15 | uptrend | 120.57 | 9.7649 | 0.176596 | 4920.17 |\n", - "| M5 | uptrend | 1166.14 | 4.7467 | 0.830287 | 4920.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228688.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:11:42,261 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:11:52,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:02,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:12,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:22,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:26 CET)\" (scheduled at 2026-01-22 22:12:26.633942+01:00)\n", - "2026-01-22 22:12:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:26 CET)\" executed successfully\n", - "2026-01-22 22:12:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:32 CET)\" (scheduled at 2026-01-22 22:12:32.132962+01:00)\n", - "2026-01-22 22:12:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:32 CET)\" executed successfully\n", - "2026-01-22 22:12:32,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:34,048 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:34 CET)\" (scheduled at 2026-01-22 22:12:34.010875+01:00)\n", - "2026-01-22 22:12:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79638 | 4922.21 |\n", - "| H4 | uptrend | 438.28 | 44.4914 | 2.92494 | 4922.21 |\n", - "| H1 | uptrend | 617.92 | 22.8905 | 2.12167 | 4922.21 |\n", - "| M30 | uptrend | 657.68 | 14.6515 | 1.44541 | 4922.21 |\n", - "| M15 | uptrend | 120.38 | 9.807 | 0.177078 | 4922.21 |\n", - "| M5 | uptrend | 1131.07 | 4.8967 | 0.830769 | 4922.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227044.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:12:42,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:12:52,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:02,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:12,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:22,466 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:26 CET)\" (scheduled at 2026-01-22 22:13:26.633942+01:00)\n", - "2026-01-22 22:13:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:26 CET)\" executed successfully\n", - "2026-01-22 22:13:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:32 CET)\" (scheduled at 2026-01-22 22:13:32.132962+01:00)\n", - "2026-01-22 22:13:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:32 CET)\" executed successfully\n", - "2026-01-22 22:13:32,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:34,183 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:34 CET)\" (scheduled at 2026-01-22 22:13:34.010875+01:00)\n", - "2026-01-22 22:13:34,387 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79635 | 4922.1 |\n", - "| H4 | uptrend | 438.27 | 44.4914 | 2.92491 | 4922.1 |\n", - "| H1 | uptrend | 617.62 | 22.9013 | 2.12165 | 4922.1 |\n", - "| M30 | uptrend | 657.19 | 14.6623 | 1.44538 | 4922.1 |\n", - "| M15 | uptrend | 120.23 | 9.8178 | 0.17706 | 4922.13 |\n", - "| M5 | uptrend | 1128.57 | 4.9074 | 0.83075 | 4922.13 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226867.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:13:42,519 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:13:52,538 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:02,558 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:12,583 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:22,599 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:26 CET)\" (scheduled at 2026-01-22 22:14:26.633942+01:00)\n", - "2026-01-22 22:14:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:26 CET)\" executed successfully\n", - "2026-01-22 22:14:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:32 CET)\" (scheduled at 2026-01-22 22:14:32.132962+01:00)\n", - "2026-01-22 22:14:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:32 CET)\" executed successfully\n", - "2026-01-22 22:14:32,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:34,231 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:34 CET)\" (scheduled at 2026-01-22 22:14:34.010875+01:00)\n", - "2026-01-22 22:14:34,439 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.79652 | 4922.8 |\n", - "| H4 | uptrend | 438.3 | 44.4914 | 2.92508 | 4922.8 |\n", - "| H1 | uptrend | 616.3 | 22.952 | 2.12181 | 4922.8 |\n", - "| M30 | uptrend | 655 | 14.713 | 1.44555 | 4922.8 |\n", - "| M15 | uptrend | 119.72 | 9.8685 | 0.177218 | 4922.8 |\n", - "| M5 | uptrend | 1117.24 | 4.9581 | 0.830908 | 4922.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226078.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:14:42,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:14:52,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:02,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:12,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:22,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:26 CET)\" (scheduled at 2026-01-22 22:15:26.633942+01:00)\n", - "2026-01-22 22:15:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:26 CET)\" executed successfully\n", - "2026-01-22 22:15:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:32 CET)\" (scheduled at 2026-01-22 22:15:32.132962+01:00)\n", - "2026-01-22 22:15:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:32 CET)\" executed successfully\n", - "2026-01-22 22:15:32,772 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:34,187 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:34 CET)\" (scheduled at 2026-01-22 22:15:34.010875+01:00)\n", - "2026-01-22 22:15:34,359 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79626 | 4921.69 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92481 | 4921.69 |\n", - "| H1 | uptrend | 616.23 | 22.952 | 2.12155 | 4921.69 |\n", - "| M30 | uptrend | 654.88 | 14.713 | 1.44528 | 4921.69 |\n", - "| M15 | uptrend | 144.3 | 9.2529 | 0.200277 | 4921.69 |\n", - "| M5 | uptrend | 1189.44 | 4.6932 | 0.837347 | 4921.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230420.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:15:42,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:15:52,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:02,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:12,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:22,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:26,846 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:26 CET)\" (scheduled at 2026-01-22 22:16:26.633942+01:00)\n", - "2026-01-22 22:16:26,846 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:26 CET)\" executed successfully\n", - "2026-01-22 22:16:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:32 CET)\" (scheduled at 2026-01-22 22:16:32.132962+01:00)\n", - "2026-01-22 22:16:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:32 CET)\" executed successfully\n", - "2026-01-22 22:16:32,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:34 CET)\" (scheduled at 2026-01-22 22:16:34.010875+01:00)\n", - "2026-01-22 22:16:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.74 | 91.8937 | 9.79684 | 4924.18 |\n", - "| H4 | uptrend | 438.35 | 44.4914 | 2.9254 | 4924.18 |\n", - "| H1 | uptrend | 614.09 | 23.0384 | 2.12214 | 4924.18 |\n", - "| M30 | uptrend | 651.32 | 14.7994 | 1.44587 | 4924.18 |\n", - "| M15 | uptrend | 142.92 | 9.3693 | 0.200865 | 4924.18 |\n", - "| M5 | uptrend | 1161.46 | 4.8097 | 0.837935 | 4924.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.78)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228726.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:16:42,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:16:53,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:03,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:13,047 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:23,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:26 CET)\" (scheduled at 2026-01-22 22:17:26.633942+01:00)\n", - "2026-01-22 22:17:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:26 CET)\" executed successfully\n", - "2026-01-22 22:17:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:32 CET)\" (scheduled at 2026-01-22 22:17:32.132962+01:00)\n", - "2026-01-22 22:17:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:32 CET)\" executed successfully\n", - "2026-01-22 22:17:33,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:34 CET)\" (scheduled at 2026-01-22 22:17:34.010875+01:00)\n", - "2026-01-22 22:17:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.72 | 91.8937 | 9.79662 | 4923.24 |\n", - "| H4 | uptrend | 438.31 | 44.4914 | 2.92518 | 4923.24 |\n", - "| H1 | uptrend | 614.02 | 23.0384 | 2.12191 | 4923.24 |\n", - "| M30 | uptrend | 651.22 | 14.7994 | 1.44565 | 4923.24 |\n", - "| M15 | uptrend | 142.77 | 9.3693 | 0.200643 | 4923.24 |\n", - "| M5 | uptrend | 1161.16 | 4.8097 | 0.837713 | 4923.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.76)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228687.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:17:43,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:17:53,145 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:03,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:13,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:23,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:26 CET)\" (scheduled at 2026-01-22 22:18:26.633942+01:00)\n", - "2026-01-22 22:18:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:26 CET)\" executed successfully\n", - "2026-01-22 22:18:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:32 CET)\" (scheduled at 2026-01-22 22:18:32.132962+01:00)\n", - "2026-01-22 22:18:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:32 CET)\" executed successfully\n", - "2026-01-22 22:18:33,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:34 CET)\" (scheduled at 2026-01-22 22:18:34.010875+01:00)\n", - "2026-01-22 22:18:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79637 | 4922.18 |\n", - "| H4 | uptrend | 438.28 | 44.4914 | 2.92493 | 4922.18 |\n", - "| H1 | uptrend | 613.95 | 23.0384 | 2.12166 | 4922.18 |\n", - "| M30 | uptrend | 651.11 | 14.7994 | 1.4454 | 4922.18 |\n", - "| M15 | uptrend | 142.59 | 9.3693 | 0.200393 | 4922.18 |\n", - "| M5 | uptrend | 1160.81 | 4.8097 | 0.837463 | 4922.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228644.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:18:43,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:18:53,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:03,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:13,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:23,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:26 CET)\" (scheduled at 2026-01-22 22:19:26.633942+01:00)\n", - "2026-01-22 22:19:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:26 CET)\" executed successfully\n", - "2026-01-22 22:19:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:32 CET)\" (scheduled at 2026-01-22 22:19:32.132962+01:00)\n", - "2026-01-22 22:19:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:32 CET)\" executed successfully\n", - "2026-01-22 22:19:33,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:34 CET)\" (scheduled at 2026-01-22 22:19:34.010875+01:00)\n", - "2026-01-22 22:19:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.79644 | 4922.47 |\n", - "| H4 | uptrend | 438.29 | 44.4914 | 2.925 | 4922.47 |\n", - "| H1 | uptrend | 613.97 | 23.0384 | 2.12173 | 4922.47 |\n", - "| M30 | uptrend | 651.14 | 14.7994 | 1.44547 | 4922.47 |\n", - "| M15 | uptrend | 142.64 | 9.3693 | 0.200461 | 4922.47 |\n", - "| M5 | uptrend | 1160.9 | 4.8097 | 0.837531 | 4922.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.74)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228656.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:19:43,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:19:53,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:03,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:13,517 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:23,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:26,764 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:26 CET)\" (scheduled at 2026-01-22 22:20:26.633942+01:00)\n", - "2026-01-22 22:20:26,764 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:26 CET)\" executed successfully\n", - "2026-01-22 22:20:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:32 CET)\" (scheduled at 2026-01-22 22:20:32.132962+01:00)\n", - "2026-01-22 22:20:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:32 CET)\" executed successfully\n", - "2026-01-22 22:20:33,567 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:34,086 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:34 CET)\" (scheduled at 2026-01-22 22:20:34.010875+01:00)\n", - "2026-01-22 22:20:34,262 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.79644 | 4922.48 |\n", - "| H4 | uptrend | 438.29 | 44.4914 | 2.925 | 4922.48 |\n", - "| H1 | uptrend | 613.97 | 23.0384 | 2.12173 | 4922.48 |\n", - "| M30 | uptrend | 651.14 | 14.7994 | 1.44547 | 4922.48 |\n", - "| M15 | uptrend | 142.64 | 9.3693 | 0.200463 | 4922.48 |\n", - "| M5 | uptrend | 1250.46 | 4.5047 | 0.844942 | 4922.48 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.74)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232239.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:20:43,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:20:53,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:03,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:13,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:23,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:26 CET)\" (scheduled at 2026-01-22 22:21:26.633942+01:00)\n", - "2026-01-22 22:21:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:26 CET)\" executed successfully\n", - "2026-01-22 22:21:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:32 CET)\" (scheduled at 2026-01-22 22:21:32.132962+01:00)\n", - "2026-01-22 22:21:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:32 CET)\" executed successfully\n", - "2026-01-22 22:21:33,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:34 CET)\" (scheduled at 2026-01-22 22:21:34.010875+01:00)\n", - "2026-01-22 22:21:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79636 | 4922.13 |\n", - "| H4 | uptrend | 438.27 | 44.4914 | 2.92492 | 4922.13 |\n", - "| H1 | uptrend | 613.95 | 23.0384 | 2.12165 | 4922.13 |\n", - "| M30 | uptrend | 651.1 | 14.7994 | 1.44539 | 4922.13 |\n", - "| M15 | uptrend | 142.58 | 9.3693 | 0.200376 | 4922.11 |\n", - "| M5 | uptrend | 1246.78 | 4.5175 | 0.844855 | 4922.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232081.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:21:43,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:21:53,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:03,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:13,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:23,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:26 CET)\" (scheduled at 2026-01-22 22:22:26.633942+01:00)\n", - "2026-01-22 22:22:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:26 CET)\" executed successfully\n", - "2026-01-22 22:22:32,159 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:32 CET)\" (scheduled at 2026-01-22 22:22:32.132962+01:00)\n", - "2026-01-22 22:22:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:32 CET)\" executed successfully\n", - "2026-01-22 22:22:33,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:34 CET)\" (scheduled at 2026-01-22 22:22:34.010875+01:00)\n", - "2026-01-22 22:22:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.68 | 91.8937 | 9.79611 | 4921.07 |\n", - "| H4 | uptrend | 438.24 | 44.4914 | 2.92467 | 4921.07 |\n", - "| H1 | uptrend | 613.87 | 23.0384 | 2.1214 | 4921.07 |\n", - "| M30 | uptrend | 650.99 | 14.7994 | 1.44514 | 4921.07 |\n", - "| M15 | uptrend | 141.56 | 9.425 | 0.20013 | 4921.07 |\n", - "| M5 | uptrend | 1220.18 | 4.6147 | 0.844609 | 4921.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230937.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:22:43,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:22:53,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:03,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:13,979 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:23,998 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:26 CET)\" (scheduled at 2026-01-22 22:23:26.633942+01:00)\n", - "2026-01-22 22:23:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:26 CET)\" executed successfully\n", - "2026-01-22 22:23:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:32 CET)\" (scheduled at 2026-01-22 22:23:32.132962+01:00)\n", - "2026-01-22 22:23:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:32 CET)\" executed successfully\n", - "2026-01-22 22:23:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:34 CET)\" (scheduled at 2026-01-22 22:23:34.010875+01:00)\n", - "2026-01-22 22:23:34,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79614 | 4921.2 |\n", - "| H4 | uptrend | 438.24 | 44.4914 | 2.9247 | 4921.2 |\n", - "| H1 | uptrend | 613.88 | 23.0384 | 2.12143 | 4921.2 |\n", - "| M30 | uptrend | 651 | 14.7994 | 1.44517 | 4921.2 |\n", - "| M15 | uptrend | 141.58 | 9.425 | 0.200161 | 4921.2 |\n", - "| M5 | uptrend | 1220.22 | 4.6147 | 0.84464 | 4921.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230943.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:23:44,051 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:23:54,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:24:04,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:24:14,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:24:24,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:24:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:26 CET)\" (scheduled at 2026-01-22 22:24:26.633942+01:00)\n", - "2026-01-22 22:24:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:26 CET)\" executed successfully\n", - "2026-01-22 22:24:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:32 CET)\" (scheduled at 2026-01-22 22:24:32.132962+01:00)\n", - "2026-01-22 22:24:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:32 CET)\" executed successfully\n", - "2026-01-22 22:24:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:34 CET)\" (scheduled at 2026-01-22 22:24:34.010875+01:00)\n", - "2026-01-22 22:24:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:25:34 CET)\" executed successfully\n", - "2026-01-22 22:24:34,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.7963 | 4921.88 |\n", - "| H4 | uptrend | 438.27 | 44.4914 | 2.92486 | 4921.88 |\n", - "| H1 | uptrend | 613.93 | 23.0384 | 2.12159 | 4921.88 |\n", - "| M30 | uptrend | 651.07 | 14.7994 | 1.44533 | 4921.88 |\n", - "| M15 | uptrend | 141.52 | 9.4364 | 0.200322 | 4921.88 |\n", - "| M5 | uptrend | 1217.44 | 4.6261 | 0.8448 | 4921.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230840.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:24:44,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:24:54,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:04,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:14,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:24,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:26 CET)\" (scheduled at 2026-01-22 22:25:26.633942+01:00)\n", - "2026-01-22 22:25:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:26 CET)\" executed successfully\n", - "2026-01-22 22:25:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:32 CET)\" (scheduled at 2026-01-22 22:25:32.132962+01:00)\n", - "2026-01-22 22:25:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:32 CET)\" executed successfully\n", - "2026-01-22 22:25:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:34 CET)\" (scheduled at 2026-01-22 22:25:34.010875+01:00)\n", - "2026-01-22 22:25:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.69 | 91.8937 | 9.79625 | 4921.68 |\n", - "| H4 | uptrend | 438.26 | 44.4914 | 2.92481 | 4921.68 |\n", - "| H1 | uptrend | 613.92 | 23.0384 | 2.12154 | 4921.68 |\n", - "| M30 | uptrend | 651.05 | 14.7994 | 1.44528 | 4921.68 |\n", - "| M15 | uptrend | 141.49 | 9.4364 | 0.200274 | 4921.68 |\n", - "| M5 | uptrend | 1302.89 | 4.3592 | 0.851944 | 4921.68 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234252.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:25:34,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:44,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:25:54,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:04,394 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:14,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:24,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:26 CET)\" (scheduled at 2026-01-22 22:26:26.633942+01:00)\n", - "2026-01-22 22:26:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:26 CET)\" executed successfully\n", - "2026-01-22 22:26:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:32 CET)\" (scheduled at 2026-01-22 22:26:32.132962+01:00)\n", - "2026-01-22 22:26:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:32 CET)\" executed successfully\n", - "2026-01-22 22:26:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:34 CET)\" (scheduled at 2026-01-22 22:26:34.010875+01:00)\n", - "2026-01-22 22:26:34,158 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.7964 | 4922.28 |\n", - "| H4 | uptrend | 438.28 | 44.4914 | 2.92495 | 4922.28 |\n", - "| H1 | uptrend | 613.96 | 23.0384 | 2.12169 | 4922.28 |\n", - "| M30 | uptrend | 651.12 | 14.7994 | 1.44542 | 4922.28 |\n", - "| M15 | uptrend | 141.59 | 9.4364 | 0.200416 | 4922.28 |\n", - "| M5 | uptrend | 1297.79 | 4.3771 | 0.852086 | 4922.28 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234065.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:26:34,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:44,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:26:54,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:04,549 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:14,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:24,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:26 CET)\" (scheduled at 2026-01-22 22:27:26.633942+01:00)\n", - "2026-01-22 22:27:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:26 CET)\" executed successfully\n", - "2026-01-22 22:27:32,430 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:32 CET)\" (scheduled at 2026-01-22 22:27:32.132962+01:00)\n", - "2026-01-22 22:27:32,444 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:32 CET)\" executed successfully\n", - "2026-01-22 22:27:34,042 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:34 CET)\" (scheduled at 2026-01-22 22:27:34.010875+01:00)\n", - "2026-01-22 22:27:34,238 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.7 | 91.8937 | 9.79638 | 4922.2 |\n", - "| H4 | uptrend | 438.28 | 44.4914 | 2.92493 | 4922.2 |\n", - "| H1 | uptrend | 613.95 | 23.0384 | 2.12167 | 4922.2 |\n", - "| M30 | uptrend | 651.11 | 14.7994 | 1.4454 | 4922.2 |\n", - "| M15 | uptrend | 141.58 | 9.4364 | 0.200397 | 4922.2 |\n", - "| M5 | uptrend | 1296.28 | 4.3821 | 0.852067 | 4922.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234003.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:27:34,629 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:44,643 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:27:54,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:04,693 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:14,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:24,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:26 CET)\" (scheduled at 2026-01-22 22:28:26.633942+01:00)\n", - "2026-01-22 22:28:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:26 CET)\" executed successfully\n", - "2026-01-22 22:28:32,185 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:32 CET)\" (scheduled at 2026-01-22 22:28:32.132962+01:00)\n", - "2026-01-22 22:28:32,185 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:32 CET)\" executed successfully\n", - "2026-01-22 22:28:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:34 CET)\" (scheduled at 2026-01-22 22:28:34.010875+01:00)\n", - "2026-01-22 22:28:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.71 | 91.8937 | 9.79649 | 4922.67 |\n", - "| H4 | uptrend | 438.29 | 44.4914 | 2.92504 | 4922.67 |\n", - "| H1 | uptrend | 613.98 | 23.0384 | 2.12178 | 4922.67 |\n", - "| M30 | uptrend | 651.16 | 14.7994 | 1.44552 | 4922.67 |\n", - "| M15 | uptrend | 141.66 | 9.4364 | 0.200508 | 4922.67 |\n", - "| M5 | uptrend | 1292.66 | 4.395 | 0.852178 | 4922.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.74)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233871.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:28:34,767 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:44,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:28:54,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:04,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:14,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:24,895 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:26,735 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:26 CET)\" (scheduled at 2026-01-22 22:29:26.633942+01:00)\n", - "2026-01-22 22:29:26,735 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:26 CET)\" executed successfully\n", - "2026-01-22 22:29:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:32 CET)\" (scheduled at 2026-01-22 22:29:32.132962+01:00)\n", - "2026-01-22 22:29:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:32 CET)\" executed successfully\n", - "2026-01-22 22:29:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:34 CET)\" (scheduled at 2026-01-22 22:29:34.010875+01:00)\n", - "2026-01-22 22:29:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.75 | 91.8937 | 9.79697 | 4924.7 |\n", - "| H4 | uptrend | 438.37 | 44.4914 | 2.92552 | 4924.7 |\n", - "| H1 | uptrend | 613.19 | 23.0734 | 2.12226 | 4924.7 |\n", - "| M30 | uptrend | 649.84 | 14.8344 | 1.44599 | 4924.7 |\n", - "| M15 | uptrend | 141.47 | 9.4714 | 0.200988 | 4924.7 |\n", - "| M5 | uptrend | 1251.09 | 4.5435 | 0.852657 | 4924.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232017.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:29:34,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:44,940 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:29:54,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:00,524 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 23:00:00 CET)\" (scheduled at 2026-01-22 22:30:00+01:00)\n", - "2026-01-22 22:30:00,524 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 23:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 22:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 23.27 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:30:04,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:15,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:25,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:26 CET)\" (scheduled at 2026-01-22 22:30:26.633942+01:00)\n", - "2026-01-22 22:30:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:26 CET)\" executed successfully\n", - "2026-01-22 22:30:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:32 CET)\" (scheduled at 2026-01-22 22:30:32.132962+01:00)\n", - "2026-01-22 22:30:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:32 CET)\" executed successfully\n", - "2026-01-22 22:30:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:34 CET)\" (scheduled at 2026-01-22 22:30:34.010875+01:00)\n", - "2026-01-22 22:30:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.74 | 91.8937 | 9.79694 | 4924.61 |\n", - "| H4 | uptrend | 438.36 | 44.4914 | 2.9255 | 4924.61 |\n", - "| H1 | uptrend | 612.29 | 23.107 | 2.12224 | 4924.61 |\n", - "| M30 | uptrend | 698.17 | 13.8503 | 1.45049 | 4924.61 |\n", - "| M15 | uptrend | 167.28 | 8.8703 | 0.222579 | 4924.61 |\n", - "| M5 | uptrend | 1336.21 | 4.2945 | 0.860742 | 4924.61 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 240747.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:30:35,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:45,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:30:55,124 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:05,147 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:15,159 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:25,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:27,094 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:26 CET)\" (scheduled at 2026-01-22 22:31:26.633942+01:00)\n", - "2026-01-22 22:31:27,094 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:26 CET)\" executed successfully\n", - "2026-01-22 22:31:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:32 CET)\" (scheduled at 2026-01-22 22:31:32.132962+01:00)\n", - "2026-01-22 22:31:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:32 CET)\" executed successfully\n", - "2026-01-22 22:31:34,079 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:34 CET)\" (scheduled at 2026-01-22 22:31:34.010875+01:00)\n", - "2026-01-22 22:31:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.74 | 91.8937 | 9.7969 | 4924.41 |\n", - "| H4 | uptrend | 438.36 | 44.4914 | 2.92546 | 4924.41 |\n", - "| H1 | uptrend | 612.28 | 23.107 | 2.12219 | 4924.41 |\n", - "| M30 | uptrend | 696.5 | 13.8831 | 1.45044 | 4924.41 |\n", - "| M15 | uptrend | 166.63 | 8.9032 | 0.222531 | 4924.41 |\n", - "| M5 | uptrend | 1325.99 | 4.3273 | 0.860695 | 4924.41 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 240164.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:31:35,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:45,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:31:55,264 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:05,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:15,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:25,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:26,716 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:26 CET)\" (scheduled at 2026-01-22 22:32:26.633942+01:00)\n", - "2026-01-22 22:32:26,731 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:26 CET)\" executed successfully\n", - "2026-01-22 22:32:32,239 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:32 CET)\" (scheduled at 2026-01-22 22:32:32.132962+01:00)\n", - "2026-01-22 22:32:32,239 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:32 CET)\" executed successfully\n", - "2026-01-22 22:32:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:34 CET)\" (scheduled at 2026-01-22 22:32:34.010875+01:00)\n", - "2026-01-22 22:32:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 32%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 710.62 | 91.918 | 9.79779 | 4928.19 |\n", - "| H4 | uptrend | 438.25 | 44.5156 | 2.92635 | 4928.19 |\n", - "| H1 | uptrend | 606.13 | 23.3513 | 2.12308 | 4928.19 |\n", - "| M30 | uptrend | 684.36 | 14.1381 | 1.45134 | 4928.21 |\n", - "| M15 | uptrend | 162.64 | 9.1582 | 0.223429 | 4928.21 |\n", - "| M5 | uptrend | 1253.5 | 4.5823 | 0.861593 | 4928.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 601.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235427.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:32:35,366 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:45,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:32:55,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:05,426 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:15,450 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:25,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:26,726 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:26 CET)\" (scheduled at 2026-01-22 22:33:26.633942+01:00)\n", - "2026-01-22 22:33:26,726 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:26 CET)\" executed successfully\n", - "2026-01-22 22:33:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:32 CET)\" (scheduled at 2026-01-22 22:33:32.132962+01:00)\n", - "2026-01-22 22:33:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:32 CET)\" executed successfully\n", - "2026-01-22 22:33:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:34 CET)\" (scheduled at 2026-01-22 22:33:34.010875+01:00)\n", - "2026-01-22 22:33:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 709.25 | 92.1023 | 9.79851 | 4931.25 |\n", - "| H4 | uptrend | 436.55 | 44.6999 | 2.92707 | 4931.25 |\n", - "| H1 | uptrend | 601.59 | 23.5355 | 2.12381 | 4931.25 |\n", - "| M30 | uptrend | 675.89 | 14.3224 | 1.45206 | 4931.26 |\n", - "| M15 | uptrend | 159.95 | 9.3425 | 0.22415 | 4931.26 |\n", - "| M5 | uptrend | 1205.53 | 4.7687 | 0.86233 | 4931.33 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 600.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232065.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:33:35,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:45,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:33:55,629 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:05,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:15,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:25,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:26,769 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:26 CET)\" (scheduled at 2026-01-22 22:34:26.633942+01:00)\n", - "2026-01-22 22:34:26,769 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:26 CET)\" executed successfully\n", - "2026-01-22 22:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:32 CET)\" (scheduled at 2026-01-22 22:34:32.132962+01:00)\n", - "2026-01-22 22:34:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:32 CET)\" executed successfully\n", - "2026-01-22 22:34:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:34 CET)\" (scheduled at 2026-01-22 22:34:34.010875+01:00)\n", - "2026-01-22 22:34:34,154 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 707.76 | 92.3023 | 9.79918 | 4934.09 |\n", - "| H4 | uptrend | 434.71 | 44.8999 | 2.92774 | 4934.09 |\n", - "| H1 | uptrend | 596.71 | 23.7355 | 2.12448 | 4934.09 |\n", - "| M30 | uptrend | 666.89 | 14.5224 | 1.45273 | 4934.09 |\n", - "| M15 | uptrend | 157.07 | 9.5425 | 0.224818 | 4934.09 |\n", - "| M5 | uptrend | 1158.38 | 4.9666 | 0.862982 | 4934.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 598.54)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228634.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:34:35,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:45,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:34:55,781 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:05,815 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:15,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:25,865 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:26 CET)\" (scheduled at 2026-01-22 22:35:26.633942+01:00)\n", - "2026-01-22 22:35:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:26 CET)\" executed successfully\n", - "2026-01-22 22:35:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:32 CET)\" (scheduled at 2026-01-22 22:35:32.132962+01:00)\n", - "2026-01-22 22:35:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:32 CET)\" executed successfully\n", - "2026-01-22 22:35:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:34 CET)\" (scheduled at 2026-01-22 22:35:34.010875+01:00)\n", - "2026-01-22 22:35:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.23 | 92.5052 | 9.79944 | 4935.15 |\n", - "| H4 | uptrend | 432.79 | 45.1028 | 2.92799 | 4935.15 |\n", - "| H1 | uptrend | 591.72 | 23.9384 | 2.12473 | 4935.15 |\n", - "| M30 | uptrend | 657.82 | 14.7253 | 1.45297 | 4935.15 |\n", - "| M15 | uptrend | 153.97 | 9.7453 | 0.225069 | 4935.15 |\n", - "| M5 | uptrend | 1194.8 | 4.8757 | 0.87382 | 4935.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228512.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:35:35,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:45,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:35:55,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:05,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:15,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:26,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:26 CET)\" (scheduled at 2026-01-22 22:36:26.633942+01:00)\n", - "2026-01-22 22:36:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:26 CET)\" executed successfully\n", - "2026-01-22 22:36:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:32 CET)\" (scheduled at 2026-01-22 22:36:32.132962+01:00)\n", - "2026-01-22 22:36:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:32 CET)\" executed successfully\n", - "2026-01-22 22:36:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:34 CET)\" (scheduled at 2026-01-22 22:36:34.010875+01:00)\n", - "2026-01-22 22:36:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.21 | 92.5052 | 9.79925 | 4934.37 |\n", - "| H4 | uptrend | 432.76 | 45.1028 | 2.92781 | 4934.37 |\n", - "| H1 | uptrend | 591.67 | 23.9384 | 2.12454 | 4934.37 |\n", - "| M30 | uptrend | 657.73 | 14.7253 | 1.45279 | 4934.37 |\n", - "| M15 | uptrend | 153.84 | 9.7453 | 0.224885 | 4934.37 |\n", - "| M5 | uptrend | 1178.33 | 4.9428 | 0.873636 | 4934.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227832.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:36:36,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:46,064 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:36:56,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:06,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:16,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:26,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:26 CET)\" (scheduled at 2026-01-22 22:37:26.633942+01:00)\n", - "2026-01-22 22:37:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:26 CET)\" executed successfully\n", - "2026-01-22 22:37:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:32 CET)\" (scheduled at 2026-01-22 22:37:32.132962+01:00)\n", - "2026-01-22 22:37:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:32 CET)\" executed successfully\n", - "2026-01-22 22:37:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:34 CET)\" (scheduled at 2026-01-22 22:37:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.21 | 92.5052 | 9.79921 | 4934.18 |\n", - "| H4 | uptrend | 432.75 | 45.1028 | 2.92776 | 4934.18 |\n", - "| H1 | uptrend | 591.66 | 23.9384 | 2.12449 | 4934.16 |\n", - "| M30 | uptrend | 657.71 | 14.7253 | 1.45274 | 4934.16 |\n", - "| M15 | uptrend | 153.81 | 9.7453 | 0.224835 | 4934.16 |\n", - "| M5 | uptrend | 1171.99 | 4.9692 | 0.873587 | 4934.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227573.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:37:34,229 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:37:36,191 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:46,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:37:56,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:06,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:16,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:26,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:26,833 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:26 CET)\" (scheduled at 2026-01-22 22:38:26.633942+01:00)\n", - "2026-01-22 22:38:26,841 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:26 CET)\" executed successfully\n", - "2026-01-22 22:38:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:32 CET)\" (scheduled at 2026-01-22 22:38:32.132962+01:00)\n", - "2026-01-22 22:38:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:32 CET)\" executed successfully\n", - "2026-01-22 22:38:34,048 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:34 CET)\" (scheduled at 2026-01-22 22:38:34.010875+01:00)\n", - "2026-01-22 22:38:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.23 | 92.5052 | 9.7995 | 4935.41 |\n", - "| H4 | uptrend | 432.8 | 45.1028 | 2.92806 | 4935.41 |\n", - "| H1 | uptrend | 591.74 | 23.9384 | 2.12479 | 4935.42 |\n", - "| M30 | uptrend | 657.84 | 14.7253 | 1.45304 | 4935.42 |\n", - "| M15 | uptrend | 154.01 | 9.7453 | 0.225133 | 4935.42 |\n", - "| M5 | uptrend | 1172.39 | 4.9692 | 0.873884 | 4935.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.86)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227623.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:38:36,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:46,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:38:56,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:06,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:16,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:26,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:26 CET)\" (scheduled at 2026-01-22 22:39:26.633942+01:00)\n", - "2026-01-22 22:39:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:26 CET)\" executed successfully\n", - "2026-01-22 22:39:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:32 CET)\" (scheduled at 2026-01-22 22:39:32.132962+01:00)\n", - "2026-01-22 22:39:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:32 CET)\" executed successfully\n", - "2026-01-22 22:39:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:34 CET)\" (scheduled at 2026-01-22 22:39:34.010875+01:00)\n", - "2026-01-22 22:39:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.25 | 92.5052 | 9.79974 | 4936.46 |\n", - "| H4 | uptrend | 432.83 | 45.1028 | 2.9283 | 4936.46 |\n", - "| H1 | uptrend | 591.81 | 23.9384 | 2.12504 | 4936.46 |\n", - "| M30 | uptrend | 657.96 | 14.7253 | 1.45328 | 4936.46 |\n", - "| M15 | uptrend | 154.18 | 9.7453 | 0.225378 | 4936.46 |\n", - "| M5 | uptrend | 1172.72 | 4.9692 | 0.87413 | 4936.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.88)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227665.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:39:34,807 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 23:39:34 CET)\" (scheduled at 2026-01-22 22:39:34.806528+01:00)\n", - "2026-01-22 22:39:34,818 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 23:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[22:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:39:36,504 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:46,517 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:39:56,549 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:06,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:16,610 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:26,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:26,662 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:26 CET)\" (scheduled at 2026-01-22 22:40:26.633942+01:00)\n", - "2026-01-22 22:40:26,665 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:26 CET)\" executed successfully\n", - "2026-01-22 22:40:32,166 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:32 CET)\" (scheduled at 2026-01-22 22:40:32.132962+01:00)\n", - "2026-01-22 22:40:32,166 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:32 CET)\" executed successfully\n", - "2026-01-22 22:40:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:34 CET)\" (scheduled at 2026-01-22 22:40:34.010875+01:00)\n", - "2026-01-22 22:40:34,213 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 706.24 | 92.5052 | 9.79961 | 4935.87 |\n", - "| H4 | uptrend | 432.81 | 45.1028 | 2.92816 | 4935.87 |\n", - "| H1 | uptrend | 591.77 | 23.9384 | 2.1249 | 4935.87 |\n", - "| M30 | uptrend | 657.89 | 14.7253 | 1.45314 | 4935.87 |\n", - "| M15 | uptrend | 154.08 | 9.7453 | 0.225239 | 4935.87 |\n", - "| M5 | uptrend | 1267.56 | 4.65 | 0.884125 | 4935.87 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 596.87)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231442.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:40:36,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:46,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:40:56,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:06,741 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:16,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:26 CET)\" (scheduled at 2026-01-22 22:41:26.633942+01:00)\n", - "2026-01-22 22:41:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:26 CET)\" executed successfully\n", - "2026-01-22 22:41:26,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:32,158 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:32 CET)\" (scheduled at 2026-01-22 22:41:32.132962+01:00)\n", - "2026-01-22 22:41:32,158 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:32 CET)\" executed successfully\n", - "2026-01-22 22:41:34,032 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:34 CET)\" (scheduled at 2026-01-22 22:41:34.010875+01:00)\n", - "2026-01-22 22:41:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 705.06 | 92.6673 | 9.80038 | 4939.14 |\n", - "| H4 | uptrend | 431.38 | 45.2649 | 2.92894 | 4939.14 |\n", - "| H1 | uptrend | 588 | 24.1005 | 2.12567 | 4939.14 |\n", - "| M30 | uptrend | 651.07 | 14.8874 | 1.45392 | 4939.14 |\n", - "| M15 | uptrend | 152.08 | 9.9075 | 0.226012 | 4939.14 |\n", - "| M5 | uptrend | 1214.92 | 4.8557 | 0.884898 | 4939.14 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 595.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228166.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:41:36,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:46,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:41:56,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:06,895 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:16,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:26 CET)\" (scheduled at 2026-01-22 22:42:26.633942+01:00)\n", - "2026-01-22 22:42:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:26 CET)\" executed successfully\n", - "2026-01-22 22:42:26,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:32 CET)\" (scheduled at 2026-01-22 22:42:32.132962+01:00)\n", - "2026-01-22 22:42:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:32 CET)\" executed successfully\n", - "2026-01-22 22:42:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:34 CET)\" (scheduled at 2026-01-22 22:42:34.010875+01:00)\n", - "2026-01-22 22:42:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.92 | 92.6852 | 9.80029 | 4938.78 |\n", - "| H4 | uptrend | 431.19 | 45.2828 | 2.92885 | 4938.78 |\n", - "| H1 | uptrend | 587.54 | 24.1184 | 2.12559 | 4938.78 |\n", - "| M30 | uptrend | 650.26 | 14.9053 | 1.45383 | 4938.78 |\n", - "| M15 | uptrend | 151.75 | 9.9253 | 0.225927 | 4938.78 |\n", - "| M5 | uptrend | 1210.46 | 4.8736 | 0.884893 | 4939.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 595.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227840.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:42:36,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:46,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:42:57,011 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:07,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:17,054 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:26 CET)\" (scheduled at 2026-01-22 22:43:26.633942+01:00)\n", - "2026-01-22 22:43:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:26 CET)\" executed successfully\n", - "2026-01-22 22:43:27,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:32 CET)\" (scheduled at 2026-01-22 22:43:32.132962+01:00)\n", - "2026-01-22 22:43:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:32 CET)\" executed successfully\n", - "2026-01-22 22:43:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:34 CET)\" (scheduled at 2026-01-22 22:43:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:43:34,640 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.54 | 92.7366 | 9.80055 | 4939.87 |\n", - "| H4 | uptrend | 430.74 | 45.3342 | 2.92911 | 4939.87 |\n", - "| H1 | uptrend | 586.36 | 24.1698 | 2.12584 | 4939.87 |\n", - "| M30 | uptrend | 648.15 | 14.9567 | 1.45412 | 4940.01 |\n", - "| M15 | uptrend | 151.16 | 9.9768 | 0.226217 | 4940.01 |\n", - "| M5 | uptrend | 1198.11 | 4.925 | 0.885104 | 4940.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 595.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226984.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:43:37,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:47,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:43:57,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:07,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:17,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:27,175 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:26 CET)\" (scheduled at 2026-01-22 22:44:26.633942+01:00)\n", - "2026-01-22 22:44:27,175 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:26 CET)\" executed successfully\n", - "2026-01-22 22:44:27,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:32 CET)\" (scheduled at 2026-01-22 22:44:32.132962+01:00)\n", - "2026-01-22 22:44:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:32 CET)\" executed successfully\n", - "2026-01-22 22:44:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:34 CET)\" (scheduled at 2026-01-22 22:44:34.010875+01:00)\n", - "2026-01-22 22:44:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.36 | 92.7587 | 9.80039 | 4939.17 |\n", - "| H4 | uptrend | 430.51 | 45.3564 | 2.92894 | 4939.17 |\n", - "| H1 | uptrend | 585.78 | 24.192 | 2.12568 | 4939.17 |\n", - "| M30 | uptrend | 647.1 | 14.9788 | 1.45392 | 4939.17 |\n", - "| M15 | uptrend | 150.7 | 9.9989 | 0.226019 | 4939.17 |\n", - "| M5 | uptrend | 1192.48 | 4.9472 | 0.884905 | 4939.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.82)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226569.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:44:37,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:47,278 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:44:57,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:07,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:17,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:26 CET)\" (scheduled at 2026-01-22 22:45:26.633942+01:00)\n", - "2026-01-22 22:45:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:26 CET)\" executed successfully\n", - "2026-01-22 22:45:27,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:32 CET)\" (scheduled at 2026-01-22 22:45:32.132962+01:00)\n", - "2026-01-22 22:45:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:32 CET)\" executed successfully\n", - "2026-01-22 22:45:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:34 CET)\" (scheduled at 2026-01-22 22:45:34.010875+01:00)\n", - "2026-01-22 22:45:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.3 | 92.7694 | 9.80062 | 4940.15 |\n", - "| H4 | uptrend | 430.44 | 45.3671 | 2.92917 | 4940.15 |\n", - "| H1 | uptrend | 585.58 | 24.2027 | 2.12591 | 4940.15 |\n", - "| M30 | uptrend | 646.74 | 14.9895 | 1.45416 | 4940.15 |\n", - "| M15 | uptrend | 179.3 | 9.4433 | 0.253975 | 4940.15 |\n", - "| M5 | uptrend | 1256.46 | 4.7524 | 0.895674 | 4940.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.76)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230789.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:45:37,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:47,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:45:57,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:07,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:17,512 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:26 CET)\" (scheduled at 2026-01-22 22:46:26.633942+01:00)\n", - "2026-01-22 22:46:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:26 CET)\" executed successfully\n", - "2026-01-22 22:46:27,545 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:32 CET)\" (scheduled at 2026-01-22 22:46:32.132962+01:00)\n", - "2026-01-22 22:46:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:32 CET)\" executed successfully\n", - "2026-01-22 22:46:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:34 CET)\" (scheduled at 2026-01-22 22:46:34.010875+01:00)\n", - "2026-01-22 22:46:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.21 | 92.7816 | 9.80072 | 4940.57 |\n", - "| H4 | uptrend | 430.34 | 45.3792 | 2.92927 | 4940.57 |\n", - "| H1 | uptrend | 585.32 | 24.2148 | 2.12602 | 4940.61 |\n", - "| M30 | uptrend | 646.27 | 15.0017 | 1.45426 | 4940.61 |\n", - "| M15 | uptrend | 179.15 | 9.4554 | 0.254083 | 4940.61 |\n", - "| M5 | uptrend | 1253.4 | 4.7645 | 0.895778 | 4940.61 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.66)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230584.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:46:37,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:47,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:46:57,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:07,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:17,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:26 CET)\" (scheduled at 2026-01-22 22:47:26.633942+01:00)\n", - "2026-01-22 22:47:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:26 CET)\" executed successfully\n", - "2026-01-22 22:47:27,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:32 CET)\" (scheduled at 2026-01-22 22:47:32.132962+01:00)\n", - "2026-01-22 22:47:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:32 CET)\" executed successfully\n", - "2026-01-22 22:47:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:34 CET)\" (scheduled at 2026-01-22 22:47:34.010875+01:00)\n", - "2026-01-22 22:47:34,205 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.18 | 92.7816 | 9.80029 | 4938.76 |\n", - "| H4 | uptrend | 430.28 | 45.3792 | 2.92885 | 4938.76 |\n", - "| H1 | uptrend | 585.2 | 24.2148 | 2.12558 | 4938.76 |\n", - "| M30 | uptrend | 646.07 | 15.0017 | 1.45383 | 4938.76 |\n", - "| M15 | uptrend | 178.84 | 9.4554 | 0.253646 | 4938.76 |\n", - "| M5 | uptrend | 1252.79 | 4.7645 | 0.895341 | 4938.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.62)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230509.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:47:37,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:47,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:47:57,757 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:07,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:17,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:26 CET)\" (scheduled at 2026-01-22 22:48:26.633942+01:00)\n", - "2026-01-22 22:48:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:26 CET)\" executed successfully\n", - "2026-01-22 22:48:27,840 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:32 CET)\" (scheduled at 2026-01-22 22:48:32.132962+01:00)\n", - "2026-01-22 22:48:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:32 CET)\" executed successfully\n", - "2026-01-22 22:48:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:34 CET)\" (scheduled at 2026-01-22 22:48:34.010875+01:00)\n", - "2026-01-22 22:48:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.18 | 92.7816 | 9.8002 | 4938.37 |\n", - "| H4 | uptrend | 430.26 | 45.3792 | 2.92875 | 4938.37 |\n", - "| H1 | uptrend | 585.18 | 24.2148 | 2.12549 | 4938.37 |\n", - "| M30 | uptrend | 646.03 | 15.0017 | 1.45374 | 4938.37 |\n", - "| M15 | uptrend | 177.47 | 9.5247 | 0.253554 | 4938.37 |\n", - "| M5 | uptrend | 1234.71 | 4.8338 | 0.895249 | 4938.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229697.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:48:37,866 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:47,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:48:57,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:07,938 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:17,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:26 CET)\" (scheduled at 2026-01-22 22:49:26.633942+01:00)\n", - "2026-01-22 22:49:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:26 CET)\" executed successfully\n", - "2026-01-22 22:49:27,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:32 CET)\" (scheduled at 2026-01-22 22:49:32.132962+01:00)\n", - "2026-01-22 22:49:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:32 CET)\" executed successfully\n", - "2026-01-22 22:49:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:34 CET)\" (scheduled at 2026-01-22 22:49:34.010875+01:00)\n", - "2026-01-22 22:49:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.16 | 92.7816 | 9.8 | 4937.52 |\n", - "| H4 | uptrend | 430.24 | 45.3792 | 2.92857 | 4937.59 |\n", - "| H1 | uptrend | 585.12 | 24.2148 | 2.1253 | 4937.59 |\n", - "| M30 | uptrend | 645.95 | 15.0017 | 1.45355 | 4937.59 |\n", - "| M15 | uptrend | 177.34 | 9.5247 | 0.25337 | 4937.59 |\n", - "| M5 | uptrend | 1234.45 | 4.8338 | 0.895065 | 4937.59 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229666.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:49:38,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:48,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:49:58,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:08,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:18,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:26 CET)\" (scheduled at 2026-01-22 22:50:26.633942+01:00)\n", - "2026-01-22 22:50:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:26 CET)\" executed successfully\n", - "2026-01-22 22:50:28,249 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:32,167 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:32 CET)\" (scheduled at 2026-01-22 22:50:32.132962+01:00)\n", - "2026-01-22 22:50:32,167 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:32 CET)\" executed successfully\n", - "2026-01-22 22:50:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:34 CET)\" (scheduled at 2026-01-22 22:50:34.010875+01:00)\n", - "2026-01-22 22:50:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79974 | 4936.43 |\n", - "| H4 | uptrend | 430.2 | 45.3792 | 2.9283 | 4936.43 |\n", - "| H1 | uptrend | 585.05 | 24.2148 | 2.12503 | 4936.43 |\n", - "| M30 | uptrend | 645.83 | 15.0017 | 1.45328 | 4936.43 |\n", - "| M15 | uptrend | 175.41 | 9.619 | 0.253096 | 4936.43 |\n", - "| M5 | uptrend | 1288.38 | 4.6754 | 0.903546 | 4936.43 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231687.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:50:38,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:48,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:50:58,317 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:08,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:18,363 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:26 CET)\" (scheduled at 2026-01-22 22:51:26.633942+01:00)\n", - "2026-01-22 22:51:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:26 CET)\" executed successfully\n", - "2026-01-22 22:51:28,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:32 CET)\" (scheduled at 2026-01-22 22:51:32.132962+01:00)\n", - "2026-01-22 22:51:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:32 CET)\" executed successfully\n", - "2026-01-22 22:51:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:34 CET)\" (scheduled at 2026-01-22 22:51:34.010875+01:00)\n", - "2026-01-22 22:51:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.15 | 92.7816 | 9.79985 | 4936.89 |\n", - "| H4 | uptrend | 430.21 | 45.3792 | 2.9284 | 4936.89 |\n", - "| H1 | uptrend | 585.08 | 24.2148 | 2.12514 | 4936.89 |\n", - "| M30 | uptrend | 645.88 | 15.0017 | 1.45339 | 4936.89 |\n", - "| M15 | uptrend | 175.49 | 9.619 | 0.253204 | 4936.89 |\n", - "| M5 | uptrend | 1288.53 | 4.6754 | 0.903655 | 4936.89 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231706.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:51:38,395 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:48,414 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:51:58,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:08,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:18,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:26 CET)\" (scheduled at 2026-01-22 22:52:26.633942+01:00)\n", - "2026-01-22 22:52:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:26 CET)\" executed successfully\n", - "2026-01-22 22:52:28,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:32 CET)\" (scheduled at 2026-01-22 22:52:32.132962+01:00)\n", - "2026-01-22 22:52:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:32 CET)\" executed successfully\n", - "2026-01-22 22:52:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:34 CET)\" (scheduled at 2026-01-22 22:52:34.010875+01:00)\n", - "2026-01-22 22:52:34,213 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.16 | 92.7816 | 9.79991 | 4937.17 |\n", - "| H4 | uptrend | 430.22 | 45.3792 | 2.92847 | 4937.17 |\n", - "| H1 | uptrend | 585.1 | 24.2148 | 2.1252 | 4937.17 |\n", - "| M30 | uptrend | 645.91 | 15.0017 | 1.45345 | 4937.17 |\n", - "| M15 | uptrend | 175.54 | 9.619 | 0.253271 | 4937.17 |\n", - "| M5 | uptrend | 1285.48 | 4.6868 | 0.903721 | 4937.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231592.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:52:38,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:48,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:52:58,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:08,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:18,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:26 CET)\" (scheduled at 2026-01-22 22:53:26.633942+01:00)\n", - "2026-01-22 22:53:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:26 CET)\" executed successfully\n", - "2026-01-22 22:53:28,625 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:32 CET)\" (scheduled at 2026-01-22 22:53:32.132962+01:00)\n", - "2026-01-22 22:53:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:32 CET)\" executed successfully\n", - "2026-01-22 22:53:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:34 CET)\" (scheduled at 2026-01-22 22:53:34.010875+01:00)\n", - "2026-01-22 22:53:34,230 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.16 | 92.7816 | 9.79993 | 4937.24 |\n", - "| H4 | uptrend | 430.22 | 45.3792 | 2.92849 | 4937.24 |\n", - "| H1 | uptrend | 585.1 | 24.2148 | 2.12522 | 4937.24 |\n", - "| M30 | uptrend | 645.93 | 15.0017 | 1.45352 | 4937.44 |\n", - "| M15 | uptrend | 175.58 | 9.619 | 0.253334 | 4937.44 |\n", - "| M5 | uptrend | 1279.32 | 4.7097 | 0.903771 | 4937.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231350.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:53:38,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:48,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:53:58,688 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:08,705 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:18,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:26 CET)\" (scheduled at 2026-01-22 22:54:26.633942+01:00)\n", - "2026-01-22 22:54:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:26 CET)\" executed successfully\n", - "2026-01-22 22:54:28,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:32 CET)\" (scheduled at 2026-01-22 22:54:32.132962+01:00)\n", - "2026-01-22 22:54:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:32 CET)\" executed successfully\n", - "2026-01-22 22:54:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:34 CET)\" (scheduled at 2026-01-22 22:54:34.010875+01:00)\n", - "2026-01-22 22:54:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.13 | 92.7816 | 9.79958 | 4935.74 |\n", - "| H4 | uptrend | 430.17 | 45.3792 | 2.92813 | 4935.74 |\n", - "| H1 | uptrend | 585 | 24.2148 | 2.12487 | 4935.74 |\n", - "| M30 | uptrend | 645.76 | 15.0017 | 1.45311 | 4935.74 |\n", - "| M15 | uptrend | 174.52 | 9.6618 | 0.252933 | 4935.74 |\n", - "| M5 | uptrend | 1267.04 | 4.7532 | 0.903383 | 4935.74 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230769.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:54:38,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:48,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:54:58,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:08,823 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:18,852 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:26 CET)\" (scheduled at 2026-01-22 22:55:26.633942+01:00)\n", - "2026-01-22 22:55:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:26 CET)\" executed successfully\n", - "2026-01-22 22:55:28,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:32 CET)\" (scheduled at 2026-01-22 22:55:32.132962+01:00)\n", - "2026-01-22 22:55:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:32 CET)\" executed successfully\n", - "2026-01-22 22:55:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:34 CET)\" (scheduled at 2026-01-22 22:55:34.010875+01:00)\n", - "2026-01-22 22:55:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.15 | 92.7816 | 9.79987 | 4936.99 |\n", - "| H4 | uptrend | 430.22 | 45.3792 | 2.92843 | 4936.99 |\n", - "| H1 | uptrend | 585.09 | 24.2148 | 2.12516 | 4936.99 |\n", - "| M30 | uptrend | 645.89 | 15.0017 | 1.45341 | 4936.99 |\n", - "| M15 | uptrend | 174.73 | 9.6618 | 0.253228 | 4936.99 |\n", - "| M5 | uptrend | 1337.62 | 4.543 | 0.911514 | 4936.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233625.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:55:38,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:48,908 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:55:58,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:08,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:18,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:26,683 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:26 CET)\" (scheduled at 2026-01-22 22:56:26.633942+01:00)\n", - "2026-01-22 22:56:26,683 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:26 CET)\" executed successfully\n", - "2026-01-22 22:56:28,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:32 CET)\" (scheduled at 2026-01-22 22:56:32.132962+01:00)\n", - "2026-01-22 22:56:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:32 CET)\" executed successfully\n", - "2026-01-22 22:56:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:34 CET)\" (scheduled at 2026-01-22 22:56:34.010875+01:00)\n", - "2026-01-22 22:56:34,147 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.19 | 92.7816 | 9.80035 | 4939.01 |\n", - "| H4 | uptrend | 430.29 | 45.3792 | 2.9289 | 4939.01 |\n", - "| H1 | uptrend | 585.22 | 24.2148 | 2.12564 | 4939.01 |\n", - "| M30 | uptrend | 646.1 | 15.0017 | 1.45389 | 4939.01 |\n", - "| M15 | uptrend | 175.06 | 9.6618 | 0.253705 | 4939.01 |\n", - "| M5 | uptrend | 1303.48 | 4.6644 | 0.911992 | 4939.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232314.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:56:39,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:49,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:56:59,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:09,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:19,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:26 CET)\" (scheduled at 2026-01-22 22:57:26.633942+01:00)\n", - "2026-01-22 22:57:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:26 CET)\" executed successfully\n", - "2026-01-22 22:57:29,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:32 CET)\" (scheduled at 2026-01-22 22:57:32.132962+01:00)\n", - "2026-01-22 22:57:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:32 CET)\" executed successfully\n", - "2026-01-22 22:57:34,059 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:34 CET)\" (scheduled at 2026-01-22 22:57:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:57:34,292 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.17 | 92.7816 | 9.80015 | 4938.18 |\n", - "| H4 | uptrend | 430.26 | 45.3792 | 2.92871 | 4938.18 |\n", - "| H1 | uptrend | 585.16 | 24.2148 | 2.12544 | 4938.18 |\n", - "| M30 | uptrend | 646.01 | 15.0017 | 1.45368 | 4938.15 |\n", - "| M15 | uptrend | 174.92 | 9.6618 | 0.253502 | 4938.15 |\n", - "| M5 | uptrend | 1290.35 | 4.7108 | 0.911788 | 4938.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231766.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:57:39,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:49,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:57:59,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:09,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:19,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:26,660 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:26 CET)\" (scheduled at 2026-01-22 22:58:26.633942+01:00)\n", - "2026-01-22 22:58:26,660 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:26 CET)\" executed successfully\n", - "2026-01-22 22:58:29,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:32 CET)\" (scheduled at 2026-01-22 22:58:32.132962+01:00)\n", - "2026-01-22 22:58:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:32 CET)\" executed successfully\n", - "2026-01-22 22:58:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:34 CET)\" (scheduled at 2026-01-22 22:58:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:58:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 22:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:58:39,289 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:49,315 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:58:59,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:09,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:19,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:26 CET)\" (scheduled at 2026-01-22 22:59:26.633942+01:00)\n", - "2026-01-22 22:59:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:26 CET)\" executed successfully\n", - "2026-01-22 22:59:29,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:32,160 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:32 CET)\" (scheduled at 2026-01-22 22:59:32.132962+01:00)\n", - "2026-01-22 22:59:32,160 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:32 CET)\" executed successfully\n", - "2026-01-22 22:59:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:34 CET)\" (scheduled at 2026-01-22 22:59:34.010875+01:00)\n", - "2026-01-22 22:59:34,150 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 22:59:39,427 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:49,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 22:59:59,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:00,016 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 23:30:00 CET)\" (scheduled at 2026-01-22 23:00:00+01:00)\n", - "2026-01-22 23:00:00,036 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 23:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 23:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.38 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:00:09,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:19,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:26,739 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:26 CET)\" (scheduled at 2026-01-22 23:00:26.633942+01:00)\n", - "2026-01-22 23:00:26,739 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:26 CET)\" executed successfully\n", - "2026-01-22 23:00:29,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:32 CET)\" (scheduled at 2026-01-22 23:00:32.132962+01:00)\n", - "2026-01-22 23:00:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:32 CET)\" executed successfully\n", - "2026-01-22 23:00:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:34 CET)\" (scheduled at 2026-01-22 23:00:34.010875+01:00)\n", - "2026-01-22 23:00:34,157 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:00:39,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:49,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:00:59,595 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:09,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:19,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:26 CET)\" (scheduled at 2026-01-22 23:01:26.633942+01:00)\n", - "2026-01-22 23:01:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:26 CET)\" executed successfully\n", - "2026-01-22 23:01:29,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:32 CET)\" (scheduled at 2026-01-22 23:01:32.132962+01:00)\n", - "2026-01-22 23:01:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:32 CET)\" executed successfully\n", - "2026-01-22 23:01:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:34 CET)\" (scheduled at 2026-01-22 23:01:34.010875+01:00)\n", - "2026-01-22 23:01:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:01:39,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:49,695 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:01:59,719 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:09,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:19,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:26 CET)\" (scheduled at 2026-01-22 23:02:26.633942+01:00)\n", - "2026-01-22 23:02:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:26 CET)\" executed successfully\n", - "2026-01-22 23:02:29,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:32 CET)\" (scheduled at 2026-01-22 23:02:32.132962+01:00)\n", - "2026-01-22 23:02:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:32 CET)\" executed successfully\n", - "2026-01-22 23:02:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:34 CET)\" (scheduled at 2026-01-22 23:02:34.010875+01:00)\n", - "2026-01-22 23:02:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:02:39,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:49,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:02:59,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:09,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:19,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:26 CET)\" (scheduled at 2026-01-22 23:03:26.633942+01:00)\n", - "2026-01-22 23:03:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:26 CET)\" executed successfully\n", - "2026-01-22 23:03:29,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:32 CET)\" (scheduled at 2026-01-22 23:03:32.132962+01:00)\n", - "2026-01-22 23:03:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:32 CET)\" executed successfully\n", - "2026-01-22 23:03:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:34 CET)\" (scheduled at 2026-01-22 23:03:34.010875+01:00)\n", - "2026-01-22 23:03:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:03:39,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:49,953 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:03:59,981 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:04:09,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:04:20,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:04:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:26 CET)\" (scheduled at 2026-01-22 23:04:26.633942+01:00)\n", - "2026-01-22 23:04:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:26 CET)\" executed successfully\n", - "2026-01-22 23:04:30,049 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:04:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:32 CET)\" (scheduled at 2026-01-22 23:04:32.132962+01:00)\n", - "2026-01-22 23:04:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:32 CET)\" executed successfully\n", - "2026-01-22 23:04:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:34 CET)\" (scheduled at 2026-01-22 23:04:34.010875+01:00)\n", - "2026-01-22 23:04:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:04:40,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:04:50,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:00,111 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:10,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:20,171 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:26 CET)\" (scheduled at 2026-01-22 23:05:26.633942+01:00)\n", - "2026-01-22 23:05:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:26 CET)\" executed successfully\n", - "2026-01-22 23:05:30,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:32 CET)\" (scheduled at 2026-01-22 23:05:32.132962+01:00)\n", - "2026-01-22 23:05:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:32 CET)\" executed successfully\n", - "2026-01-22 23:05:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:34 CET)\" (scheduled at 2026-01-22 23:05:34.010875+01:00)\n", - "2026-01-22 23:05:34,219 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:05:40,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:05:50,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:00,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:10,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:20,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:26 CET)\" (scheduled at 2026-01-22 23:06:26.633942+01:00)\n", - "2026-01-22 23:06:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:26 CET)\" executed successfully\n", - "2026-01-22 23:06:30,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:32 CET)\" (scheduled at 2026-01-22 23:06:32.132962+01:00)\n", - "2026-01-22 23:06:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:32 CET)\" executed successfully\n", - "2026-01-22 23:06:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:34 CET)\" (scheduled at 2026-01-22 23:06:34.010875+01:00)\n", - "2026-01-22 23:06:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:06:40,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:06:50,365 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:00,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:10,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:20,521 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:26 CET)\" (scheduled at 2026-01-22 23:07:26.633942+01:00)\n", - "2026-01-22 23:07:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:26 CET)\" executed successfully\n", - "2026-01-22 23:07:30,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:32,159 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:32 CET)\" (scheduled at 2026-01-22 23:07:32.132962+01:00)\n", - "2026-01-22 23:07:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:32 CET)\" executed successfully\n", - "2026-01-22 23:07:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:34 CET)\" (scheduled at 2026-01-22 23:07:34.010875+01:00)\n", - "2026-01-22 23:07:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:07:40,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:07:50,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:00,605 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:10,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:20,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:26,657 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:26 CET)\" (scheduled at 2026-01-22 23:08:26.633942+01:00)\n", - "2026-01-22 23:08:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:26 CET)\" executed successfully\n", - "2026-01-22 23:08:30,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:32 CET)\" (scheduled at 2026-01-22 23:08:32.132962+01:00)\n", - "2026-01-22 23:08:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:32 CET)\" executed successfully\n", - "2026-01-22 23:08:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:34 CET)\" (scheduled at 2026-01-22 23:08:34.010875+01:00)\n", - "2026-01-22 23:08:34,158 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:08:40,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:08:50,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:00,757 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:10,781 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:20,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:26 CET)\" (scheduled at 2026-01-22 23:09:26.633942+01:00)\n", - "2026-01-22 23:09:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:26 CET)\" executed successfully\n", - "2026-01-22 23:09:30,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:32 CET)\" (scheduled at 2026-01-22 23:09:32.132962+01:00)\n", - "2026-01-22 23:09:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:32 CET)\" executed successfully\n", - "2026-01-22 23:09:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:34 CET)\" (scheduled at 2026-01-22 23:09:34.010875+01:00)\n", - "2026-01-22 23:09:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:09:40,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:09:50,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:00,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:10,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:20,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:26 CET)\" (scheduled at 2026-01-22 23:10:26.633942+01:00)\n", - "2026-01-22 23:10:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:26 CET)\" executed successfully\n", - "2026-01-22 23:10:30,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:32 CET)\" (scheduled at 2026-01-22 23:10:32.132962+01:00)\n", - "2026-01-22 23:10:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:32 CET)\" executed successfully\n", - "2026-01-22 23:10:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:34 CET)\" (scheduled at 2026-01-22 23:10:34.010875+01:00)\n", - "2026-01-22 23:10:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:10:41,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:10:51,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:01,109 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:11,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:21,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:26 CET)\" (scheduled at 2026-01-22 23:11:26.633942+01:00)\n", - "2026-01-22 23:11:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:26 CET)\" executed successfully\n", - "2026-01-22 23:11:31,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:32 CET)\" (scheduled at 2026-01-22 23:11:32.132962+01:00)\n", - "2026-01-22 23:11:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:32 CET)\" executed successfully\n", - "2026-01-22 23:11:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:34 CET)\" (scheduled at 2026-01-22 23:11:34.010875+01:00)\n", - "2026-01-22 23:11:34,166 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:11:41,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:11:51,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:01,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:11,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:21,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:26 CET)\" (scheduled at 2026-01-22 23:12:26.633942+01:00)\n", - "2026-01-22 23:12:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:26 CET)\" executed successfully\n", - "2026-01-22 23:12:31,335 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:32 CET)\" (scheduled at 2026-01-22 23:12:32.132962+01:00)\n", - "2026-01-22 23:12:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:32 CET)\" executed successfully\n", - "2026-01-22 23:12:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:34 CET)\" (scheduled at 2026-01-22 23:12:34.010875+01:00)\n", - "2026-01-22 23:12:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:12:41,356 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:12:51,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:01,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:11,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:21,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:26 CET)\" (scheduled at 2026-01-22 23:13:26.633942+01:00)\n", - "2026-01-22 23:13:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:26 CET)\" executed successfully\n", - "2026-01-22 23:13:31,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:32 CET)\" (scheduled at 2026-01-22 23:13:32.132962+01:00)\n", - "2026-01-22 23:13:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:32 CET)\" executed successfully\n", - "2026-01-22 23:13:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:34 CET)\" (scheduled at 2026-01-22 23:13:34.010875+01:00)\n", - "2026-01-22 23:13:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:13:41,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:13:51,522 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:01,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:11,580 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:21,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:26 CET)\" (scheduled at 2026-01-22 23:14:26.633942+01:00)\n", - "2026-01-22 23:14:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:26 CET)\" executed successfully\n", - "2026-01-22 23:14:31,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:32 CET)\" (scheduled at 2026-01-22 23:14:32.132962+01:00)\n", - "2026-01-22 23:14:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:32 CET)\" executed successfully\n", - "2026-01-22 23:14:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:34 CET)\" (scheduled at 2026-01-22 23:14:34.010875+01:00)\n", - "2026-01-22 23:14:34,154 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:14:41,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:14:51,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:01,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:11,733 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:21,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:26 CET)\" (scheduled at 2026-01-22 23:15:26.633942+01:00)\n", - "2026-01-22 23:15:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:26 CET)\" executed successfully\n", - "2026-01-22 23:15:31,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:32 CET)\" (scheduled at 2026-01-22 23:15:32.132962+01:00)\n", - "2026-01-22 23:15:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:32 CET)\" executed successfully\n", - "2026-01-22 23:15:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:34 CET)\" (scheduled at 2026-01-22 23:15:34.010875+01:00)\n", - "2026-01-22 23:15:34,170 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:15:41,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:15:51,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:01,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:11,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:21,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:26 CET)\" (scheduled at 2026-01-22 23:16:26.633942+01:00)\n", - "2026-01-22 23:16:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:26 CET)\" executed successfully\n", - "2026-01-22 23:16:31,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:32 CET)\" (scheduled at 2026-01-22 23:16:32.132962+01:00)\n", - "2026-01-22 23:16:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:32 CET)\" executed successfully\n", - "2026-01-22 23:16:34,047 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:34 CET)\" (scheduled at 2026-01-22 23:16:34.010875+01:00)\n", - "2026-01-22 23:16:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:16:41,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:16:51,981 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:01,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:12,014 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:22,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:26 CET)\" (scheduled at 2026-01-22 23:17:26.633942+01:00)\n", - "2026-01-22 23:17:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:26 CET)\" executed successfully\n", - "2026-01-22 23:17:32,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:32,406 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:32 CET)\" (scheduled at 2026-01-22 23:17:32.132962+01:00)\n", - "2026-01-22 23:17:32,406 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:32 CET)\" executed successfully\n", - "2026-01-22 23:17:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:34 CET)\" (scheduled at 2026-01-22 23:17:34.010875+01:00)\n", - "2026-01-22 23:17:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:17:42,105 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:17:52,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:02,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:12,178 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:22,195 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:26,808 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:26 CET)\" (scheduled at 2026-01-22 23:18:26.633942+01:00)\n", - "2026-01-22 23:18:26,808 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:26 CET)\" executed successfully\n", - "2026-01-22 23:18:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:32 CET)\" (scheduled at 2026-01-22 23:18:32.132962+01:00)\n", - "2026-01-22 23:18:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:32 CET)\" executed successfully\n", - "2026-01-22 23:18:32,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:34 CET)\" (scheduled at 2026-01-22 23:18:34.010875+01:00)\n", - "2026-01-22 23:18:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:18:42,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:18:52,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:02,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:12,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:22,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:26 CET)\" (scheduled at 2026-01-22 23:19:26.633942+01:00)\n", - "2026-01-22 23:19:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:26 CET)\" executed successfully\n", - "2026-01-22 23:19:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:32 CET)\" (scheduled at 2026-01-22 23:19:32.132962+01:00)\n", - "2026-01-22 23:19:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:32 CET)\" executed successfully\n", - "2026-01-22 23:19:32,383 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:34 CET)\" (scheduled at 2026-01-22 23:19:34.010875+01:00)\n", - "2026-01-22 23:19:34,214 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:19:42,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:19:52,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:02,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:12,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:22,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:26 CET)\" (scheduled at 2026-01-22 23:20:26.633942+01:00)\n", - "2026-01-22 23:20:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:26 CET)\" executed successfully\n", - "2026-01-22 23:20:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:32 CET)\" (scheduled at 2026-01-22 23:20:32.132962+01:00)\n", - "2026-01-22 23:20:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:32 CET)\" executed successfully\n", - "2026-01-22 23:20:32,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:34,078 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:34 CET)\" (scheduled at 2026-01-22 23:20:34.010875+01:00)\n", - "2026-01-22 23:20:34,234 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:20:42,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:20:52,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:02,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:12,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:22,644 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:26 CET)\" (scheduled at 2026-01-22 23:21:26.633942+01:00)\n", - "2026-01-22 23:21:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:26 CET)\" executed successfully\n", - "2026-01-22 23:21:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:32 CET)\" (scheduled at 2026-01-22 23:21:32.132962+01:00)\n", - "2026-01-22 23:21:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:32 CET)\" executed successfully\n", - "2026-01-22 23:21:32,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:34,132 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:34 CET)\" (scheduled at 2026-01-22 23:21:34.010875+01:00)\n", - "2026-01-22 23:21:34,307 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:21:42,687 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:21:52,719 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:02,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:12,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:22,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:26,663 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:26 CET)\" (scheduled at 2026-01-22 23:22:26.633942+01:00)\n", - "2026-01-22 23:22:26,663 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:26 CET)\" executed successfully\n", - "2026-01-22 23:22:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:32 CET)\" (scheduled at 2026-01-22 23:22:32.132962+01:00)\n", - "2026-01-22 23:22:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:32 CET)\" executed successfully\n", - "2026-01-22 23:22:32,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:34 CET)\" (scheduled at 2026-01-22 23:22:34.010875+01:00)\n", - "2026-01-22 23:22:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:22:42,832 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:22:52,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:02,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:12,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:22,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:26 CET)\" (scheduled at 2026-01-22 23:23:26.633942+01:00)\n", - "2026-01-22 23:23:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:26 CET)\" executed successfully\n", - "2026-01-22 23:23:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:32 CET)\" (scheduled at 2026-01-22 23:23:32.132962+01:00)\n", - "2026-01-22 23:23:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:32 CET)\" executed successfully\n", - "2026-01-22 23:23:32,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:34,134 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:34 CET)\" (scheduled at 2026-01-22 23:23:34.010875+01:00)\n", - "2026-01-22 23:23:34,300 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:23:43,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:23:53,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:03,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:13,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:23,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:26,661 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:26 CET)\" (scheduled at 2026-01-22 23:24:26.633942+01:00)\n", - "2026-01-22 23:24:26,661 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:26 CET)\" executed successfully\n", - "2026-01-22 23:24:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:32 CET)\" (scheduled at 2026-01-22 23:24:32.132962+01:00)\n", - "2026-01-22 23:24:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:32 CET)\" executed successfully\n", - "2026-01-22 23:24:33,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:34 CET)\" (scheduled at 2026-01-22 23:24:34.010875+01:00)\n", - "2026-01-22 23:24:34,202 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:24:43,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:24:53,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:03,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:13,251 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:23,273 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:26 CET)\" (scheduled at 2026-01-22 23:25:26.633942+01:00)\n", - "2026-01-22 23:25:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:26 CET)\" executed successfully\n", - "2026-01-22 23:25:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:32 CET)\" (scheduled at 2026-01-22 23:25:32.132962+01:00)\n", - "2026-01-22 23:25:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:32 CET)\" executed successfully\n", - "2026-01-22 23:25:33,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:34 CET)\" (scheduled at 2026-01-22 23:25:34.010875+01:00)\n", - "2026-01-22 23:25:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:25:43,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:25:53,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:03,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:13,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:23,414 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:26 CET)\" (scheduled at 2026-01-22 23:26:26.633942+01:00)\n", - "2026-01-22 23:26:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:26 CET)\" executed successfully\n", - "2026-01-22 23:26:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:32 CET)\" (scheduled at 2026-01-22 23:26:32.132962+01:00)\n", - "2026-01-22 23:26:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:32 CET)\" executed successfully\n", - "2026-01-22 23:26:33,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:34 CET)\" (scheduled at 2026-01-22 23:26:34.010875+01:00)\n", - "2026-01-22 23:26:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:26:43,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:26:53,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:03,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:13,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:23,547 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:26 CET)\" (scheduled at 2026-01-22 23:27:26.633942+01:00)\n", - "2026-01-22 23:27:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:26 CET)\" executed successfully\n", - "2026-01-22 23:27:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:32 CET)\" (scheduled at 2026-01-22 23:27:32.132962+01:00)\n", - "2026-01-22 23:27:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:32 CET)\" executed successfully\n", - "2026-01-22 23:27:33,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:34 CET)\" (scheduled at 2026-01-22 23:27:34.010875+01:00)\n", - "2026-01-22 23:27:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:27:43,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:27:53,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:03,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:13,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:23,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:26,721 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:26 CET)\" (scheduled at 2026-01-22 23:28:26.633942+01:00)\n", - "2026-01-22 23:28:26,721 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:26 CET)\" executed successfully\n", - "2026-01-22 23:28:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:32 CET)\" (scheduled at 2026-01-22 23:28:32.132962+01:00)\n", - "2026-01-22 23:28:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:32 CET)\" executed successfully\n", - "2026-01-22 23:28:33,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:34 CET)\" (scheduled at 2026-01-22 23:28:34.010875+01:00)\n", - "2026-01-22 23:28:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:28:43,736 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:28:53,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:03,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:13,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:23,843 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:26 CET)\" (scheduled at 2026-01-22 23:29:26.633942+01:00)\n", - "2026-01-22 23:29:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:26 CET)\" executed successfully\n", - "2026-01-22 23:29:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:32 CET)\" (scheduled at 2026-01-22 23:29:32.132962+01:00)\n", - "2026-01-22 23:29:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:32 CET)\" executed successfully\n", - "2026-01-22 23:29:33,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:34 CET)\" (scheduled at 2026-01-22 23:29:34.010875+01:00)\n", - "2026-01-22 23:29:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:29:43,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:29:53,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:00,013 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 00:00:00 CET)\" (scheduled at 2026-01-22 23:30:00+01:00)\n", - "2026-01-22 23:30:00,013 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 00:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 23:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.38 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:30:03,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:13,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:23,986 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:26 CET)\" (scheduled at 2026-01-22 23:30:26.633942+01:00)\n", - "2026-01-22 23:30:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:26 CET)\" executed successfully\n", - "2026-01-22 23:30:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:32 CET)\" (scheduled at 2026-01-22 23:30:32.132962+01:00)\n", - "2026-01-22 23:30:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:32 CET)\" executed successfully\n", - "2026-01-22 23:30:34,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:34 CET)\" (scheduled at 2026-01-22 23:30:34.010875+01:00)\n", - "2026-01-22 23:30:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:30:44,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:30:54,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:04,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:14,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:24,121 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:26,723 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:26 CET)\" (scheduled at 2026-01-22 23:31:26.633942+01:00)\n", - "2026-01-22 23:31:26,723 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:26 CET)\" executed successfully\n", - "2026-01-22 23:31:32,159 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:32 CET)\" (scheduled at 2026-01-22 23:31:32.132962+01:00)\n", - "2026-01-22 23:31:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:32 CET)\" executed successfully\n", - "2026-01-22 23:31:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:34 CET)\" (scheduled at 2026-01-22 23:31:34.010875+01:00)\n", - "2026-01-22 23:31:34,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:34,260 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:31:44,247 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:31:54,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:04,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:14,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:24,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:26,718 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:26 CET)\" (scheduled at 2026-01-22 23:32:26.633942+01:00)\n", - "2026-01-22 23:32:26,718 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:26 CET)\" executed successfully\n", - "2026-01-22 23:32:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:32 CET)\" (scheduled at 2026-01-22 23:32:32.132962+01:00)\n", - "2026-01-22 23:32:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:32 CET)\" executed successfully\n", - "2026-01-22 23:32:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:34 CET)\" (scheduled at 2026-01-22 23:32:34.010875+01:00)\n", - "2026-01-22 23:32:34,205 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:32:34,365 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:44,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:32:54,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:04,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:14,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:24,473 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:26 CET)\" (scheduled at 2026-01-22 23:33:26.633942+01:00)\n", - "2026-01-22 23:33:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:26 CET)\" executed successfully\n", - "2026-01-22 23:33:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:32 CET)\" (scheduled at 2026-01-22 23:33:32.132962+01:00)\n", - "2026-01-22 23:33:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:32 CET)\" executed successfully\n", - "2026-01-22 23:33:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:34 CET)\" (scheduled at 2026-01-22 23:33:34.010875+01:00)\n", - "2026-01-22 23:33:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:33:34,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:44,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:33:54,534 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:04,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:14,580 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:24,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:26 CET)\" (scheduled at 2026-01-22 23:34:26.633942+01:00)\n", - "2026-01-22 23:34:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:26 CET)\" executed successfully\n", - "2026-01-22 23:34:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:32 CET)\" (scheduled at 2026-01-22 23:34:32.132962+01:00)\n", - "2026-01-22 23:34:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:32 CET)\" executed successfully\n", - "2026-01-22 23:34:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:34 CET)\" (scheduled at 2026-01-22 23:34:34.010875+01:00)\n", - "2026-01-22 23:34:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:34:34,640 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:44,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:34:54,676 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:04,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:14,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:24,754 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:26 CET)\" (scheduled at 2026-01-22 23:35:26.633942+01:00)\n", - "2026-01-22 23:35:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:26 CET)\" executed successfully\n", - "2026-01-22 23:35:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:32 CET)\" (scheduled at 2026-01-22 23:35:32.132962+01:00)\n", - "2026-01-22 23:35:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:32 CET)\" executed successfully\n", - "2026-01-22 23:35:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:34 CET)\" (scheduled at 2026-01-22 23:35:34.010875+01:00)\n", - "2026-01-22 23:35:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:35:34,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:44,788 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:35:54,815 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:04,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:14,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:24,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:26 CET)\" (scheduled at 2026-01-22 23:36:26.633942+01:00)\n", - "2026-01-22 23:36:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:26 CET)\" executed successfully\n", - "2026-01-22 23:36:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:32 CET)\" (scheduled at 2026-01-22 23:36:32.132962+01:00)\n", - "2026-01-22 23:36:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:32 CET)\" executed successfully\n", - "2026-01-22 23:36:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:34 CET)\" (scheduled at 2026-01-22 23:36:34.010875+01:00)\n", - "2026-01-22 23:36:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:36:34,904 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:44,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:36:54,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:04,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:14,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:25,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:26 CET)\" (scheduled at 2026-01-22 23:37:26.633942+01:00)\n", - "2026-01-22 23:37:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:26 CET)\" executed successfully\n", - "2026-01-22 23:37:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:32 CET)\" (scheduled at 2026-01-22 23:37:32.132962+01:00)\n", - "2026-01-22 23:37:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:32 CET)\" executed successfully\n", - "2026-01-22 23:37:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:34 CET)\" (scheduled at 2026-01-22 23:37:34.010875+01:00)\n", - "2026-01-22 23:37:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:37:35,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:45,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:37:55,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:05,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:15,142 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:25,163 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:26,675 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:26 CET)\" (scheduled at 2026-01-22 23:38:26.633942+01:00)\n", - "2026-01-22 23:38:26,690 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:26 CET)\" executed successfully\n", - "2026-01-22 23:38:32,162 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:32 CET)\" (scheduled at 2026-01-22 23:38:32.132962+01:00)\n", - "2026-01-22 23:38:32,162 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:32 CET)\" executed successfully\n", - "2026-01-22 23:38:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:34 CET)\" (scheduled at 2026-01-22 23:38:34.010875+01:00)\n", - "2026-01-22 23:38:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:38:35,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:45,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:38:55,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:05,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:15,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:25,299 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:27,105 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:26 CET)\" (scheduled at 2026-01-22 23:39:26.633942+01:00)\n", - "2026-01-22 23:39:27,105 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:26 CET)\" executed successfully\n", - "2026-01-22 23:39:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:32 CET)\" (scheduled at 2026-01-22 23:39:32.132962+01:00)\n", - "2026-01-22 23:39:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:32 CET)\" executed successfully\n", - "2026-01-22 23:39:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:34 CET)\" (scheduled at 2026-01-22 23:39:34.010875+01:00)\n", - "2026-01-22 23:39:34,170 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:39:34,817 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 00:39:34 CET)\" (scheduled at 2026-01-22 23:39:34.806528+01:00)\n", - "2026-01-22 23:39:34,817 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 00:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[23:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:39:35,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:45,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:39:55,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:05,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:15,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:25,521 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:26 CET)\" (scheduled at 2026-01-22 23:40:26.633942+01:00)\n", - "2026-01-22 23:40:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:26 CET)\" executed successfully\n", - "2026-01-22 23:40:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:32 CET)\" (scheduled at 2026-01-22 23:40:32.132962+01:00)\n", - "2026-01-22 23:40:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:32 CET)\" executed successfully\n", - "2026-01-22 23:40:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:34 CET)\" (scheduled at 2026-01-22 23:40:34.010875+01:00)\n", - "2026-01-22 23:40:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:40:35,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:45,569 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:40:55,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:05,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:15,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:25,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:26,693 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:26 CET)\" (scheduled at 2026-01-22 23:41:26.633942+01:00)\n", - "2026-01-22 23:41:26,693 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:26 CET)\" executed successfully\n", - "2026-01-22 23:41:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:32 CET)\" (scheduled at 2026-01-22 23:41:32.132962+01:00)\n", - "2026-01-22 23:41:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:32 CET)\" executed successfully\n", - "2026-01-22 23:41:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:34 CET)\" (scheduled at 2026-01-22 23:41:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:41:34,225 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:41:35,691 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:45,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:41:55,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:05,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:15,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:25,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:26 CET)\" (scheduled at 2026-01-22 23:42:26.633942+01:00)\n", - "2026-01-22 23:42:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:26 CET)\" executed successfully\n", - "2026-01-22 23:42:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:32 CET)\" (scheduled at 2026-01-22 23:42:32.132962+01:00)\n", - "2026-01-22 23:42:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:32 CET)\" executed successfully\n", - "2026-01-22 23:42:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:34 CET)\" (scheduled at 2026-01-22 23:42:34.010875+01:00)\n", - "2026-01-22 23:42:34,157 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:42:35,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:45,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:42:55,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:05,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:15,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:25,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:26 CET)\" (scheduled at 2026-01-22 23:43:26.633942+01:00)\n", - "2026-01-22 23:43:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:26 CET)\" executed successfully\n", - "2026-01-22 23:43:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:32 CET)\" (scheduled at 2026-01-22 23:43:32.132962+01:00)\n", - "2026-01-22 23:43:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:32 CET)\" executed successfully\n", - "2026-01-22 23:43:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:34 CET)\" (scheduled at 2026-01-22 23:43:34.010875+01:00)\n", - "2026-01-22 23:43:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:43:35,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:45,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:43:56,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:06,038 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:16,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:26,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:26 CET)\" (scheduled at 2026-01-22 23:44:26.633942+01:00)\n", - "2026-01-22 23:44:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:26 CET)\" executed successfully\n", - "2026-01-22 23:44:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:32 CET)\" (scheduled at 2026-01-22 23:44:32.132962+01:00)\n", - "2026-01-22 23:44:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:32 CET)\" executed successfully\n", - "2026-01-22 23:44:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:34 CET)\" (scheduled at 2026-01-22 23:44:34.010875+01:00)\n", - "2026-01-22 23:44:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:44:36,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:46,121 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:44:56,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:06,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:16,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:26,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:26 CET)\" (scheduled at 2026-01-22 23:45:26.633942+01:00)\n", - "2026-01-22 23:45:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:26 CET)\" executed successfully\n", - "2026-01-22 23:45:32,189 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:32 CET)\" (scheduled at 2026-01-22 23:45:32.132962+01:00)\n", - "2026-01-22 23:45:32,189 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:32 CET)\" executed successfully\n", - "2026-01-22 23:45:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:34 CET)\" (scheduled at 2026-01-22 23:45:34.010875+01:00)\n", - "2026-01-22 23:45:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:45:36,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:46,267 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:45:56,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:06,319 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:16,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:26,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:26 CET)\" (scheduled at 2026-01-22 23:46:26.633942+01:00)\n", - "2026-01-22 23:46:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:26 CET)\" executed successfully\n", - "2026-01-22 23:46:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:32 CET)\" (scheduled at 2026-01-22 23:46:32.132962+01:00)\n", - "2026-01-22 23:46:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:32 CET)\" executed successfully\n", - "2026-01-22 23:46:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:34 CET)\" (scheduled at 2026-01-22 23:46:34.010875+01:00)\n", - "2026-01-22 23:46:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:46:36,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:46,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:46:56,423 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:06,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:16,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:26,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:26 CET)\" (scheduled at 2026-01-22 23:47:26.633942+01:00)\n", - "2026-01-22 23:47:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:26 CET)\" executed successfully\n", - "2026-01-22 23:47:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:32 CET)\" (scheduled at 2026-01-22 23:47:32.132962+01:00)\n", - "2026-01-22 23:47:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:32 CET)\" executed successfully\n", - "2026-01-22 23:47:34,078 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:34 CET)\" (scheduled at 2026-01-22 23:47:34.010875+01:00)\n", - "2026-01-22 23:47:34,250 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:47:36,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:46,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:47:56,573 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:06,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:16,610 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:26,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:26,655 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:26 CET)\" (scheduled at 2026-01-22 23:48:26.633942+01:00)\n", - "2026-01-22 23:48:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:26 CET)\" executed successfully\n", - "2026-01-22 23:48:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:32 CET)\" (scheduled at 2026-01-22 23:48:32.132962+01:00)\n", - "2026-01-22 23:48:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:32 CET)\" executed successfully\n", - "2026-01-22 23:48:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:34 CET)\" (scheduled at 2026-01-22 23:48:34.010875+01:00)\n", - "2026-01-22 23:48:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:48:36,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:46,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:48:56,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:06,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:16,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:26 CET)\" (scheduled at 2026-01-22 23:49:26.633942+01:00)\n", - "2026-01-22 23:49:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:26 CET)\" executed successfully\n", - "2026-01-22 23:49:26,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:32 CET)\" (scheduled at 2026-01-22 23:49:32.132962+01:00)\n", - "2026-01-22 23:49:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:32 CET)\" executed successfully\n", - "2026-01-22 23:49:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:34 CET)\" (scheduled at 2026-01-22 23:49:34.010875+01:00)\n", - "2026-01-22 23:49:34,165 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:49:36,813 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:46,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:49:56,857 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:06,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:16,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:26 CET)\" (scheduled at 2026-01-22 23:50:26.633942+01:00)\n", - "2026-01-22 23:50:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:26 CET)\" executed successfully\n", - "2026-01-22 23:50:26,936 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:32 CET)\" (scheduled at 2026-01-22 23:50:32.132962+01:00)\n", - "2026-01-22 23:50:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:32 CET)\" executed successfully\n", - "2026-01-22 23:50:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:34 CET)\" (scheduled at 2026-01-22 23:50:34.010875+01:00)\n", - "2026-01-22 23:50:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:50:36,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:46,970 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:50:57,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:07,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:17,047 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:26,701 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:26 CET)\" (scheduled at 2026-01-22 23:51:26.633942+01:00)\n", - "2026-01-22 23:51:26,701 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:26 CET)\" executed successfully\n", - "2026-01-22 23:51:27,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:32 CET)\" (scheduled at 2026-01-22 23:51:32.132962+01:00)\n", - "2026-01-22 23:51:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:32 CET)\" executed successfully\n", - "2026-01-22 23:51:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:34 CET)\" (scheduled at 2026-01-22 23:51:34.010875+01:00)\n", - "2026-01-22 23:51:34,143 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:51:37,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:47,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:51:57,140 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:07,153 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:17,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:26 CET)\" (scheduled at 2026-01-22 23:52:26.633942+01:00)\n", - "2026-01-22 23:52:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:26 CET)\" executed successfully\n", - "2026-01-22 23:52:27,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:32 CET)\" (scheduled at 2026-01-22 23:52:32.132962+01:00)\n", - "2026-01-22 23:52:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:32 CET)\" executed successfully\n", - "2026-01-22 23:52:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:34 CET)\" (scheduled at 2026-01-22 23:52:34.010875+01:00)\n", - "2026-01-22 23:52:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:52:37,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:47,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:52:57,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:07,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:17,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:26 CET)\" (scheduled at 2026-01-22 23:53:26.633942+01:00)\n", - "2026-01-22 23:53:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:26 CET)\" executed successfully\n", - "2026-01-22 23:53:27,348 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:32 CET)\" (scheduled at 2026-01-22 23:53:32.132962+01:00)\n", - "2026-01-22 23:53:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:32 CET)\" executed successfully\n", - "2026-01-22 23:53:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:34 CET)\" (scheduled at 2026-01-22 23:53:34.010875+01:00)\n", - "2026-01-22 23:53:34,224 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:53:37,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:47,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:53:57,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:07,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:17,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:26,763 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:26 CET)\" (scheduled at 2026-01-22 23:54:26.633942+01:00)\n", - "2026-01-22 23:54:26,763 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:26 CET)\" executed successfully\n", - "2026-01-22 23:54:27,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:32 CET)\" (scheduled at 2026-01-22 23:54:32.132962+01:00)\n", - "2026-01-22 23:54:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:32 CET)\" executed successfully\n", - "2026-01-22 23:54:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:34 CET)\" (scheduled at 2026-01-22 23:54:34.010875+01:00)\n", - "2026-01-22 23:54:34,159 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:54:37,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:47,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:54:57,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:07,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:17,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:26 CET)\" (scheduled at 2026-01-22 23:55:26.633942+01:00)\n", - "2026-01-22 23:55:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:26 CET)\" executed successfully\n", - "2026-01-22 23:55:27,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:32 CET)\" (scheduled at 2026-01-22 23:55:32.132962+01:00)\n", - "2026-01-22 23:55:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:32 CET)\" executed successfully\n", - "2026-01-22 23:55:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:34 CET)\" (scheduled at 2026-01-22 23:55:34.010875+01:00)\n", - "2026-01-22 23:55:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:55:37,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:47,705 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:55:57,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:07,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:17,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:26 CET)\" (scheduled at 2026-01-22 23:56:26.633942+01:00)\n", - "2026-01-22 23:56:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:26 CET)\" executed successfully\n", - "2026-01-22 23:56:27,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:32 CET)\" (scheduled at 2026-01-22 23:56:32.132962+01:00)\n", - "2026-01-22 23:56:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:32 CET)\" executed successfully\n", - "2026-01-22 23:56:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:34 CET)\" (scheduled at 2026-01-22 23:56:34.010875+01:00)\n", - "2026-01-22 23:56:34,156 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:56:37,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:47,840 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:56:57,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:07,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:17,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:26 CET)\" (scheduled at 2026-01-22 23:57:26.633942+01:00)\n", - "2026-01-22 23:57:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:26 CET)\" executed successfully\n", - "2026-01-22 23:57:28,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:32 CET)\" (scheduled at 2026-01-22 23:57:32.132962+01:00)\n", - "2026-01-22 23:57:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:32 CET)\" executed successfully\n", - "2026-01-22 23:57:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:34 CET)\" (scheduled at 2026-01-22 23:57:34.010875+01:00)\n", - "2026-01-22 23:57:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:57:38,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:48,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:57:58,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:08,115 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:18,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:26 CET)\" (scheduled at 2026-01-22 23:58:26.633942+01:00)\n", - "2026-01-22 23:58:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:26 CET)\" executed successfully\n", - "2026-01-22 23:58:28,153 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:32 CET)\" (scheduled at 2026-01-22 23:58:32.132962+01:00)\n", - "2026-01-22 23:58:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:32 CET)\" executed successfully\n", - "2026-01-22 23:58:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:34 CET)\" (scheduled at 2026-01-22 23:58:34.010875+01:00)\n", - "2026-01-22 23:58:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 23:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:58:38,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:48,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:58:58,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:08,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:18,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:26 CET)\" (scheduled at 2026-01-22 23:59:26.633942+01:00)\n", - "2026-01-22 23:59:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:26 CET)\" executed successfully\n", - "2026-01-22 23:59:28,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:32 CET)\" (scheduled at 2026-01-22 23:59:32.132962+01:00)\n", - "2026-01-22 23:59:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:32 CET)\" executed successfully\n", - "2026-01-22 23:59:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:34 CET)\" (scheduled at 2026-01-22 23:59:34.010875+01:00)\n", - "2026-01-22 23:59:34,148 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 31%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 704.14 | 92.7816 | 9.79969 | 4936.24 |\n", - "| H4 | uptrend | 430.19 | 45.3792 | 2.92825 | 4936.24 |\n", - "| H1 | uptrend | 585.04 | 24.2148 | 2.12499 | 4936.24 |\n", - "| M30 | uptrend | 645.81 | 15.0017 | 1.45323 | 4936.24 |\n", - "| M15 | uptrend | 174.61 | 9.6618 | 0.253051 | 4936.24 |\n", - "| M5 | uptrend | 1289.71 | 4.7108 | 0.911337 | 4936.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 594.56)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231689.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-22 23:59:38,324 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:48,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-22 23:59:58,375 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:00,016 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 00:30:00 CET)\" (scheduled at 2026-01-23 00:00:00+01:00)\n", - "2026-01-23 00:00:00,016 - INFO - Running job \" (trigger: cron[hour='0'], next run at: 2026-01-24 00:00:00 CET)\" (scheduled at 2026-01-23 00:00:00+01:00)\n", - "2026-01-23 00:00:00,016 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 00:30:00 CET)\" executed successfully\n", - "2026-01-23 00:00:00,072 - INFO - Job \" (trigger: cron[hour='0'], next run at: 2026-01-24 00:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 00:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.38 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n", - "\n", - "======================================================================\n", - "πŸ”„ AUTO-OPTIMIZATION STARTED - 2026-01-23 00:00:00\n", - "======================================================================\n", - "\n", - "ASIAN : 60% β†’ 60% ➑️ | WR: 90.0% (20 trades)\n", - "NY : 60% β†’ 60% ➑️ | WR: 100.0% (20 trades)\n", - "LONDON : 80% β†’ 90% πŸ”Ό | WR: 46.2% (13 trades)\n", - "OVERLAP : 70% β†’ 70% ➑️ | WR: 33.3% (9 trades)\n", - "βœ… Thresholds saved to: dynamic_thresholds.json\n", - "\n", - "βœ… Changes applied and saved!\n", - "\n", - "======================================================================\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:00:08,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:18,436 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:26 CET)\" (scheduled at 2026-01-23 00:00:26.633942+01:00)\n", - "2026-01-23 00:00:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:26 CET)\" executed successfully\n", - "2026-01-23 00:00:28,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:32 CET)\" (scheduled at 2026-01-23 00:00:32.132962+01:00)\n", - "2026-01-23 00:00:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:32 CET)\" executed successfully\n", - "2026-01-23 00:00:34,043 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:34 CET)\" (scheduled at 2026-01-23 00:00:34.010875+01:00)\n", - "2026-01-23 00:00:34,268 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 765.46 | 86.5993 | 9.94323 | 4940.71 |\n", - "| H4 | uptrend | 468.57 | 42.5828 | 2.99297 | 4940.71 |\n", - "| H1 | uptrend | 630.56 | 22.9302 | 2.16882 | 4940.73 |\n", - "| M30 | uptrend | 676.94 | 14.3751 | 1.45965 | 4940.73 |\n", - "| M15 | uptrend | 199.19 | 9.4167 | 0.281355 | 4940.73 |\n", - "| M5 | uptrend | 1270.49 | 4.8193 | 0.918436 | 4941.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 646.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244651.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:00:38,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:48,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:00:58,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:08,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:18,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:26 CET)\" (scheduled at 2026-01-23 00:01:26.633942+01:00)\n", - "2026-01-23 00:01:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:26 CET)\" executed successfully\n", - "2026-01-23 00:01:28,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:32 CET)\" (scheduled at 2026-01-23 00:01:32.132962+01:00)\n", - "2026-01-23 00:01:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:32 CET)\" executed successfully\n", - "2026-01-23 00:01:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:34 CET)\" (scheduled at 2026-01-23 00:01:34.010875+01:00)\n", - "2026-01-23 00:01:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 763.16 | 86.8715 | 9.94453 | 4946.22 |\n", - "| H4 | uptrend | 465.8 | 42.855 | 2.99427 | 4946.21 |\n", - "| H1 | uptrend | 623.53 | 23.2024 | 2.17012 | 4946.21 |\n", - "| M30 | uptrend | 664.95 | 14.6473 | 1.46095 | 4946.21 |\n", - "| M15 | uptrend | 194.48 | 9.6888 | 0.282649 | 4946.21 |\n", - "| M5 | uptrend | 1204.17 | 5.0915 | 0.91965 | 4946.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 644.22)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239806.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:01:38,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:48,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:01:58,705 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:08,725 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:18,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:26 CET)\" (scheduled at 2026-01-23 00:02:26.633942+01:00)\n", - "2026-01-23 00:02:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:26 CET)\" executed successfully\n", - "2026-01-23 00:02:28,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:32 CET)\" (scheduled at 2026-01-23 00:02:32.132962+01:00)\n", - "2026-01-23 00:02:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:32 CET)\" executed successfully\n", - "2026-01-23 00:02:34,060 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:34 CET)\" (scheduled at 2026-01-23 00:02:34.010875+01:00)\n", - "2026-01-23 00:02:34,224 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 762.32 | 86.9672 | 9.94453 | 4946.22 |\n", - "| H4 | uptrend | 464.76 | 42.9507 | 2.99427 | 4946.22 |\n", - "| H1 | uptrend | 620.97 | 23.2981 | 2.17012 | 4946.23 |\n", - "| M30 | uptrend | 660.63 | 14.743 | 1.46096 | 4946.23 |\n", - "| M15 | uptrend | 192.59 | 9.7846 | 0.282654 | 4946.23 |\n", - "| M5 | uptrend | 1181.96 | 5.1872 | 0.919655 | 4946.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238110.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:02:38,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:48,827 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:02:58,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:08,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:18,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:26 CET)\" (scheduled at 2026-01-23 00:03:26.633942+01:00)\n", - "2026-01-23 00:03:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:26 CET)\" executed successfully\n", - "2026-01-23 00:03:28,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:32 CET)\" (scheduled at 2026-01-23 00:03:32.132962+01:00)\n", - "2026-01-23 00:03:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:32 CET)\" executed successfully\n", - "2026-01-23 00:03:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:34 CET)\" (scheduled at 2026-01-23 00:03:34.010875+01:00)\n", - "2026-01-23 00:03:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 762.34 | 86.9672 | 9.94476 | 4947.19 |\n", - "| H4 | uptrend | 464.8 | 42.9507 | 2.9945 | 4947.19 |\n", - "| H1 | uptrend | 621.04 | 23.2981 | 2.17035 | 4947.19 |\n", - "| M30 | uptrend | 660.73 | 14.743 | 1.46118 | 4947.19 |\n", - "| M15 | uptrend | 192.74 | 9.7846 | 0.282881 | 4947.19 |\n", - "| M5 | uptrend | 1182.25 | 5.1872 | 0.919882 | 4947.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238149.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:03:38,958 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:48,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:03:59,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:09,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:19,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:26 CET)\" (scheduled at 2026-01-23 00:04:26.633942+01:00)\n", - "2026-01-23 00:04:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:26 CET)\" executed successfully\n", - "2026-01-23 00:04:29,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:32 CET)\" (scheduled at 2026-01-23 00:04:32.132962+01:00)\n", - "2026-01-23 00:04:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:32 CET)\" executed successfully\n", - "2026-01-23 00:04:34,070 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:34 CET)\" (scheduled at 2026-01-23 00:04:34.010875+01:00)\n", - "2026-01-23 00:04:34,259 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 759.54 | 87.2951 | 9.94568 | 4951.06 |\n", - "| H4 | uptrend | 461.42 | 43.2785 | 2.99542 | 4951.06 |\n", - "| H1 | uptrend | 612.68 | 23.6259 | 2.17126 | 4951.06 |\n", - "| M30 | uptrend | 646.77 | 15.0709 | 1.4621 | 4951.06 |\n", - "| M15 | uptrend | 187.09 | 10.1124 | 0.283795 | 4951.06 |\n", - "| M5 | uptrend | 1113.07 | 5.515 | 0.920799 | 4951.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232787.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:04:39,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:49,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:04:59,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:09,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:19,268 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:26 CET)\" (scheduled at 2026-01-23 00:05:26.633942+01:00)\n", - "2026-01-23 00:05:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:26 CET)\" executed successfully\n", - "2026-01-23 00:05:29,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:32 CET)\" (scheduled at 2026-01-23 00:05:32.132962+01:00)\n", - "2026-01-23 00:05:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:32 CET)\" executed successfully\n", - "2026-01-23 00:05:34,392 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:34 CET)\" (scheduled at 2026-01-23 00:05:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 759.43 | 87.3079 | 9.94566 | 4951 |\n", - "| H4 | uptrend | 461.28 | 43.2914 | 2.9954 | 4951 |\n", - "| H1 | uptrend | 612.34 | 23.6388 | 2.17125 | 4951 |\n", - "| M30 | uptrend | 646.21 | 15.0837 | 1.46208 | 4951 |\n", - "| M15 | uptrend | 186.85 | 10.1253 | 0.283781 | 4951 |\n", - "| M5 | uptrend | 1174.94 | 5.273 | 0.929323 | 4951 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235155.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:05:34,596 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:05:39,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:49,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:05:59,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:09,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:19,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:26 CET)\" (scheduled at 2026-01-23 00:06:26.633942+01:00)\n", - "2026-01-23 00:06:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:26 CET)\" executed successfully\n", - "2026-01-23 00:06:29,440 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:32 CET)\" (scheduled at 2026-01-23 00:06:32.132962+01:00)\n", - "2026-01-23 00:06:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:32 CET)\" executed successfully\n", - "2026-01-23 00:06:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:34 CET)\" (scheduled at 2026-01-23 00:06:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 759.44 | 87.3079 | 9.94582 | 4951.68 |\n", - "| H4 | uptrend | 461.3 | 43.2914 | 2.99556 | 4951.68 |\n", - "| H1 | uptrend | 612.39 | 23.6388 | 2.17141 | 4951.68 |\n", - "| M30 | uptrend | 646.28 | 15.0837 | 1.46224 | 4951.68 |\n", - "| M15 | uptrend | 186.95 | 10.1253 | 0.283942 | 4951.68 |\n", - "| M5 | uptrend | 1175.14 | 5.273 | 0.929483 | 4951.68 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235182.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:06:34,243 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:06:39,458 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:49,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:06:59,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:09,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:19,553 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:26,740 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:26 CET)\" (scheduled at 2026-01-23 00:07:26.633942+01:00)\n", - "2026-01-23 00:07:26,740 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:26 CET)\" executed successfully\n", - "2026-01-23 00:07:29,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:32 CET)\" (scheduled at 2026-01-23 00:07:32.132962+01:00)\n", - "2026-01-23 00:07:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:32 CET)\" executed successfully\n", - "2026-01-23 00:07:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:34 CET)\" (scheduled at 2026-01-23 00:07:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:07:34,243 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 759.45 | 87.3079 | 9.94587 | 4951.87 |\n", - "| H4 | uptrend | 461.31 | 43.2914 | 2.99561 | 4951.87 |\n", - "| H1 | uptrend | 612.4 | 23.6388 | 2.17145 | 4951.88 |\n", - "| M30 | uptrend | 646.3 | 15.0837 | 1.4623 | 4951.92 |\n", - "| M15 | uptrend | 186.99 | 10.1253 | 0.283999 | 4951.92 |\n", - "| M5 | uptrend | 1174.76 | 5.2752 | 0.929561 | 4952.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235173.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:07:39,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:49,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:07:59,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:09,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:19,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:26 CET)\" (scheduled at 2026-01-23 00:08:26.633942+01:00)\n", - "2026-01-23 00:08:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:26 CET)\" executed successfully\n", - "2026-01-23 00:08:29,731 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:32 CET)\" (scheduled at 2026-01-23 00:08:32.132962+01:00)\n", - "2026-01-23 00:08:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:32 CET)\" executed successfully\n", - "2026-01-23 00:08:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:34 CET)\" (scheduled at 2026-01-23 00:08:34.010875+01:00)\n", - "2026-01-23 00:08:34,242 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 756.2 | 87.6951 | 9.94727 | 4957.8 |\n", - "| H4 | uptrend | 457.43 | 43.6785 | 2.99701 | 4957.8 |\n", - "| H1 | uptrend | 602.92 | 24.0259 | 2.17285 | 4957.77 |\n", - "| M30 | uptrend | 630.73 | 15.4709 | 1.46368 | 4957.77 |\n", - "| M15 | uptrend | 180.98 | 10.5124 | 0.285381 | 4957.77 |\n", - "| M5 | uptrend | 1093.01 | 5.678 | 0.930922 | 4957.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228998.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:08:39,754 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:49,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:08:59,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:09,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:19,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:26 CET)\" (scheduled at 2026-01-23 00:09:26.633942+01:00)\n", - "2026-01-23 00:09:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:26 CET)\" executed successfully\n", - "2026-01-23 00:09:29,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:32 CET)\" (scheduled at 2026-01-23 00:09:32.132962+01:00)\n", - "2026-01-23 00:09:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:32 CET)\" executed successfully\n", - "2026-01-23 00:09:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:34 CET)\" (scheduled at 2026-01-23 00:09:34.010875+01:00)\n", - "2026-01-23 00:09:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 755.6 | 87.7579 | 9.94647 | 4954.43 |\n", - "| H4 | uptrend | 456.66 | 43.7414 | 2.99621 | 4954.43 |\n", - "| H1 | uptrend | 601.12 | 24.0888 | 2.17205 | 4954.39 |\n", - "| M30 | uptrend | 627.83 | 15.5337 | 1.46288 | 4954.39 |\n", - "| M15 | uptrend | 179.4 | 10.5753 | 0.284585 | 4954.4 |\n", - "| M5 | uptrend | 1080.12 | 5.7409 | 0.930126 | 4954.4 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227909.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:09:39,896 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:49,925 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:09:59,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:10:09,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:10:20,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:10:26,698 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:26 CET)\" (scheduled at 2026-01-23 00:10:26.633942+01:00)\n", - "2026-01-23 00:10:26,698 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:26 CET)\" executed successfully\n", - "2026-01-23 00:10:30,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:10:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:32 CET)\" (scheduled at 2026-01-23 00:10:32.132962+01:00)\n", - "2026-01-23 00:10:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:32 CET)\" executed successfully\n", - "2026-01-23 00:10:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:34 CET)\" (scheduled at 2026-01-23 00:10:34.010875+01:00)\n", - "2026-01-23 00:10:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 755.63 | 87.7579 | 9.94691 | 4956.27 |\n", - "| H4 | uptrend | 456.72 | 43.7414 | 2.99665 | 4956.27 |\n", - "| H1 | uptrend | 601.25 | 24.0888 | 2.17249 | 4956.27 |\n", - "| M30 | uptrend | 628.02 | 15.5337 | 1.46333 | 4956.27 |\n", - "| M15 | uptrend | 179.68 | 10.5753 | 0.285026 | 4956.27 |\n", - "| M5 | uptrend | 1137.55 | 5.503 | 0.938988 | 4956.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230256.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:10:40,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:10:50,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:00,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:10,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:20,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:26 CET)\" (scheduled at 2026-01-23 00:11:26.633942+01:00)\n", - "2026-01-23 00:11:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:26 CET)\" executed successfully\n", - "2026-01-23 00:11:30,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:32 CET)\" (scheduled at 2026-01-23 00:11:32.132962+01:00)\n", - "2026-01-23 00:11:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:32 CET)\" executed successfully\n", - "2026-01-23 00:11:34,044 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:34 CET)\" (scheduled at 2026-01-23 00:11:34.010875+01:00)\n", - "2026-01-23 00:11:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.89 | 87.8422 | 9.94669 | 4955.36 |\n", - "| H4 | uptrend | 455.81 | 43.8257 | 2.99643 | 4955.36 |\n", - "| H1 | uptrend | 599.09 | 24.1731 | 2.17228 | 4955.36 |\n", - "| M30 | uptrend | 624.54 | 15.618 | 1.46311 | 4955.37 |\n", - "| M15 | uptrend | 178.13 | 10.6596 | 0.284814 | 4955.37 |\n", - "| M5 | uptrend | 1087.33 | 5.7558 | 0.938776 | 4955.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227579.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:11:40,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:11:50,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:00,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:10,266 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:20,299 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:26 CET)\" (scheduled at 2026-01-23 00:12:26.633942+01:00)\n", - "2026-01-23 00:12:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:26 CET)\" executed successfully\n", - "2026-01-23 00:12:30,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:32 CET)\" (scheduled at 2026-01-23 00:12:32.132962+01:00)\n", - "2026-01-23 00:12:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:32 CET)\" executed successfully\n", - "2026-01-23 00:12:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:34 CET)\" (scheduled at 2026-01-23 00:12:34.010875+01:00)\n", - "2026-01-23 00:12:34,221 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.85 | 87.8422 | 9.94614 | 4953.04 |\n", - "| H4 | uptrend | 455.73 | 43.8257 | 2.99588 | 4953.04 |\n", - "| H1 | uptrend | 598.94 | 24.1731 | 2.17173 | 4953.04 |\n", - "| M30 | uptrend | 624.31 | 15.618 | 1.46256 | 4953.03 |\n", - "| M15 | uptrend | 177.78 | 10.6596 | 0.284261 | 4953.03 |\n", - "| M5 | uptrend | 1062.43 | 5.8873 | 0.938223 | 4953.03 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226522.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:12:40,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:12:50,362 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:00,394 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:10,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:20,441 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:26,717 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:26 CET)\" (scheduled at 2026-01-23 00:13:26.633942+01:00)\n", - "2026-01-23 00:13:26,717 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:26 CET)\" executed successfully\n", - "2026-01-23 00:13:30,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:32 CET)\" (scheduled at 2026-01-23 00:13:32.132962+01:00)\n", - "2026-01-23 00:13:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:32 CET)\" executed successfully\n", - "2026-01-23 00:13:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:34 CET)\" (scheduled at 2026-01-23 00:13:34.010875+01:00)\n", - "2026-01-23 00:13:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.77 | 87.8422 | 9.94504 | 4948.35 |\n", - "| H4 | uptrend | 455.56 | 43.8257 | 2.99478 | 4948.35 |\n", - "| H1 | uptrend | 598.63 | 24.1731 | 2.17062 | 4948.35 |\n", - "| M30 | uptrend | 623.83 | 15.618 | 1.46146 | 4948.35 |\n", - "| M15 | uptrend | 177.09 | 10.6596 | 0.283155 | 4948.35 |\n", - "| M5 | uptrend | 1003.7 | 6.2244 | 0.937117 | 4948.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.08)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224051.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:13:40,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:13:50,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:00,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:10,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:20,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:26 CET)\" (scheduled at 2026-01-23 00:14:26.633942+01:00)\n", - "2026-01-23 00:14:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:26 CET)\" executed successfully\n", - "2026-01-23 00:14:30,688 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:32,213 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:32 CET)\" (scheduled at 2026-01-23 00:14:32.132962+01:00)\n", - "2026-01-23 00:14:32,213 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:32 CET)\" executed successfully\n", - "2026-01-23 00:14:34,052 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:34 CET)\" (scheduled at 2026-01-23 00:14:34.010875+01:00)\n", - "2026-01-23 00:14:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.72 | 87.8422 | 9.9444 | 4945.65 |\n", - "| H4 | uptrend | 455.46 | 43.8257 | 2.99414 | 4945.65 |\n", - "| H1 | uptrend | 598.46 | 24.1731 | 2.16998 | 4945.65 |\n", - "| M30 | uptrend | 623.56 | 15.618 | 1.46082 | 4945.65 |\n", - "| M15 | uptrend | 176.69 | 10.6596 | 0.282517 | 4945.65 |\n", - "| M5 | uptrend | 970.09 | 6.4358 | 0.936498 | 4945.73 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222637.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:14:40,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:14:50,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:00,765 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:10,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:20,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:26 CET)\" (scheduled at 2026-01-23 00:15:26.633942+01:00)\n", - "2026-01-23 00:15:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:26 CET)\" executed successfully\n", - "2026-01-23 00:15:30,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:32 CET)\" (scheduled at 2026-01-23 00:15:32.132962+01:00)\n", - "2026-01-23 00:15:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:32 CET)\" executed successfully\n", - "2026-01-23 00:15:34,384 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:34 CET)\" (scheduled at 2026-01-23 00:15:34.010875+01:00)\n", - "2026-01-23 00:15:34,552 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.69 | 87.8422 | 9.94408 | 4944.29 |\n", - "| H4 | uptrend | 455.41 | 43.8257 | 2.99382 | 4944.29 |\n", - "| H1 | uptrend | 598.37 | 24.1731 | 2.16966 | 4944.29 |\n", - "| M30 | uptrend | 623.42 | 15.618 | 1.4605 | 4944.29 |\n", - "| M15 | uptrend | 207.39 | 10.0546 | 0.312785 | 4944.29 |\n", - "| M5 | uptrend | 1005.36 | 6.2446 | 0.94172 | 4944.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.98)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225866.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:15:40,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:15:50,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:00,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:10,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:20,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:27,121 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:26 CET)\" (scheduled at 2026-01-23 00:16:26.633942+01:00)\n", - "2026-01-23 00:16:27,121 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:26 CET)\" executed successfully\n", - "2026-01-23 00:16:30,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:32,482 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:32 CET)\" (scheduled at 2026-01-23 00:16:32.132962+01:00)\n", - "2026-01-23 00:16:32,482 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:32 CET)\" executed successfully\n", - "2026-01-23 00:16:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:34 CET)\" (scheduled at 2026-01-23 00:16:34.010875+01:00)\n", - "2026-01-23 00:16:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.63 | 87.8422 | 9.94329 | 4940.96 |\n", - "| H4 | uptrend | 455.29 | 43.8257 | 2.99303 | 4940.96 |\n", - "| H1 | uptrend | 598.15 | 24.1731 | 2.16887 | 4940.96 |\n", - "| M30 | uptrend | 623.09 | 15.618 | 1.45971 | 4940.96 |\n", - "| M15 | uptrend | 204.24 | 10.1839 | 0.311998 | 4940.96 |\n", - "| M5 | uptrend | 984.15 | 6.3739 | 0.940933 | 4940.96 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.90)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224772.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:16:41,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:16:51,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:01,047 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:11,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:21,210 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:27,060 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:26 CET)\" (scheduled at 2026-01-23 00:17:26.633942+01:00)\n", - "2026-01-23 00:17:27,060 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:26 CET)\" executed successfully\n", - "2026-01-23 00:17:31,236 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:32 CET)\" (scheduled at 2026-01-23 00:17:32.132962+01:00)\n", - "2026-01-23 00:17:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:32 CET)\" executed successfully\n", - "2026-01-23 00:17:34,057 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:34 CET)\" (scheduled at 2026-01-23 00:17:34.010875+01:00)\n", - "2026-01-23 00:17:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.72 | 87.8422 | 9.9445 | 4946.08 |\n", - "| H4 | uptrend | 455.48 | 43.8257 | 2.99424 | 4946.08 |\n", - "| H1 | uptrend | 598.49 | 24.1731 | 2.17008 | 4946.08 |\n", - "| M30 | uptrend | 623.61 | 15.618 | 1.46092 | 4946.08 |\n", - "| M15 | uptrend | 202.49 | 10.3117 | 0.313208 | 4946.08 |\n", - "| M5 | uptrend | 966.03 | 6.5018 | 0.942143 | 4946.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.03)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224030.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:17:41,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:17:51,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:01,299 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:11,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:21,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:26 CET)\" (scheduled at 2026-01-23 00:18:26.633942+01:00)\n", - "2026-01-23 00:18:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:26 CET)\" executed successfully\n", - "2026-01-23 00:18:31,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:32 CET)\" (scheduled at 2026-01-23 00:18:32.132962+01:00)\n", - "2026-01-23 00:18:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:32 CET)\" executed successfully\n", - "2026-01-23 00:18:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:34 CET)\" (scheduled at 2026-01-23 00:18:34.010875+01:00)\n", - "2026-01-23 00:18:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.7 | 87.8422 | 9.94423 | 4944.93 |\n", - "| H4 | uptrend | 455.44 | 43.8257 | 2.99397 | 4944.93 |\n", - "| H1 | uptrend | 598.41 | 24.1731 | 2.16981 | 4944.93 |\n", - "| M30 | uptrend | 623.49 | 15.618 | 1.46065 | 4944.93 |\n", - "| M15 | uptrend | 202.32 | 10.3117 | 0.312936 | 4944.93 |\n", - "| M5 | uptrend | 965.76 | 6.5018 | 0.941871 | 4944.93 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223989.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:18:41,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:18:51,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:01,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:11,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:21,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:27,095 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:26 CET)\" (scheduled at 2026-01-23 00:19:26.633942+01:00)\n", - "2026-01-23 00:19:27,095 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:26 CET)\" executed successfully\n", - "2026-01-23 00:19:31,522 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:32 CET)\" (scheduled at 2026-01-23 00:19:32.132962+01:00)\n", - "2026-01-23 00:19:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:32 CET)\" executed successfully\n", - "2026-01-23 00:19:34,072 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:34 CET)\" (scheduled at 2026-01-23 00:19:34.010875+01:00)\n", - "2026-01-23 00:19:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.62 | 87.8422 | 9.94313 | 4940.28 |\n", - "| H4 | uptrend | 455.27 | 43.8257 | 2.99287 | 4940.28 |\n", - "| H1 | uptrend | 598.11 | 24.1731 | 2.16871 | 4940.28 |\n", - "| M30 | uptrend | 623.02 | 15.618 | 1.45955 | 4940.28 |\n", - "| M15 | uptrend | 200.84 | 10.351 | 0.311837 | 4940.28 |\n", - "| M5 | uptrend | 958.84 | 6.5411 | 0.940773 | 4940.28 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.88)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223544.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:19:41,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:19:51,584 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:01,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:11,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:21,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:26 CET)\" (scheduled at 2026-01-23 00:20:26.633942+01:00)\n", - "2026-01-23 00:20:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:26 CET)\" executed successfully\n", - "2026-01-23 00:20:31,675 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:32,159 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:32 CET)\" (scheduled at 2026-01-23 00:20:32.132962+01:00)\n", - "2026-01-23 00:20:32,162 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:32 CET)\" executed successfully\n", - "2026-01-23 00:20:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:34 CET)\" (scheduled at 2026-01-23 00:20:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:20:34,270 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.65 | 87.8422 | 9.94353 | 4941.99 |\n", - "| H4 | uptrend | 455.33 | 43.8257 | 2.99327 | 4941.99 |\n", - "| H1 | uptrend | 598.22 | 24.1731 | 2.16912 | 4942.01 |\n", - "| M30 | uptrend | 623.19 | 15.618 | 1.45996 | 4942.01 |\n", - "| M15 | uptrend | 200.1 | 10.4032 | 0.312246 | 4942.01 |\n", - "| M5 | uptrend | 1009.56 | 6.248 | 0.946158 | 4942.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225558.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:20:41,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:20:51,730 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:01,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:11,781 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:21,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:26 CET)\" (scheduled at 2026-01-23 00:21:26.633942+01:00)\n", - "2026-01-23 00:21:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:26 CET)\" executed successfully\n", - "2026-01-23 00:21:31,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:32 CET)\" (scheduled at 2026-01-23 00:21:32.132962+01:00)\n", - "2026-01-23 00:21:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:32 CET)\" executed successfully\n", - "2026-01-23 00:21:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:34 CET)\" (scheduled at 2026-01-23 00:21:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.66 | 87.8422 | 9.94364 | 4942.43 |\n", - "| H4 | uptrend | 455.35 | 43.8257 | 2.99338 | 4942.43 |\n", - "| H1 | uptrend | 598.25 | 24.1731 | 2.16922 | 4942.43 |\n", - "| M30 | uptrend | 623.24 | 15.618 | 1.46006 | 4942.43 |\n", - "| M15 | uptrend | 200.16 | 10.4032 | 0.312345 | 4942.43 |\n", - "| M5 | uptrend | 995.77 | 6.3351 | 0.946254 | 4942.43 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.93)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225017.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:21:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:21:41,855 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:21:51,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:01,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:11,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:21,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:26 CET)\" (scheduled at 2026-01-23 00:22:26.633942+01:00)\n", - "2026-01-23 00:22:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:26 CET)\" executed successfully\n", - "2026-01-23 00:22:31,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:32,329 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:32 CET)\" (scheduled at 2026-01-23 00:22:32.132962+01:00)\n", - "2026-01-23 00:22:32,331 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:32 CET)\" executed successfully\n", - "2026-01-23 00:22:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:34 CET)\" (scheduled at 2026-01-23 00:22:34.010875+01:00)\n", - "2026-01-23 00:22:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.72 | 87.8422 | 9.94438 | 4945.58 |\n", - "| H4 | uptrend | 455.46 | 43.8257 | 2.99412 | 4945.58 |\n", - "| H1 | uptrend | 598.45 | 24.1731 | 2.16997 | 4945.58 |\n", - "| M30 | uptrend | 623.55 | 15.618 | 1.4608 | 4945.58 |\n", - "| M15 | uptrend | 200.64 | 10.4032 | 0.313089 | 4945.58 |\n", - "| M5 | uptrend | 971.69 | 6.4973 | 0.946999 | 4945.58 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224136.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:22:42,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:22:52,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:02,047 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:12,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:22,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:26 CET)\" (scheduled at 2026-01-23 00:23:26.633942+01:00)\n", - "2026-01-23 00:23:26,663 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:26 CET)\" executed successfully\n", - "2026-01-23 00:23:32,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:32 CET)\" (scheduled at 2026-01-23 00:23:32.132962+01:00)\n", - "2026-01-23 00:23:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:32 CET)\" executed successfully\n", - "2026-01-23 00:23:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:34 CET)\" (scheduled at 2026-01-23 00:23:34.010875+01:00)\n", - "2026-01-23 00:23:34,170 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.72 | 87.8422 | 9.94438 | 4945.57 |\n", - "| H4 | uptrend | 455.46 | 43.8257 | 2.99412 | 4945.57 |\n", - "| H1 | uptrend | 598.45 | 24.1731 | 2.16996 | 4945.57 |\n", - "| M30 | uptrend | 623.55 | 15.618 | 1.4608 | 4945.57 |\n", - "| M15 | uptrend | 200.64 | 10.4032 | 0.313087 | 4945.57 |\n", - "| M5 | uptrend | 968.17 | 6.5208 | 0.946996 | 4945.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223995.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:23:42,140 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:23:52,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:02,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:12,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:22,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:26 CET)\" (scheduled at 2026-01-23 00:24:26.633942+01:00)\n", - "2026-01-23 00:24:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:26 CET)\" executed successfully\n", - "2026-01-23 00:24:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:32 CET)\" (scheduled at 2026-01-23 00:24:32.132962+01:00)\n", - "2026-01-23 00:24:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:32 CET)\" executed successfully\n", - "2026-01-23 00:24:32,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:34 CET)\" (scheduled at 2026-01-23 00:24:34.010875+01:00)\n", - "2026-01-23 00:24:34,151 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.68 | 87.8422 | 9.94388 | 4943.45 |\n", - "| H4 | uptrend | 455.38 | 43.8257 | 2.99362 | 4943.45 |\n", - "| H1 | uptrend | 598.31 | 24.1731 | 2.16946 | 4943.45 |\n", - "| M30 | uptrend | 623.34 | 15.618 | 1.4603 | 4943.45 |\n", - "| M15 | uptrend | 200.32 | 10.4032 | 0.312586 | 4943.45 |\n", - "| M5 | uptrend | 967.66 | 6.5208 | 0.946495 | 4943.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223919.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:24:42,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:24:52,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:02,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:12,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:22,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:26 CET)\" (scheduled at 2026-01-23 00:25:26.633942+01:00)\n", - "2026-01-23 00:25:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:26 CET)\" executed successfully\n", - "2026-01-23 00:25:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:32 CET)\" (scheduled at 2026-01-23 00:25:32.132962+01:00)\n", - "2026-01-23 00:25:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:32 CET)\" executed successfully\n", - "2026-01-23 00:25:32,436 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:34 CET)\" (scheduled at 2026-01-23 00:25:34.010875+01:00)\n", - "2026-01-23 00:25:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.68 | 87.8422 | 9.94387 | 4943.42 |\n", - "| H4 | uptrend | 455.38 | 43.8257 | 2.99361 | 4943.42 |\n", - "| H1 | uptrend | 598.31 | 24.1731 | 2.16946 | 4943.42 |\n", - "| M30 | uptrend | 623.34 | 15.618 | 1.46029 | 4943.42 |\n", - "| M15 | uptrend | 200.31 | 10.4032 | 0.312579 | 4943.42 |\n", - "| M5 | uptrend | 1032.48 | 6.1465 | 0.951921 | 4943.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226511.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:25:42,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:25:52,484 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:02,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:12,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:22,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:26 CET)\" (scheduled at 2026-01-23 00:26:26.633942+01:00)\n", - "2026-01-23 00:26:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:26 CET)\" executed successfully\n", - "2026-01-23 00:26:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:32 CET)\" (scheduled at 2026-01-23 00:26:32.132962+01:00)\n", - "2026-01-23 00:26:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:32 CET)\" executed successfully\n", - "2026-01-23 00:26:32,580 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:34 CET)\" (scheduled at 2026-01-23 00:26:34.010875+01:00)\n", - "2026-01-23 00:26:34,166 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.67 | 87.8422 | 9.94376 | 4942.94 |\n", - "| H4 | uptrend | 455.36 | 43.8257 | 2.9935 | 4942.94 |\n", - "| H1 | uptrend | 598.28 | 24.1731 | 2.16934 | 4942.94 |\n", - "| M30 | uptrend | 623.29 | 15.618 | 1.46018 | 4942.94 |\n", - "| M15 | uptrend | 200.24 | 10.4032 | 0.312466 | 4942.94 |\n", - "| M5 | uptrend | 1019.91 | 6.2215 | 0.951808 | 4942.94 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225996.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:26:42,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:26:52,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:02,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:12,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:22,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:26 CET)\" (scheduled at 2026-01-23 00:27:26.633942+01:00)\n", - "2026-01-23 00:27:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:26 CET)\" executed successfully\n", - "2026-01-23 00:27:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:32 CET)\" (scheduled at 2026-01-23 00:27:32.132962+01:00)\n", - "2026-01-23 00:27:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:32 CET)\" executed successfully\n", - "2026-01-23 00:27:32,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:34,260 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:34 CET)\" (scheduled at 2026-01-23 00:27:34.010875+01:00)\n", - "2026-01-23 00:27:34,436 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.63 | 87.8422 | 9.94329 | 4940.97 |\n", - "| H4 | uptrend | 455.29 | 43.8257 | 2.99303 | 4940.97 |\n", - "| H1 | uptrend | 598.15 | 24.1731 | 2.16888 | 4940.97 |\n", - "| M30 | uptrend | 623.09 | 15.618 | 1.45971 | 4940.97 |\n", - "| M15 | uptrend | 199.96 | 10.4032 | 0.312026 | 4941.08 |\n", - "| M5 | uptrend | 994.59 | 6.3772 | 0.951411 | 4941.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.90)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224933.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:27:42,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:27:52,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:02,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:12,816 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:22,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:26 CET)\" (scheduled at 2026-01-23 00:28:26.633942+01:00)\n", - "2026-01-23 00:28:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:26 CET)\" executed successfully\n", - "2026-01-23 00:28:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:32 CET)\" (scheduled at 2026-01-23 00:28:32.132962+01:00)\n", - "2026-01-23 00:28:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:32 CET)\" executed successfully\n", - "2026-01-23 00:28:32,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:34,269 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:34 CET)\" (scheduled at 2026-01-23 00:28:34.010875+01:00)\n", - "2026-01-23 00:28:34,441 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.62 | 87.8422 | 9.94309 | 4940.12 |\n", - "| H4 | uptrend | 455.26 | 43.8257 | 2.99283 | 4940.12 |\n", - "| H1 | uptrend | 598.1 | 24.1731 | 2.16868 | 4940.12 |\n", - "| M30 | uptrend | 623 | 15.618 | 1.45951 | 4940.12 |\n", - "| M15 | uptrend | 199.81 | 10.4032 | 0.311799 | 4940.12 |\n", - "| M5 | uptrend | 994.31 | 6.3772 | 0.951142 | 4940.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.88)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224898.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:28:42,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:28:52,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:02,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:12,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:22,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:26 CET)\" (scheduled at 2026-01-23 00:29:26.633942+01:00)\n", - "2026-01-23 00:29:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:26 CET)\" executed successfully\n", - "2026-01-23 00:29:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:32 CET)\" (scheduled at 2026-01-23 00:29:32.132962+01:00)\n", - "2026-01-23 00:29:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:32 CET)\" executed successfully\n", - "2026-01-23 00:29:33,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:34 CET)\" (scheduled at 2026-01-23 00:29:34.010875+01:00)\n", - "2026-01-23 00:29:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.61 | 87.8422 | 9.94298 | 4939.66 |\n", - "| H4 | uptrend | 455.25 | 43.8257 | 2.99272 | 4939.66 |\n", - "| H1 | uptrend | 598.07 | 24.1731 | 2.16857 | 4939.66 |\n", - "| M30 | uptrend | 622.96 | 15.618 | 1.4594 | 4939.66 |\n", - "| M15 | uptrend | 199.48 | 10.4167 | 0.311688 | 4939.65 |\n", - "| M5 | uptrend | 989.98 | 6.4044 | 0.951031 | 4939.65 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.86)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224697.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:29:43,048 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:29:53,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:00,008 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 01:00:00 CET)\" (scheduled at 2026-01-23 00:30:00+01:00)\n", - "2026-01-23 00:30:00,008 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 01:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 00:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.41 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:30:03,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:13,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:23,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:26 CET)\" (scheduled at 2026-01-23 00:30:26.633942+01:00)\n", - "2026-01-23 00:30:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:26 CET)\" executed successfully\n", - "2026-01-23 00:30:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:32 CET)\" (scheduled at 2026-01-23 00:30:32.132962+01:00)\n", - "2026-01-23 00:30:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:32 CET)\" executed successfully\n", - "2026-01-23 00:30:33,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:34 CET)\" (scheduled at 2026-01-23 00:30:34.010875+01:00)\n", - "2026-01-23 00:30:34,203 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 754.39 | 87.8601 | 9.94211 | 4935.99 |\n", - "| H4 | uptrend | 454.93 | 43.8435 | 2.99186 | 4935.99 |\n", - "| H1 | uptrend | 597.39 | 24.1909 | 2.1677 | 4935.99 |\n", - "| M30 | uptrend | 659.06 | 14.8096 | 1.46406 | 4935.99 |\n", - "| M15 | uptrend | 227.82 | 9.9798 | 0.341042 | 4935.99 |\n", - "| M5 | uptrend | 1016.72 | 6.254 | 0.95379 | 4935.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 634.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230261.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:30:43,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:30:53,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:03,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:13,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:23,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:26 CET)\" (scheduled at 2026-01-23 00:31:26.633942+01:00)\n", - "2026-01-23 00:31:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:26 CET)\" executed successfully\n", - "2026-01-23 00:31:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:32 CET)\" (scheduled at 2026-01-23 00:31:32.132962+01:00)\n", - "2026-01-23 00:31:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:32 CET)\" executed successfully\n", - "2026-01-23 00:31:33,396 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:34,088 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:34 CET)\" (scheduled at 2026-01-23 00:31:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:31:34,337 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.15 | 88.2279 | 9.9409 | 4930.85 |\n", - "| H4 | uptrend | 450.96 | 44.2114 | 2.99064 | 4930.85 |\n", - "| H1 | uptrend | 588.11 | 24.5588 | 2.16648 | 4930.84 |\n", - "| M30 | uptrend | 642.55 | 15.1774 | 1.46284 | 4930.84 |\n", - "| M15 | uptrend | 218.91 | 10.3491 | 0.339821 | 4930.82 |\n", - "| M5 | uptrend | 958.8 | 6.6233 | 0.952569 | 4930.82 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.08)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224808.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:31:43,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:31:53,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:03,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:13,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:23,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:26 CET)\" (scheduled at 2026-01-23 00:32:26.633942+01:00)\n", - "2026-01-23 00:32:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:26 CET)\" executed successfully\n", - "2026-01-23 00:32:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:32 CET)\" (scheduled at 2026-01-23 00:32:32.132962+01:00)\n", - "2026-01-23 00:32:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:32 CET)\" executed successfully\n", - "2026-01-23 00:32:33,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:34 CET)\" (scheduled at 2026-01-23 00:32:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:32:37,037 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "⚠️ Keine Daten fΓΌr D1\n", - "❌ Signal-Analyse fehlgeschlagen\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:32:43,550 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:32:53,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:03,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:13,632 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:23,647 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:26 CET)\" (scheduled at 2026-01-23 00:33:26.633942+01:00)\n", - "2026-01-23 00:33:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:26 CET)\" executed successfully\n", - "2026-01-23 00:33:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:32 CET)\" (scheduled at 2026-01-23 00:33:32.132962+01:00)\n", - "2026-01-23 00:33:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:32 CET)\" executed successfully\n", - "2026-01-23 00:33:33,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:34 CET)\" (scheduled at 2026-01-23 00:33:34.010875+01:00)\n", - "2026-01-23 00:33:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.21 | 88.2293 | 9.94185 | 4934.86 |\n", - "| H4 | uptrend | 451.09 | 44.2128 | 2.99159 | 4934.86 |\n", - "| H1 | uptrend | 588.33 | 24.5602 | 2.16743 | 4934.86 |\n", - "| M30 | uptrend | 642.91 | 15.1789 | 1.46379 | 4934.86 |\n", - "| M15 | uptrend | 219.52 | 10.3491 | 0.340777 | 4934.87 |\n", - "| M5 | uptrend | 959.76 | 6.6233 | 0.953526 | 4934.87 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224944.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:33:43,695 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:33:53,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:03,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:13,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:23,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:26,771 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:26 CET)\" (scheduled at 2026-01-23 00:34:26.633942+01:00)\n", - "2026-01-23 00:34:26,771 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:26 CET)\" executed successfully\n", - "2026-01-23 00:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:32 CET)\" (scheduled at 2026-01-23 00:34:32.132962+01:00)\n", - "2026-01-23 00:34:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:32 CET)\" executed successfully\n", - "2026-01-23 00:34:33,827 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:34,205 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:34 CET)\" (scheduled at 2026-01-23 00:34:34.010875+01:00)\n", - "2026-01-23 00:34:34,388 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.16 | 88.2293 | 9.94114 | 4931.85 |\n", - "| H4 | uptrend | 450.98 | 44.2128 | 2.99088 | 4931.85 |\n", - "| H1 | uptrend | 588.14 | 24.5602 | 2.16672 | 4931.85 |\n", - "| M30 | uptrend | 642.59 | 15.1789 | 1.46308 | 4931.85 |\n", - "| M15 | uptrend | 219.06 | 10.3491 | 0.340064 | 4931.85 |\n", - "| M5 | uptrend | 959.05 | 6.6233 | 0.952812 | 4931.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224835.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:34:43,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:34:53,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:03,896 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:13,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:23,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:26,776 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:26 CET)\" (scheduled at 2026-01-23 00:35:26.633942+01:00)\n", - "2026-01-23 00:35:26,776 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:26 CET)\" executed successfully\n", - "2026-01-23 00:35:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:32 CET)\" (scheduled at 2026-01-23 00:35:32.132962+01:00)\n", - "2026-01-23 00:35:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:32 CET)\" executed successfully\n", - "2026-01-23 00:35:33,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:34 CET)\" (scheduled at 2026-01-23 00:35:34.010875+01:00)\n", - "2026-01-23 00:35:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.19 | 88.2293 | 9.94154 | 4933.55 |\n", - "| H4 | uptrend | 451.04 | 44.2128 | 2.99128 | 4933.55 |\n", - "| H1 | uptrend | 588.25 | 24.5602 | 2.16712 | 4933.55 |\n", - "| M30 | uptrend | 642.77 | 15.1789 | 1.46348 | 4933.55 |\n", - "| M15 | uptrend | 219.32 | 10.3491 | 0.340466 | 4933.55 |\n", - "| M5 | uptrend | 1016.94 | 6.2609 | 0.955056 | 4933.55 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227196.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:35:43,982 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:35:54,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:04,034 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:14,065 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:24,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:26,674 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:26 CET)\" (scheduled at 2026-01-23 00:36:26.633942+01:00)\n", - "2026-01-23 00:36:26,674 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:26 CET)\" executed successfully\n", - "2026-01-23 00:36:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:32 CET)\" (scheduled at 2026-01-23 00:36:32.132962+01:00)\n", - "2026-01-23 00:36:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:32 CET)\" executed successfully\n", - "2026-01-23 00:36:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:34 CET)\" (scheduled at 2026-01-23 00:36:34.010875+01:00)\n", - "2026-01-23 00:36:34,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.19 | 88.2293 | 9.94153 | 4933.53 |\n", - "| H4 | uptrend | 451.04 | 44.2128 | 2.99128 | 4933.53 |\n", - "| H1 | uptrend | 588.25 | 24.5602 | 2.16712 | 4933.53 |\n", - "| M30 | uptrend | 642.77 | 15.1789 | 1.46348 | 4933.53 |\n", - "| M15 | uptrend | 219.32 | 10.3491 | 0.340468 | 4933.56 |\n", - "| M5 | uptrend | 1001.07 | 6.3602 | 0.955058 | 4933.56 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226561.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:36:44,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:36:54,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:04,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:14,282 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:24,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:26 CET)\" (scheduled at 2026-01-23 00:37:26.633942+01:00)\n", - "2026-01-23 00:37:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:26 CET)\" executed successfully\n", - "2026-01-23 00:37:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:32 CET)\" (scheduled at 2026-01-23 00:37:32.132962+01:00)\n", - "2026-01-23 00:37:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:32 CET)\" executed successfully\n", - "2026-01-23 00:37:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:34 CET)\" (scheduled at 2026-01-23 00:37:34.010875+01:00)\n", - "2026-01-23 00:37:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.19 | 88.2293 | 9.9416 | 4933.8 |\n", - "| H4 | uptrend | 451.05 | 44.2128 | 2.99134 | 4933.8 |\n", - "| H1 | uptrend | 588.26 | 24.5602 | 2.16718 | 4933.8 |\n", - "| M30 | uptrend | 642.8 | 15.1789 | 1.46354 | 4933.8 |\n", - "| M15 | uptrend | 219.36 | 10.3491 | 0.340525 | 4933.8 |\n", - "| M5 | uptrend | 1001.13 | 6.3602 | 0.955115 | 4933.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226570.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:37:34,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:44,366 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:37:54,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:04,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:14,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:24,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:26 CET)\" (scheduled at 2026-01-23 00:38:26.633942+01:00)\n", - "2026-01-23 00:38:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:26 CET)\" executed successfully\n", - "2026-01-23 00:38:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:32 CET)\" (scheduled at 2026-01-23 00:38:32.132962+01:00)\n", - "2026-01-23 00:38:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:32 CET)\" executed successfully\n", - "2026-01-23 00:38:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:34 CET)\" (scheduled at 2026-01-23 00:38:34.010875+01:00)\n", - "2026-01-23 00:38:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.26 | 88.2293 | 9.94244 | 4937.36 |\n", - "| H4 | uptrend | 451.18 | 44.2128 | 2.99218 | 4937.36 |\n", - "| H1 | uptrend | 588.49 | 24.5602 | 2.16802 | 4937.36 |\n", - "| M30 | uptrend | 643.17 | 15.1789 | 1.46438 | 4937.36 |\n", - "| M15 | uptrend | 219.9 | 10.3491 | 0.341366 | 4937.36 |\n", - "| M5 | uptrend | 975.82 | 6.5309 | 0.955956 | 4937.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225652.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:38:34,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:44,504 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:38:54,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:04,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:14,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:24,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:26,707 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:26 CET)\" (scheduled at 2026-01-23 00:39:26.633942+01:00)\n", - "2026-01-23 00:39:26,707 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:26 CET)\" executed successfully\n", - "2026-01-23 00:39:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:32 CET)\" (scheduled at 2026-01-23 00:39:32.132962+01:00)\n", - "2026-01-23 00:39:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:32 CET)\" executed successfully\n", - "2026-01-23 00:39:34,357 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:34 CET)\" (scheduled at 2026-01-23 00:39:34.010875+01:00)\n", - "2026-01-23 00:39:34,509 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.23 | 88.2293 | 9.94202 | 4935.57 |\n", - "| H4 | uptrend | 451.11 | 44.2128 | 2.99176 | 4935.57 |\n", - "| H1 | uptrend | 588.38 | 24.5602 | 2.1676 | 4935.57 |\n", - "| M30 | uptrend | 642.98 | 15.1789 | 1.46396 | 4935.57 |\n", - "| M15 | uptrend | 219.63 | 10.3491 | 0.340948 | 4935.59 |\n", - "| M5 | uptrend | 974.76 | 6.5352 | 0.955538 | 4935.59 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225562.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:39:34,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:34,888 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 01:39:34 CET)\" (scheduled at 2026-01-23 00:39:34.806528+01:00)\n", - "2026-01-23 00:39:34,901 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 01:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[00:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 4500.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:39:44,660 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:39:54,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:04,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:14,736 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:24,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:26,684 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:26 CET)\" (scheduled at 2026-01-23 00:40:26.633942+01:00)\n", - "2026-01-23 00:40:26,684 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:26 CET)\" executed successfully\n", - "2026-01-23 00:40:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:32 CET)\" (scheduled at 2026-01-23 00:40:32.132962+01:00)\n", - "2026-01-23 00:40:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:32 CET)\" executed successfully\n", - "2026-01-23 00:40:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:34 CET)\" (scheduled at 2026-01-23 00:40:34.010875+01:00)\n", - "2026-01-23 00:40:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.24 | 88.2293 | 9.94217 | 4936.22 |\n", - "| H4 | uptrend | 451.14 | 44.2128 | 2.99191 | 4936.22 |\n", - "| H1 | uptrend | 588.42 | 24.5602 | 2.16776 | 4936.22 |\n", - "| M30 | uptrend | 643.05 | 15.1789 | 1.46411 | 4936.22 |\n", - "| M15 | uptrend | 219.74 | 10.3491 | 0.341113 | 4936.29 |\n", - "| M5 | uptrend | 1031.58 | 6.1899 | 0.957799 | 4936.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227852.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:40:34,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:44,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:40:54,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:04,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:14,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:24,902 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:26 CET)\" (scheduled at 2026-01-23 00:41:26.633942+01:00)\n", - "2026-01-23 00:41:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:26 CET)\" executed successfully\n", - "2026-01-23 00:41:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:32 CET)\" (scheduled at 2026-01-23 00:41:32.132962+01:00)\n", - "2026-01-23 00:41:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:32 CET)\" executed successfully\n", - "2026-01-23 00:41:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:34 CET)\" (scheduled at 2026-01-23 00:41:34.010875+01:00)\n", - "2026-01-23 00:41:34,156 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.22 | 88.2293 | 9.9419 | 4935.06 |\n", - "| H4 | uptrend | 451.1 | 44.2128 | 2.99164 | 4935.06 |\n", - "| H1 | uptrend | 588.34 | 24.5602 | 2.16748 | 4935.06 |\n", - "| M30 | uptrend | 642.93 | 15.1789 | 1.46384 | 4935.06 |\n", - "| M15 | uptrend | 219.55 | 10.3491 | 0.340822 | 4935.06 |\n", - "| M5 | uptrend | 1029.6 | 6.1999 | 0.957509 | 4935.06 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227742.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:41:34,922 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:44,939 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:41:54,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:04,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:15,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:25,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:26 CET)\" (scheduled at 2026-01-23 00:42:26.633942+01:00)\n", - "2026-01-23 00:42:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:26 CET)\" executed successfully\n", - "2026-01-23 00:42:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:32 CET)\" (scheduled at 2026-01-23 00:42:32.132962+01:00)\n", - "2026-01-23 00:42:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:32 CET)\" executed successfully\n", - "2026-01-23 00:42:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:34 CET)\" (scheduled at 2026-01-23 00:42:34.010875+01:00)\n", - "2026-01-23 00:42:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.22 | 88.2293 | 9.94198 | 4935.43 |\n", - "| H4 | uptrend | 451.11 | 44.2128 | 2.99172 | 4935.43 |\n", - "| H1 | uptrend | 588.37 | 24.5602 | 2.16757 | 4935.43 |\n", - "| M30 | uptrend | 642.97 | 15.1789 | 1.46392 | 4935.43 |\n", - "| M15 | uptrend | 219.61 | 10.3491 | 0.34091 | 4935.43 |\n", - "| M5 | uptrend | 1026.5 | 6.2191 | 0.957596 | 4935.43 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227628.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:42:35,068 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:45,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:42:55,109 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:05,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:15,167 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:25,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:26,693 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:26 CET)\" (scheduled at 2026-01-23 00:43:26.633942+01:00)\n", - "2026-01-23 00:43:26,693 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:26 CET)\" executed successfully\n", - "2026-01-23 00:43:32,157 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:32 CET)\" (scheduled at 2026-01-23 00:43:32.132962+01:00)\n", - "2026-01-23 00:43:32,157 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:32 CET)\" executed successfully\n", - "2026-01-23 00:43:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:34 CET)\" (scheduled at 2026-01-23 00:43:34.010875+01:00)\n", - "2026-01-23 00:43:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.26 | 88.2293 | 9.94244 | 4937.38 |\n", - "| H4 | uptrend | 451.18 | 44.2128 | 2.99219 | 4937.38 |\n", - "| H1 | uptrend | 588.49 | 24.5602 | 2.16803 | 4937.38 |\n", - "| M30 | uptrend | 643.17 | 15.1789 | 1.46438 | 4937.38 |\n", - "| M15 | uptrend | 219.9 | 10.3491 | 0.34137 | 4937.38 |\n", - "| M5 | uptrend | 1014.64 | 6.2949 | 0.958055 | 4937.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227205.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:43:35,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:45,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:43:55,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:05,282 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:15,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:25,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:26,769 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:26 CET)\" (scheduled at 2026-01-23 00:44:26.633942+01:00)\n", - "2026-01-23 00:44:26,785 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:26 CET)\" executed successfully\n", - "2026-01-23 00:44:32,250 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:32 CET)\" (scheduled at 2026-01-23 00:44:32.132962+01:00)\n", - "2026-01-23 00:44:32,250 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:32 CET)\" executed successfully\n", - "2026-01-23 00:44:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:34 CET)\" (scheduled at 2026-01-23 00:44:34.010875+01:00)\n", - "2026-01-23 00:44:34,213 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.26 | 88.2293 | 9.94247 | 4937.49 |\n", - "| H4 | uptrend | 451.18 | 44.2128 | 2.99221 | 4937.49 |\n", - "| H1 | uptrend | 588.5 | 24.5602 | 2.16805 | 4937.49 |\n", - "| M30 | uptrend | 643.18 | 15.1789 | 1.46441 | 4937.49 |\n", - "| M15 | uptrend | 219.92 | 10.3491 | 0.341396 | 4937.49 |\n", - "| M5 | uptrend | 1004.19 | 6.3606 | 0.958083 | 4937.49 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226790.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:44:35,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:45,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:44:55,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:05,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:15,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:25,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:26,947 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:26 CET)\" (scheduled at 2026-01-23 00:45:26.633942+01:00)\n", - "2026-01-23 00:45:26,947 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:26 CET)\" executed successfully\n", - "2026-01-23 00:45:32,199 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:32 CET)\" (scheduled at 2026-01-23 00:45:32.132962+01:00)\n", - "2026-01-23 00:45:32,199 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:32 CET)\" executed successfully\n", - "2026-01-23 00:45:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:34 CET)\" (scheduled at 2026-01-23 00:45:34.010875+01:00)\n", - "2026-01-23 00:45:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.38 | 88.2293 | 9.944 | 4943.98 |\n", - "| H4 | uptrend | 451.41 | 44.2128 | 2.99375 | 4943.98 |\n", - "| H1 | uptrend | 588.92 | 24.5602 | 2.16962 | 4944.1 |\n", - "| M30 | uptrend | 631.8 | 15.4689 | 1.46598 | 4944.11 |\n", - "| M15 | uptrend | 248.92 | 10.0177 | 0.374036 | 4944.11 |\n", - "| M5 | uptrend | 1013.58 | 6.3287 | 0.962199 | 4944.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228053.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:45:35,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:45,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:45:55,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:05,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:15,584 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:25,599 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:26 CET)\" (scheduled at 2026-01-23 00:46:26.633942+01:00)\n", - "2026-01-23 00:46:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:26 CET)\" executed successfully\n", - "2026-01-23 00:46:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:32 CET)\" (scheduled at 2026-01-23 00:46:32.132962+01:00)\n", - "2026-01-23 00:46:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:32 CET)\" executed successfully\n", - "2026-01-23 00:46:34,032 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:34 CET)\" (scheduled at 2026-01-23 00:46:34.010875+01:00)\n", - "2026-01-23 00:46:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.37 | 88.2293 | 9.94387 | 4943.42 |\n", - "| H4 | uptrend | 451.39 | 44.2128 | 2.99361 | 4943.42 |\n", - "| H1 | uptrend | 588.88 | 24.5602 | 2.16946 | 4943.42 |\n", - "| M30 | uptrend | 628.04 | 15.5596 | 1.46581 | 4943.42 |\n", - "| M15 | uptrend | 246.57 | 10.1084 | 0.373873 | 4943.42 |\n", - "| M5 | uptrend | 999.09 | 6.4194 | 0.962034 | 4943.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.38)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227027.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:46:35,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:45,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:46:55,813 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:05,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:16,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:26,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:26 CET)\" (scheduled at 2026-01-23 00:47:26.633942+01:00)\n", - "2026-01-23 00:47:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:26 CET)\" executed successfully\n", - "2026-01-23 00:47:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:32 CET)\" (scheduled at 2026-01-23 00:47:32.132962+01:00)\n", - "2026-01-23 00:47:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:32 CET)\" executed successfully\n", - "2026-01-23 00:47:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:34 CET)\" (scheduled at 2026-01-23 00:47:34.010875+01:00)\n", - "2026-01-23 00:47:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.47 | 88.2293 | 9.94523 | 4949.19 |\n", - "| H4 | uptrend | 451.6 | 44.2128 | 2.99498 | 4949.19 |\n", - "| H1 | uptrend | 589.25 | 24.5602 | 2.17082 | 4949.19 |\n", - "| M30 | uptrend | 618.49 | 15.8146 | 1.46717 | 4949.19 |\n", - "| M15 | uptrend | 241.38 | 10.3634 | 0.375236 | 4949.19 |\n", - "| M5 | uptrend | 962.28 | 6.6744 | 0.963397 | 4949.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224530.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:47:36,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:46,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:47:56,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:06,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:16,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:26,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:26 CET)\" (scheduled at 2026-01-23 00:48:26.633942+01:00)\n", - "2026-01-23 00:48:26,667 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:26 CET)\" executed successfully\n", - "2026-01-23 00:48:32,184 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:32 CET)\" (scheduled at 2026-01-23 00:48:32.132962+01:00)\n", - "2026-01-23 00:48:32,184 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:32 CET)\" executed successfully\n", - "2026-01-23 00:48:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:34 CET)\" (scheduled at 2026-01-23 00:48:34.010875+01:00)\n", - "2026-01-23 00:48:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.45 | 88.2293 | 9.94501 | 4948.22 |\n", - "| H4 | uptrend | 451.57 | 44.2128 | 2.99475 | 4948.22 |\n", - "| H1 | uptrend | 589.19 | 24.5602 | 2.17059 | 4948.22 |\n", - "| M30 | uptrend | 605.75 | 16.1446 | 1.46695 | 4948.22 |\n", - "| M15 | uptrend | 233.79 | 10.6934 | 0.375007 | 4948.22 |\n", - "| M5 | uptrend | 916.73 | 7.0044 | 0.963168 | 4948.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221225.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:48:36,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:46,613 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:48:56,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:06,658 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:16,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:26,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:26,974 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:26 CET)\" (scheduled at 2026-01-23 00:49:26.633942+01:00)\n", - "2026-01-23 00:49:26,976 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:26 CET)\" executed successfully\n", - "2026-01-23 00:49:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:32 CET)\" (scheduled at 2026-01-23 00:49:32.132962+01:00)\n", - "2026-01-23 00:49:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:32 CET)\" executed successfully\n", - "2026-01-23 00:49:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:34 CET)\" (scheduled at 2026-01-23 00:49:34.010875+01:00)\n", - "2026-01-23 00:49:34,258 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.51 | 88.2293 | 9.94585 | 4951.79 |\n", - "| H4 | uptrend | 451.69 | 44.2128 | 2.99559 | 4951.79 |\n", - "| H1 | uptrend | 589.42 | 24.5602 | 2.17143 | 4951.79 |\n", - "| M30 | uptrend | 605.43 | 16.1624 | 1.46779 | 4951.79 |\n", - "| M15 | uptrend | 233.94 | 10.7113 | 0.375862 | 4951.84 |\n", - "| M5 | uptrend | 915.21 | 7.0223 | 0.964023 | 4951.84 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221179.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:49:36,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:46,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:49:56,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:06,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:16,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:26,685 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:26 CET)\" (scheduled at 2026-01-23 00:50:26.633942+01:00)\n", - "2026-01-23 00:50:26,685 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:26 CET)\" executed successfully\n", - "2026-01-23 00:50:26,855 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:32 CET)\" (scheduled at 2026-01-23 00:50:32.132962+01:00)\n", - "2026-01-23 00:50:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:32 CET)\" executed successfully\n", - "2026-01-23 00:50:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:34 CET)\" (scheduled at 2026-01-23 00:50:34.010875+01:00)\n", - "2026-01-23 00:50:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.51 | 88.2293 | 9.94579 | 4951.53 |\n", - "| H4 | uptrend | 451.68 | 44.2128 | 2.99553 | 4951.53 |\n", - "| H1 | uptrend | 589.4 | 24.5602 | 2.17137 | 4951.5 |\n", - "| M30 | uptrend | 605.41 | 16.1624 | 1.46773 | 4951.54 |\n", - "| M15 | uptrend | 233.89 | 10.7113 | 0.375791 | 4951.54 |\n", - "| M5 | uptrend | 950.61 | 6.7957 | 0.969 | 4951.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222588.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:50:36,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:46,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:50:56,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:06,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:16,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:26,708 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:26 CET)\" (scheduled at 2026-01-23 00:51:26.633942+01:00)\n", - "2026-01-23 00:51:26,708 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:26 CET)\" executed successfully\n", - "2026-01-23 00:51:26,999 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:32 CET)\" (scheduled at 2026-01-23 00:51:32.132962+01:00)\n", - "2026-01-23 00:51:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:32 CET)\" executed successfully\n", - "2026-01-23 00:51:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:34 CET)\" (scheduled at 2026-01-23 00:51:34.010875+01:00)\n", - "2026-01-23 00:51:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.57 | 88.2293 | 9.94653 | 4954.66 |\n", - "| H4 | uptrend | 451.79 | 44.2128 | 2.99627 | 4954.66 |\n", - "| H1 | uptrend | 589.6 | 24.5602 | 2.17211 | 4954.66 |\n", - "| M30 | uptrend | 604.08 | 16.206 | 1.46847 | 4954.66 |\n", - "| M15 | uptrend | 233.4 | 10.7549 | 0.376529 | 4954.66 |\n", - "| M5 | uptrend | 929.93 | 6.9521 | 0.969749 | 4954.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.66)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221654.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:51:37,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:47,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:51:57,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:07,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:17,105 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:26 CET)\" (scheduled at 2026-01-23 00:52:26.633942+01:00)\n", - "2026-01-23 00:52:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:26 CET)\" executed successfully\n", - "2026-01-23 00:52:27,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:32 CET)\" (scheduled at 2026-01-23 00:52:32.132962+01:00)\n", - "2026-01-23 00:52:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:32 CET)\" executed successfully\n", - "2026-01-23 00:52:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:34 CET)\" (scheduled at 2026-01-23 00:52:34.010875+01:00)\n", - "2026-01-23 00:52:34,200 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.57 | 88.2293 | 9.94661 | 4955 |\n", - "| H4 | uptrend | 451.81 | 44.2128 | 2.99635 | 4955 |\n", - "| H1 | uptrend | 589.64 | 24.5602 | 2.17224 | 4955.22 |\n", - "| M30 | uptrend | 602.5 | 16.2503 | 1.46862 | 4955.29 |\n", - "| M15 | uptrend | 232.54 | 10.7992 | 0.376677 | 4955.29 |\n", - "| M5 | uptrend | 924.46 | 6.9942 | 0.969888 | 4955.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221260.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:52:37,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:47,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:52:57,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:07,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:17,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:26,713 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:26 CET)\" (scheduled at 2026-01-23 00:53:26.633942+01:00)\n", - "2026-01-23 00:53:26,713 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:26 CET)\" executed successfully\n", - "2026-01-23 00:53:27,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:32,483 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:32 CET)\" (scheduled at 2026-01-23 00:53:32.132962+01:00)\n", - "2026-01-23 00:53:32,483 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:32 CET)\" executed successfully\n", - "2026-01-23 00:53:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:34 CET)\" (scheduled at 2026-01-23 00:53:34.010875+01:00)\n", - "2026-01-23 00:53:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.61 | 88.2293 | 9.94711 | 4957.11 |\n", - "| H4 | uptrend | 451.88 | 44.2128 | 2.99685 | 4957.11 |\n", - "| H1 | uptrend | 589.76 | 24.5602 | 2.17269 | 4957.11 |\n", - "| M30 | uptrend | 597.63 | 16.3874 | 1.46905 | 4957.14 |\n", - "| M15 | uptrend | 229.89 | 10.9363 | 0.377115 | 4957.14 |\n", - "| M5 | uptrend | 907.09 | 7.1314 | 0.970325 | 4957.14 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220035.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:53:37,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:47,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:53:57,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:07,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:17,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:26,663 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:26 CET)\" (scheduled at 2026-01-23 00:54:26.633942+01:00)\n", - "2026-01-23 00:54:26,663 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:26 CET)\" executed successfully\n", - "2026-01-23 00:54:27,429 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:32,621 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:32 CET)\" (scheduled at 2026-01-23 00:54:32.132962+01:00)\n", - "2026-01-23 00:54:32,621 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:32 CET)\" executed successfully\n", - "2026-01-23 00:54:34,047 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:34 CET)\" (scheduled at 2026-01-23 00:54:34.010875+01:00)\n", - "2026-01-23 00:54:34,203 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.59 | 88.2293 | 9.94681 | 4955.86 |\n", - "| H4 | uptrend | 451.84 | 44.2128 | 2.99655 | 4955.86 |\n", - "| H1 | uptrend | 589.68 | 24.5602 | 2.17239 | 4955.86 |\n", - "| M30 | uptrend | 593.89 | 16.4874 | 1.46875 | 4955.86 |\n", - "| M15 | uptrend | 227.62 | 11.0363 | 0.376812 | 4955.86 |\n", - "| M5 | uptrend | 894.27 | 7.2314 | 0.970023 | 4955.86 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219075.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:54:37,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:47,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:54:57,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:07,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:17,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:26 CET)\" (scheduled at 2026-01-23 00:55:26.633942+01:00)\n", - "2026-01-23 00:55:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:26 CET)\" executed successfully\n", - "2026-01-23 00:55:27,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:32,177 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:32 CET)\" (scheduled at 2026-01-23 00:55:32.132962+01:00)\n", - "2026-01-23 00:55:32,177 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:32 CET)\" executed successfully\n", - "2026-01-23 00:55:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:34 CET)\" (scheduled at 2026-01-23 00:55:34.010875+01:00)\n", - "2026-01-23 00:55:34,230 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.63 | 88.2293 | 9.94743 | 4958.47 |\n", - "| H4 | uptrend | 451.93 | 44.2128 | 2.99717 | 4958.47 |\n", - "| H1 | uptrend | 589.85 | 24.5602 | 2.17301 | 4958.47 |\n", - "| M30 | uptrend | 594.14 | 16.4874 | 1.46938 | 4958.52 |\n", - "| M15 | uptrend | 228 | 11.0363 | 0.377441 | 4958.52 |\n", - "| M5 | uptrend | 920.44 | 7.0813 | 0.977681 | 4958.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220188.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:55:37,595 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:47,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:55:57,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:07,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:17,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:26,717 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:26 CET)\" (scheduled at 2026-01-23 00:56:26.633942+01:00)\n", - "2026-01-23 00:56:26,717 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:26 CET)\" executed successfully\n", - "2026-01-23 00:56:27,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:32 CET)\" (scheduled at 2026-01-23 00:56:32.132962+01:00)\n", - "2026-01-23 00:56:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:32 CET)\" executed successfully\n", - "2026-01-23 00:56:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:34 CET)\" (scheduled at 2026-01-23 00:56:34.010875+01:00)\n", - "2026-01-23 00:56:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.36 | 88.2629 | 9.94756 | 4959.02 |\n", - "| H4 | uptrend | 451.61 | 44.2464 | 2.9973 | 4959.02 |\n", - "| H1 | uptrend | 589.08 | 24.5938 | 2.17314 | 4959.02 |\n", - "| M30 | uptrend | 589.77 | 16.611 | 1.4695 | 4959.02 |\n", - "| M15 | uptrend | 225.54 | 11.1599 | 0.377556 | 4959.01 |\n", - "| M5 | uptrend | 903.95 | 7.2113 | 0.977797 | 4959.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.46)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218925.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:56:37,741 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:47,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:56:57,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:07,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:17,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:26 CET)\" (scheduled at 2026-01-23 00:57:26.633942+01:00)\n", - "2026-01-23 00:57:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:26 CET)\" executed successfully\n", - "2026-01-23 00:57:27,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:32 CET)\" (scheduled at 2026-01-23 00:57:32.132962+01:00)\n", - "2026-01-23 00:57:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:32 CET)\" executed successfully\n", - "2026-01-23 00:57:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:34 CET)\" (scheduled at 2026-01-23 00:57:34.010875+01:00)\n", - "2026-01-23 00:57:34,224 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.21 | 88.2772 | 9.94715 | 4957.31 |\n", - "| H4 | uptrend | 451.4 | 44.2607 | 2.99689 | 4957.31 |\n", - "| H1 | uptrend | 588.62 | 24.6081 | 2.17274 | 4957.31 |\n", - "| M30 | uptrend | 589.1 | 16.6253 | 1.46909 | 4957.31 |\n", - "| M15 | uptrend | 225.02 | 11.1742 | 0.377155 | 4957.31 |\n", - "| M5 | uptrend | 901.79 | 7.2256 | 0.977396 | 4957.31 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218691.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:57:37,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:47,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:57:57,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:07,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:17,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:26 CET)\" (scheduled at 2026-01-23 00:58:26.633942+01:00)\n", - "2026-01-23 00:58:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:26 CET)\" executed successfully\n", - "2026-01-23 00:58:27,987 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:32 CET)\" (scheduled at 2026-01-23 00:58:32.132962+01:00)\n", - "2026-01-23 00:58:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:32 CET)\" executed successfully\n", - "2026-01-23 00:58:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:34 CET)\" (scheduled at 2026-01-23 00:58:34.010875+01:00)\n", - "2026-01-23 00:58:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 00:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.18 | 88.2772 | 9.94676 | 4955.64 |\n", - "| H4 | uptrend | 451.34 | 44.2607 | 2.9965 | 4955.64 |\n", - "| H1 | uptrend | 588.51 | 24.6081 | 2.17232 | 4955.54 |\n", - "| M30 | uptrend | 588.94 | 16.6253 | 1.46869 | 4955.6 |\n", - "| M15 | uptrend | 224.78 | 11.1742 | 0.376751 | 4955.6 |\n", - "| M5 | uptrend | 901.42 | 7.2256 | 0.976992 | 4955.6 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218633.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:58:38,018 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:48,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:58:58,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:08,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:18,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:26 CET)\" (scheduled at 2026-01-23 00:59:26.633942+01:00)\n", - "2026-01-23 00:59:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:26 CET)\" executed successfully\n", - "2026-01-23 00:59:28,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:32,158 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:32 CET)\" (scheduled at 2026-01-23 00:59:32.132962+01:00)\n", - "2026-01-23 00:59:32,158 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:32 CET)\" executed successfully\n", - "2026-01-23 00:59:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:34 CET)\" (scheduled at 2026-01-23 00:59:34.010875+01:00)\n", - "2026-01-23 00:59:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.23 | 88.2772 | 9.94747 | 4958.65 |\n", - "| H4 | uptrend | 451.45 | 44.2607 | 2.99721 | 4958.65 |\n", - "| H1 | uptrend | 588.71 | 24.6081 | 2.17306 | 4958.65 |\n", - "| M30 | uptrend | 589.23 | 16.6253 | 1.46941 | 4958.65 |\n", - "| M15 | uptrend | 225.2 | 11.1742 | 0.377471 | 4958.65 |\n", - "| M5 | uptrend | 902.09 | 7.2256 | 0.977712 | 4958.65 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218736.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 00:59:38,169 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:48,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 00:59:58,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:00,008 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 01:30:00 CET)\" (scheduled at 2026-01-23 01:00:00+01:00)\n", - "2026-01-23 01:00:00,027 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 01:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 01:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.84 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:00:08,236 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:18,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:26 CET)\" (scheduled at 2026-01-23 01:00:26.633942+01:00)\n", - "2026-01-23 01:00:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:26 CET)\" executed successfully\n", - "2026-01-23 01:00:28,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:32 CET)\" (scheduled at 2026-01-23 01:00:32.132962+01:00)\n", - "2026-01-23 01:00:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:32 CET)\" executed successfully\n", - "2026-01-23 01:00:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:34 CET)\" (scheduled at 2026-01-23 01:00:34.010875+01:00)\n", - "2026-01-23 01:00:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.23 | 88.2772 | 9.94751 | 4958.83 |\n", - "| H4 | uptrend | 451.45 | 44.2607 | 2.99725 | 4958.83 |\n", - "| H1 | uptrend | 646.4 | 22.8897 | 2.21938 | 4958.83 |\n", - "| M30 | uptrend | 636.91 | 15.477 | 1.47863 | 4958.83 |\n", - "| M15 | uptrend | 263.88 | 10.4153 | 0.412263 | 4958.83 |\n", - "| M5 | uptrend | 973.79 | 6.7487 | 0.98578 | 4958.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233509.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:00:38,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:48,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:00:58,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:08,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:18,414 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:26 CET)\" (scheduled at 2026-01-23 01:01:26.633942+01:00)\n", - "2026-01-23 01:01:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:26 CET)\" executed successfully\n", - "2026-01-23 01:01:28,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:32 CET)\" (scheduled at 2026-01-23 01:01:32.132962+01:00)\n", - "2026-01-23 01:01:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:32 CET)\" executed successfully\n", - "2026-01-23 01:01:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:34 CET)\" (scheduled at 2026-01-23 01:01:34.010875+01:00)\n", - "2026-01-23 01:01:34,195 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 751.18 | 88.2865 | 9.9478 | 4960.04 |\n", - "| H4 | uptrend | 451.4 | 44.27 | 2.99754 | 4960.04 |\n", - "| H1 | uptrend | 641.96 | 23.0511 | 2.21967 | 4960.04 |\n", - "| M30 | uptrend | 630.46 | 15.6385 | 1.47892 | 4960.04 |\n", - "| M15 | uptrend | 260.04 | 10.5767 | 0.412549 | 4960.04 |\n", - "| M5 | uptrend | 951.31 | 6.9102 | 0.986056 | 4960 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 631.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231413.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:01:38,466 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:48,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:01:58,511 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:08,534 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:18,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:26 CET)\" (scheduled at 2026-01-23 01:02:26.633942+01:00)\n", - "2026-01-23 01:02:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:26 CET)\" executed successfully\n", - "2026-01-23 01:02:28,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:32 CET)\" (scheduled at 2026-01-23 01:02:32.132962+01:00)\n", - "2026-01-23 01:02:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:32 CET)\" executed successfully\n", - "2026-01-23 01:02:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:34 CET)\" (scheduled at 2026-01-23 01:02:34.010875+01:00)\n", - "2026-01-23 01:02:34,261 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.93 | 88.4379 | 9.94839 | 4962.55 |\n", - "| H4 | uptrend | 449.95 | 44.4214 | 2.99813 | 4962.55 |\n", - "| H1 | uptrend | 637.94 | 23.2025 | 2.22026 | 4962.55 |\n", - "| M30 | uptrend | 624.67 | 15.7899 | 1.47951 | 4962.55 |\n", - "| M15 | uptrend | 256.73 | 10.7281 | 0.413142 | 4962.55 |\n", - "| M5 | uptrend | 931.48 | 7.0616 | 0.986659 | 4962.55 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229424.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:02:38,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:48,641 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:02:58,669 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:08,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:18,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:26,679 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:26 CET)\" (scheduled at 2026-01-23 01:03:26.633942+01:00)\n", - "2026-01-23 01:03:26,679 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:26 CET)\" executed successfully\n", - "2026-01-23 01:03:28,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:32 CET)\" (scheduled at 2026-01-23 01:03:32.132962+01:00)\n", - "2026-01-23 01:03:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:32 CET)\" executed successfully\n", - "2026-01-23 01:03:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:34 CET)\" (scheduled at 2026-01-23 01:03:34.010875+01:00)\n", - "2026-01-23 01:03:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.93 | 88.4379 | 9.94829 | 4962.11 |\n", - "| H4 | uptrend | 449.94 | 44.4214 | 2.99803 | 4962.11 |\n", - "| H1 | uptrend | 637.91 | 23.2025 | 2.22016 | 4962.11 |\n", - "| M30 | uptrend | 624.63 | 15.7899 | 1.47942 | 4962.15 |\n", - "| M15 | uptrend | 256.68 | 10.7281 | 0.413047 | 4962.15 |\n", - "| M5 | uptrend | 931.39 | 7.0616 | 0.986564 | 4962.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.93)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229409.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:03:38,771 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:48,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:03:58,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:08,902 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:18,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:26,697 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:26 CET)\" (scheduled at 2026-01-23 01:04:26.633942+01:00)\n", - "2026-01-23 01:04:26,697 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:26 CET)\" executed successfully\n", - "2026-01-23 01:04:28,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:32 CET)\" (scheduled at 2026-01-23 01:04:32.132962+01:00)\n", - "2026-01-23 01:04:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:32 CET)\" executed successfully\n", - "2026-01-23 01:04:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:34 CET)\" (scheduled at 2026-01-23 01:04:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:04:34,356 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.85 | 88.4472 | 9.94834 | 4962.35 |\n", - "| H4 | uptrend | 449.85 | 44.4307 | 2.99809 | 4962.35 |\n", - "| H1 | uptrend | 637.67 | 23.2118 | 2.22021 | 4962.35 |\n", - "| M30 | uptrend | 624.28 | 15.7992 | 1.47947 | 4962.35 |\n", - "| M15 | uptrend | 256.48 | 10.7374 | 0.413095 | 4962.35 |\n", - "| M5 | uptrend | 930.21 | 7.0709 | 0.986612 | 4962.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229291.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:04:38,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:48,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:04:59,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:09,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:19,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:26 CET)\" (scheduled at 2026-01-23 01:05:26.633942+01:00)\n", - "2026-01-23 01:05:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:26 CET)\" executed successfully\n", - "2026-01-23 01:05:29,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:32 CET)\" (scheduled at 2026-01-23 01:05:32.132962+01:00)\n", - "2026-01-23 01:05:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:32 CET)\" executed successfully\n", - "2026-01-23 01:05:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:34 CET)\" (scheduled at 2026-01-23 01:05:34.010875+01:00)\n", - "2026-01-23 01:05:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.52 | 88.4779 | 9.94744 | 4958.53 |\n", - "| H4 | uptrend | 449.41 | 44.4614 | 2.99718 | 4958.53 |\n", - "| H1 | uptrend | 636.56 | 23.2425 | 2.2193 | 4958.49 |\n", - "| M30 | uptrend | 622.68 | 15.8299 | 1.47855 | 4958.49 |\n", - "| M15 | uptrend | 255.19 | 10.7681 | 0.41218 | 4958.48 |\n", - "| M5 | uptrend | 967.39 | 6.8551 | 0.994724 | 4958.48 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230425.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:05:39,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:49,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:05:59,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:09,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:19,220 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:26 CET)\" (scheduled at 2026-01-23 01:06:26.633942+01:00)\n", - "2026-01-23 01:06:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:26 CET)\" executed successfully\n", - "2026-01-23 01:06:29,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:32,692 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:32 CET)\" (scheduled at 2026-01-23 01:06:32.132962+01:00)\n", - "2026-01-23 01:06:32,692 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:32 CET)\" executed successfully\n", - "2026-01-23 01:06:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:34 CET)\" (scheduled at 2026-01-23 01:06:34.010875+01:00)\n", - "2026-01-23 01:06:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.55 | 88.4779 | 9.94782 | 4960.14 |\n", - "| H4 | uptrend | 449.46 | 44.4614 | 2.99756 | 4960.14 |\n", - "| H1 | uptrend | 636.68 | 23.2425 | 2.21969 | 4960.14 |\n", - "| M30 | uptrend | 622.85 | 15.8299 | 1.47894 | 4960.14 |\n", - "| M15 | uptrend | 255.43 | 10.7681 | 0.412572 | 4960.14 |\n", - "| M5 | uptrend | 967.77 | 6.8551 | 0.995116 | 4960.14 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230483.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:06:39,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:49,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:06:59,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:09,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:19,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:27,034 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:26 CET)\" (scheduled at 2026-01-23 01:07:26.633942+01:00)\n", - "2026-01-23 01:07:27,034 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:26 CET)\" executed successfully\n", - "2026-01-23 01:07:29,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:32 CET)\" (scheduled at 2026-01-23 01:07:32.132962+01:00)\n", - "2026-01-23 01:07:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:32 CET)\" executed successfully\n", - "2026-01-23 01:07:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:34 CET)\" (scheduled at 2026-01-23 01:07:34.010875+01:00)\n", - "2026-01-23 01:07:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.53 | 88.4779 | 9.94747 | 4958.64 |\n", - "| H4 | uptrend | 449.41 | 44.4614 | 2.99721 | 4958.64 |\n", - "| H1 | uptrend | 636.57 | 23.2425 | 2.21934 | 4958.64 |\n", - "| M30 | uptrend | 622.7 | 15.8299 | 1.47859 | 4958.64 |\n", - "| M15 | uptrend | 255.21 | 10.7681 | 0.412218 | 4958.64 |\n", - "| M5 | uptrend | 967.42 | 6.8551 | 0.994762 | 4958.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230430.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:07:39,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:49,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:07:59,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:09,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:19,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:26 CET)\" (scheduled at 2026-01-23 01:08:26.633942+01:00)\n", - "2026-01-23 01:08:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:26 CET)\" executed successfully\n", - "2026-01-23 01:08:29,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:32 CET)\" (scheduled at 2026-01-23 01:08:32.132962+01:00)\n", - "2026-01-23 01:08:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:32 CET)\" executed successfully\n", - "2026-01-23 01:08:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:34 CET)\" (scheduled at 2026-01-23 01:08:34.010875+01:00)\n", - "2026-01-23 01:08:34,214 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.5 | 88.4779 | 9.94711 | 4957.11 |\n", - "| H4 | uptrend | 449.36 | 44.4614 | 2.99685 | 4957.11 |\n", - "| H1 | uptrend | 634.75 | 23.3054 | 2.21897 | 4957.11 |\n", - "| M30 | uptrend | 620.08 | 15.8928 | 1.47823 | 4957.12 |\n", - "| M15 | uptrend | 253.51 | 10.831 | 0.411859 | 4957.12 |\n", - "| M5 | uptrend | 954.44 | 6.9458 | 0.994403 | 4957.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229414.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:08:39,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:49,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:08:59,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:09,638 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:19,677 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:26 CET)\" (scheduled at 2026-01-23 01:09:26.633942+01:00)\n", - "2026-01-23 01:09:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:26 CET)\" executed successfully\n", - "2026-01-23 01:09:29,691 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:32 CET)\" (scheduled at 2026-01-23 01:09:32.132962+01:00)\n", - "2026-01-23 01:09:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:32 CET)\" executed successfully\n", - "2026-01-23 01:09:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:34 CET)\" (scheduled at 2026-01-23 01:09:34.010875+01:00)\n", - "2026-01-23 01:09:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.5 | 88.4779 | 9.94716 | 4957.33 |\n", - "| H4 | uptrend | 449.36 | 44.4614 | 2.9969 | 4957.33 |\n", - "| H1 | uptrend | 634.18 | 23.3268 | 2.21903 | 4957.33 |\n", - "| M30 | uptrend | 619.27 | 15.9142 | 1.47828 | 4957.33 |\n", - "| M15 | uptrend | 253.04 | 10.8524 | 0.411911 | 4957.34 |\n", - "| M5 | uptrend | 951.56 | 6.9672 | 0.99446 | 4957.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229149.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:09:39,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:49,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:09:59,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:09,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:19,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:26 CET)\" (scheduled at 2026-01-23 01:10:26.633942+01:00)\n", - "2026-01-23 01:10:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:26 CET)\" executed successfully\n", - "2026-01-23 01:10:29,843 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:32 CET)\" (scheduled at 2026-01-23 01:10:32.132962+01:00)\n", - "2026-01-23 01:10:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:32 CET)\" executed successfully\n", - "2026-01-23 01:10:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:34 CET)\" (scheduled at 2026-01-23 01:10:34.010875+01:00)\n", - "2026-01-23 01:10:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.46 | 88.4779 | 9.94659 | 4954.93 |\n", - "| H4 | uptrend | 449.28 | 44.4614 | 2.99633 | 4954.93 |\n", - "| H1 | uptrend | 630.14 | 23.4704 | 2.21846 | 4954.91 |\n", - "| M30 | uptrend | 613.5 | 16.0578 | 1.47771 | 4954.91 |\n", - "| M15 | uptrend | 249.39 | 10.996 | 0.411337 | 4954.91 |\n", - "| M5 | uptrend | 1001.33 | 6.6685 | 1.00161 | 4954.91 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230049.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:10:39,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:49,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:10:59,919 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:11:09,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:11:19,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:11:26,769 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:26 CET)\" (scheduled at 2026-01-23 01:11:26.633942+01:00)\n", - "2026-01-23 01:11:26,769 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:26 CET)\" executed successfully\n", - "2026-01-23 01:11:29,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:11:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:32 CET)\" (scheduled at 2026-01-23 01:11:32.132962+01:00)\n", - "2026-01-23 01:11:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:32 CET)\" executed successfully\n", - "2026-01-23 01:11:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:34 CET)\" (scheduled at 2026-01-23 01:11:34.010875+01:00)\n", - "2026-01-23 01:11:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.43 | 88.4779 | 9.94618 | 4953.2 |\n", - "| H4 | uptrend | 449.22 | 44.4614 | 2.99592 | 4953.2 |\n", - "| H1 | uptrend | 625.63 | 23.6354 | 2.21805 | 4953.2 |\n", - "| M30 | uptrend | 607.09 | 16.2228 | 1.4773 | 4953.2 |\n", - "| M15 | uptrend | 245.46 | 11.161 | 0.410933 | 4953.2 |\n", - "| M5 | uptrend | 976.76 | 6.8335 | 1.00121 | 4953.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.34)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227862.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:11:40,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:11:50,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:00,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:10,100 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:20,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:26 CET)\" (scheduled at 2026-01-23 01:12:26.633942+01:00)\n", - "2026-01-23 01:12:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:26 CET)\" executed successfully\n", - "2026-01-23 01:12:30,153 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:32 CET)\" (scheduled at 2026-01-23 01:12:32.132962+01:00)\n", - "2026-01-23 01:12:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:32 CET)\" executed successfully\n", - "2026-01-23 01:12:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:34 CET)\" (scheduled at 2026-01-23 01:12:34.010875+01:00)\n", - "2026-01-23 01:12:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 749.43 | 88.4779 | 9.94622 | 4953.36 |\n", - "| H4 | uptrend | 449.22 | 44.4614 | 2.99596 | 4953.36 |\n", - "| H1 | uptrend | 625.64 | 23.6354 | 2.21809 | 4953.36 |\n", - "| M30 | uptrend | 607.11 | 16.2228 | 1.47734 | 4953.36 |\n", - "| M15 | uptrend | 245.48 | 11.161 | 0.41097 | 4953.36 |\n", - "| M5 | uptrend | 976.8 | 6.8335 | 1.00124 | 4953.36 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.35)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227868.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:12:40,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:12:50,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:00,218 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:10,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:20,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:26 CET)\" (scheduled at 2026-01-23 01:13:26.633942+01:00)\n", - "2026-01-23 01:13:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:26 CET)\" executed successfully\n", - "2026-01-23 01:13:30,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:32 CET)\" (scheduled at 2026-01-23 01:13:32.132962+01:00)\n", - "2026-01-23 01:13:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:32 CET)\" executed successfully\n", - "2026-01-23 01:13:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:34 CET)\" (scheduled at 2026-01-23 01:13:34.010875+01:00)\n", - "2026-01-23 01:13:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.43 | 88.4779 | 9.94615 | 4953.06 |\n", - "| H4 | uptrend | 449.21 | 44.4614 | 2.99589 | 4953.06 |\n", - "| H1 | uptrend | 625.62 | 23.6354 | 2.21802 | 4953.06 |\n", - "| M30 | uptrend | 607.07 | 16.2228 | 1.47726 | 4953.01 |\n", - "| M15 | uptrend | 245.43 | 11.161 | 0.410888 | 4953.01 |\n", - "| M5 | uptrend | 976.72 | 6.8335 | 1.00116 | 4953.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.34)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227856.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:13:40,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:13:50,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:00,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:10,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:20,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:26 CET)\" (scheduled at 2026-01-23 01:14:26.633942+01:00)\n", - "2026-01-23 01:14:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:26 CET)\" executed successfully\n", - "2026-01-23 01:14:30,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:32 CET)\" (scheduled at 2026-01-23 01:14:32.132962+01:00)\n", - "2026-01-23 01:14:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:32 CET)\" executed successfully\n", - "2026-01-23 01:14:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:34 CET)\" (scheduled at 2026-01-23 01:14:34.010875+01:00)\n", - "2026-01-23 01:14:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.41 | 88.4779 | 9.94594 | 4952.17 |\n", - "| H4 | uptrend | 449.18 | 44.4614 | 2.99568 | 4952.17 |\n", - "| H1 | uptrend | 625.11 | 23.6525 | 2.21781 | 4952.17 |\n", - "| M30 | uptrend | 606.35 | 16.2399 | 1.47706 | 4952.17 |\n", - "| M15 | uptrend | 244.94 | 11.1781 | 0.410689 | 4952.17 |\n", - "| M5 | uptrend | 974.08 | 6.8507 | 1.00096 | 4952.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227610.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:14:40,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:14:50,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:00,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:10,535 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:20,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:26 CET)\" (scheduled at 2026-01-23 01:15:26.633942+01:00)\n", - "2026-01-23 01:15:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:26 CET)\" executed successfully\n", - "2026-01-23 01:15:30,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:32,273 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:32 CET)\" (scheduled at 2026-01-23 01:15:32.132962+01:00)\n", - "2026-01-23 01:15:32,273 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:32 CET)\" executed successfully\n", - "2026-01-23 01:15:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:34 CET)\" (scheduled at 2026-01-23 01:15:34.010875+01:00)\n", - "2026-01-23 01:15:34,195 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.4 | 88.4779 | 9.94575 | 4951.37 |\n", - "| H4 | uptrend | 449.15 | 44.4614 | 2.99549 | 4951.37 |\n", - "| H1 | uptrend | 621.34 | 23.794 | 2.21762 | 4951.37 |\n", - "| M30 | uptrend | 601.04 | 16.3813 | 1.47687 | 4951.37 |\n", - "| M15 | uptrend | 278.25 | 10.5916 | 0.442073 | 4951.37 |\n", - "| M5 | uptrend | 1021 | 6.5732 | 1.00669 | 4951.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 230682.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:15:40,601 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:15:50,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:00,651 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:10,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:20,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:26 CET)\" (scheduled at 2026-01-23 01:16:26.633942+01:00)\n", - "2026-01-23 01:16:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:26 CET)\" executed successfully\n", - "2026-01-23 01:16:30,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:32,390 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:32 CET)\" (scheduled at 2026-01-23 01:16:32.132962+01:00)\n", - "2026-01-23 01:16:32,390 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:32 CET)\" executed successfully\n", - "2026-01-23 01:16:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:34 CET)\" (scheduled at 2026-01-23 01:16:34.010875+01:00)\n", - "2026-01-23 01:16:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.48 | 88.4779 | 9.94689 | 4956.18 |\n", - "| H4 | uptrend | 449.32 | 44.4614 | 2.99663 | 4956.18 |\n", - "| H1 | uptrend | 621.66 | 23.794 | 2.21875 | 4956.18 |\n", - "| M30 | uptrend | 601.5 | 16.3813 | 1.47801 | 4956.18 |\n", - "| M15 | uptrend | 271.02 | 10.9023 | 0.443209 | 4956.18 |\n", - "| M5 | uptrend | 976.02 | 6.8839 | 1.00783 | 4956.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228529.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:16:40,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:16:50,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:00,800 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:10,827 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:20,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:26 CET)\" (scheduled at 2026-01-23 01:17:26.633942+01:00)\n", - "2026-01-23 01:17:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:26 CET)\" executed successfully\n", - "2026-01-23 01:17:30,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:32 CET)\" (scheduled at 2026-01-23 01:17:32.132962+01:00)\n", - "2026-01-23 01:17:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:32 CET)\" executed successfully\n", - "2026-01-23 01:17:34,127 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:34 CET)\" (scheduled at 2026-01-23 01:17:34.010875+01:00)\n", - "2026-01-23 01:17:34,285 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.47 | 88.4779 | 9.94671 | 4955.46 |\n", - "| H4 | uptrend | 449.3 | 44.4614 | 2.99646 | 4955.46 |\n", - "| H1 | uptrend | 621.61 | 23.794 | 2.21859 | 4955.46 |\n", - "| M30 | uptrend | 601.43 | 16.3813 | 1.47784 | 4955.46 |\n", - "| M15 | uptrend | 267.05 | 11.0602 | 0.443039 | 4955.46 |\n", - "| M5 | uptrend | 953.98 | 7.0418 | 1.00766 | 4955.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227397.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:17:40,890 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:17:50,919 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:00,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:10,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:20,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:26 CET)\" (scheduled at 2026-01-23 01:18:26.633942+01:00)\n", - "2026-01-23 01:18:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:26 CET)\" executed successfully\n", - "2026-01-23 01:18:31,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:32 CET)\" (scheduled at 2026-01-23 01:18:32.132962+01:00)\n", - "2026-01-23 01:18:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:32 CET)\" executed successfully\n", - "2026-01-23 01:18:34,099 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:34 CET)\" (scheduled at 2026-01-23 01:18:34.010875+01:00)\n", - "2026-01-23 01:18:34,234 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.44 | 88.4779 | 9.94636 | 4953.95 |\n", - "| H4 | uptrend | 449.24 | 44.4614 | 2.9961 | 4953.95 |\n", - "| H1 | uptrend | 621.51 | 23.794 | 2.21823 | 4953.95 |\n", - "| M30 | uptrend | 601.29 | 16.3813 | 1.47748 | 4953.95 |\n", - "| M15 | uptrend | 266.83 | 11.0602 | 0.442682 | 4953.95 |\n", - "| M5 | uptrend | 953.64 | 7.0418 | 1.0073 | 4953.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.36)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227345.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:18:41,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:18:51,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:01,081 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:11,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:21,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:26 CET)\" (scheduled at 2026-01-23 01:19:26.633942+01:00)\n", - "2026-01-23 01:19:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:26 CET)\" executed successfully\n", - "2026-01-23 01:19:31,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:32 CET)\" (scheduled at 2026-01-23 01:19:32.132962+01:00)\n", - "2026-01-23 01:19:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:32 CET)\" executed successfully\n", - "2026-01-23 01:19:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:34 CET)\" (scheduled at 2026-01-23 01:19:34.010875+01:00)\n", - "2026-01-23 01:19:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.47 | 88.4779 | 9.94671 | 4955.45 |\n", - "| H4 | uptrend | 449.3 | 44.4614 | 2.99646 | 4955.45 |\n", - "| H1 | uptrend | 621.61 | 23.794 | 2.21858 | 4955.45 |\n", - "| M30 | uptrend | 601.43 | 16.3813 | 1.47784 | 4955.45 |\n", - "| M15 | uptrend | 267.05 | 11.0602 | 0.443037 | 4955.45 |\n", - "| M5 | uptrend | 953.98 | 7.0418 | 1.00766 | 4955.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227397.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:19:41,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:19:51,207 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:01,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:11,250 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:21,282 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:26 CET)\" (scheduled at 2026-01-23 01:20:26.633942+01:00)\n", - "2026-01-23 01:20:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:26 CET)\" executed successfully\n", - "2026-01-23 01:20:31,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:32 CET)\" (scheduled at 2026-01-23 01:20:32.132962+01:00)\n", - "2026-01-23 01:20:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:32 CET)\" executed successfully\n", - "2026-01-23 01:20:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:34 CET)\" (scheduled at 2026-01-23 01:20:34.010875+01:00)\n", - "2026-01-23 01:20:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.5 | 88.4779 | 9.94717 | 4957.37 |\n", - "| H4 | uptrend | 449.36 | 44.4614 | 2.99691 | 4957.37 |\n", - "| H1 | uptrend | 621.74 | 23.794 | 2.21904 | 4957.37 |\n", - "| M30 | uptrend | 601.61 | 16.3813 | 1.47829 | 4957.37 |\n", - "| M15 | uptrend | 267.32 | 11.0602 | 0.443491 | 4957.37 |\n", - "| M5 | uptrend | 1015.87 | 6.6538 | 1.01391 | 4957.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229921.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:20:41,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:20:51,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:01,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:11,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:21,519 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:26 CET)\" (scheduled at 2026-01-23 01:21:26.633942+01:00)\n", - "2026-01-23 01:21:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:26 CET)\" executed successfully\n", - "2026-01-23 01:21:31,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:32 CET)\" (scheduled at 2026-01-23 01:21:32.132962+01:00)\n", - "2026-01-23 01:21:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:32 CET)\" executed successfully\n", - "2026-01-23 01:21:34,044 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:34 CET)\" (scheduled at 2026-01-23 01:21:34.010875+01:00)\n", - "2026-01-23 01:21:34,205 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.51 | 88.4779 | 9.94729 | 4957.88 |\n", - "| H4 | uptrend | 449.38 | 44.4614 | 2.99703 | 4957.88 |\n", - "| H1 | uptrend | 621.77 | 23.794 | 2.21916 | 4957.88 |\n", - "| M30 | uptrend | 601.66 | 16.3813 | 1.47841 | 4957.88 |\n", - "| M15 | uptrend | 267.39 | 11.0602 | 0.443611 | 4957.88 |\n", - "| M5 | uptrend | 1015.99 | 6.6538 | 1.01403 | 4957.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.46)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229939.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:21:41,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:21:51,583 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:01,617 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:11,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:21,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:26 CET)\" (scheduled at 2026-01-23 01:22:26.633942+01:00)\n", - "2026-01-23 01:22:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:26 CET)\" executed successfully\n", - "2026-01-23 01:22:31,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:32,165 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:32 CET)\" (scheduled at 2026-01-23 01:22:32.132962+01:00)\n", - "2026-01-23 01:22:32,176 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:32 CET)\" executed successfully\n", - "2026-01-23 01:22:34,057 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:34 CET)\" (scheduled at 2026-01-23 01:22:34.010875+01:00)\n", - "2026-01-23 01:22:34,228 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.47 | 88.4779 | 9.94673 | 4955.5 |\n", - "| H4 | uptrend | 449.3 | 44.4614 | 2.99647 | 4955.5 |\n", - "| H1 | uptrend | 621.61 | 23.794 | 2.21859 | 4955.5 |\n", - "| M30 | uptrend | 601.44 | 16.3813 | 1.47785 | 4955.5 |\n", - "| M15 | uptrend | 267.05 | 11.0602 | 0.443044 | 4955.48 |\n", - "| M5 | uptrend | 1004.32 | 6.7274 | 1.01346 | 4955.48 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 229411.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:22:41,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:22:51,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:01,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:11,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:21,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:26 CET)\" (scheduled at 2026-01-23 01:23:26.633942+01:00)\n", - "2026-01-23 01:23:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:26 CET)\" executed successfully\n", - "2026-01-23 01:23:31,823 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:32,177 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:32 CET)\" (scheduled at 2026-01-23 01:23:32.132962+01:00)\n", - "2026-01-23 01:23:32,178 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:32 CET)\" executed successfully\n", - "2026-01-23 01:23:34,345 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:34 CET)\" (scheduled at 2026-01-23 01:23:34.010875+01:00)\n", - "2026-01-23 01:23:34,542 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.45 | 88.4779 | 9.9465 | 4954.53 |\n", - "| H4 | uptrend | 449.26 | 44.4614 | 2.99624 | 4954.53 |\n", - "| H1 | uptrend | 621.55 | 23.794 | 2.21836 | 4954.53 |\n", - "| M30 | uptrend | 601.34 | 16.3813 | 1.47762 | 4954.53 |\n", - "| M15 | uptrend | 266.92 | 11.0602 | 0.442819 | 4954.53 |\n", - "| M5 | uptrend | 991.98 | 6.8095 | 1.01324 | 4954.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.38)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228894.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:23:41,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:23:51,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:01,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:11,912 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:21,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:26 CET)\" (scheduled at 2026-01-23 01:24:26.633942+01:00)\n", - "2026-01-23 01:24:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:26 CET)\" executed successfully\n", - "2026-01-23 01:24:31,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:32,256 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:32 CET)\" (scheduled at 2026-01-23 01:24:32.132962+01:00)\n", - "2026-01-23 01:24:32,258 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:32 CET)\" executed successfully\n", - "2026-01-23 01:24:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:34 CET)\" (scheduled at 2026-01-23 01:24:34.010875+01:00)\n", - "2026-01-23 01:24:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.41 | 88.4779 | 9.94588 | 4951.92 |\n", - "| H4 | uptrend | 449.17 | 44.4614 | 2.99562 | 4951.92 |\n", - "| H1 | uptrend | 621.38 | 23.794 | 2.21775 | 4951.92 |\n", - "| M30 | uptrend | 601.09 | 16.3813 | 1.477 | 4951.92 |\n", - "| M15 | uptrend | 266.54 | 11.0602 | 0.442203 | 4951.92 |\n", - "| M5 | uptrend | 964.86 | 6.9967 | 1.01262 | 4951.92 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227743.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:24:41,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:24:52,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:02,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:12,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:22,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:26 CET)\" (scheduled at 2026-01-23 01:25:26.633942+01:00)\n", - "2026-01-23 01:25:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:26 CET)\" executed successfully\n", - "2026-01-23 01:25:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:32 CET)\" (scheduled at 2026-01-23 01:25:32.132962+01:00)\n", - "2026-01-23 01:25:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:32 CET)\" executed successfully\n", - "2026-01-23 01:25:32,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:34 CET)\" (scheduled at 2026-01-23 01:25:34.010875+01:00)\n", - "2026-01-23 01:25:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.35 | 88.4779 | 9.94512 | 4948.71 |\n", - "| H4 | uptrend | 449.06 | 44.4614 | 2.99486 | 4948.71 |\n", - "| H1 | uptrend | 617.57 | 23.9325 | 2.21701 | 4948.81 |\n", - "| M30 | uptrend | 595.75 | 16.5199 | 1.47627 | 4948.81 |\n", - "| M15 | uptrend | 262.81 | 11.1987 | 0.441468 | 4948.81 |\n", - "| M5 | uptrend | 1003.55 | 6.7462 | 1.01553 | 4948.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228251.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:25:42,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:25:52,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:02,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:12,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:22,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:26,715 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:26 CET)\" (scheduled at 2026-01-23 01:26:26.633942+01:00)\n", - "2026-01-23 01:26:26,715 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:26 CET)\" executed successfully\n", - "2026-01-23 01:26:32,187 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:32 CET)\" (scheduled at 2026-01-23 01:26:32.132962+01:00)\n", - "2026-01-23 01:26:32,187 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:32 CET)\" executed successfully\n", - "2026-01-23 01:26:32,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:34 CET)\" (scheduled at 2026-01-23 01:26:34.010875+01:00)\n", - "2026-01-23 01:26:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.38 | 88.4779 | 9.9456 | 4950.74 |\n", - "| H4 | uptrend | 449.13 | 44.4614 | 2.99534 | 4950.74 |\n", - "| H1 | uptrend | 617.7 | 23.9325 | 2.21747 | 4950.76 |\n", - "| M30 | uptrend | 595.94 | 16.5199 | 1.47673 | 4950.77 |\n", - "| M15 | uptrend | 263.08 | 11.1987 | 0.441931 | 4950.77 |\n", - "| M5 | uptrend | 1001.15 | 6.7655 | 1.01599 | 4950.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228204.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:26:42,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:26:52,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:02,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:12,440 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:22,458 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:26 CET)\" (scheduled at 2026-01-23 01:27:26.633942+01:00)\n", - "2026-01-23 01:27:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:26 CET)\" executed successfully\n", - "2026-01-23 01:27:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:32 CET)\" (scheduled at 2026-01-23 01:27:32.132962+01:00)\n", - "2026-01-23 01:27:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:32 CET)\" executed successfully\n", - "2026-01-23 01:27:32,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:34,069 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:34 CET)\" (scheduled at 2026-01-23 01:27:34.010875+01:00)\n", - "2026-01-23 01:27:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.38 | 88.4779 | 9.94552 | 4950.39 |\n", - "| H4 | uptrend | 449.12 | 44.4614 | 2.99526 | 4950.39 |\n", - "| H1 | uptrend | 617.68 | 23.9325 | 2.21739 | 4950.39 |\n", - "| M30 | uptrend | 595.9 | 16.5199 | 1.47664 | 4950.39 |\n", - "| M15 | uptrend | 263.03 | 11.1987 | 0.441841 | 4950.39 |\n", - "| M5 | uptrend | 1000.95 | 6.7662 | 1.0159 | 4950.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228187.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:27:42,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:27:52,522 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:02,538 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:12,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:22,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:26,840 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:26 CET)\" (scheduled at 2026-01-23 01:28:26.633942+01:00)\n", - "2026-01-23 01:28:26,840 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:26 CET)\" executed successfully\n", - "2026-01-23 01:28:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:32 CET)\" (scheduled at 2026-01-23 01:28:32.132962+01:00)\n", - "2026-01-23 01:28:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:32 CET)\" executed successfully\n", - "2026-01-23 01:28:32,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:34,176 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:34 CET)\" (scheduled at 2026-01-23 01:28:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:28:34,407 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.39 | 88.4779 | 9.9457 | 4951.14 |\n", - "| H4 | uptrend | 449.14 | 44.4614 | 2.99544 | 4951.14 |\n", - "| H1 | uptrend | 617.72 | 23.9325 | 2.21756 | 4951.11 |\n", - "| M30 | uptrend | 595.97 | 16.5199 | 1.47681 | 4951.11 |\n", - "| M15 | uptrend | 263.13 | 11.1987 | 0.442011 | 4951.11 |\n", - "| M5 | uptrend | 994.09 | 6.8141 | 1.01607 | 4951.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227931.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:28:42,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:28:52,647 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:02,676 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:12,684 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:22,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:26,737 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:26 CET)\" (scheduled at 2026-01-23 01:29:26.633942+01:00)\n", - "2026-01-23 01:29:26,737 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:26 CET)\" executed successfully\n", - "2026-01-23 01:29:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:32 CET)\" (scheduled at 2026-01-23 01:29:32.132962+01:00)\n", - "2026-01-23 01:29:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:32 CET)\" executed successfully\n", - "2026-01-23 01:29:32,737 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:34 CET)\" (scheduled at 2026-01-23 01:29:34.010875+01:00)\n", - "2026-01-23 01:29:34,161 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.4 | 88.4779 | 9.94582 | 4951.67 |\n", - "| H4 | uptrend | 449.16 | 44.4614 | 2.99556 | 4951.67 |\n", - "| H1 | uptrend | 617.76 | 23.9325 | 2.21769 | 4951.67 |\n", - "| M30 | uptrend | 596.03 | 16.5199 | 1.47694 | 4951.67 |\n", - "| M15 | uptrend | 263.21 | 11.1987 | 0.442144 | 4951.67 |\n", - "| M5 | uptrend | 989.55 | 6.8462 | 1.0162 | 4951.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227763.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:29:42,752 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:29:52,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:00,009 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 02:00:00 CET)\" (scheduled at 2026-01-23 01:30:00+01:00)\n", - "2026-01-23 01:30:00,009 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 02:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 01:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.20 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:30:02,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:12,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:22,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:26 CET)\" (scheduled at 2026-01-23 01:30:26.633942+01:00)\n", - "2026-01-23 01:30:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:26 CET)\" executed successfully\n", - "2026-01-23 01:30:32,160 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:32 CET)\" (scheduled at 2026-01-23 01:30:32.132962+01:00)\n", - "2026-01-23 01:30:32,160 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:32 CET)\" executed successfully\n", - "2026-01-23 01:30:32,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:34,271 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:34 CET)\" (scheduled at 2026-01-23 01:30:34.010875+01:00)\n", - "2026-01-23 01:30:34,461 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.44 | 88.4779 | 9.94639 | 4954.08 |\n", - "| H4 | uptrend | 449.25 | 44.4614 | 2.99613 | 4954.08 |\n", - "| H1 | uptrend | 617.92 | 23.9325 | 2.21826 | 4954.08 |\n", - "| M30 | uptrend | 639.19 | 15.4849 | 1.48468 | 4954.08 |\n", - "| M15 | uptrend | 300.81 | 10.5438 | 0.475759 | 4954.08 |\n", - "| M5 | uptrend | 1046.12 | 6.5022 | 1.02031 | 4954.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.37)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235757.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:30:42,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:30:52,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:02,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:12,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:22,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:26,654 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:26 CET)\" (scheduled at 2026-01-23 01:31:26.633942+01:00)\n", - "2026-01-23 01:31:26,654 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:26 CET)\" executed successfully\n", - "2026-01-23 01:31:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:32 CET)\" (scheduled at 2026-01-23 01:31:32.132962+01:00)\n", - "2026-01-23 01:31:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:32 CET)\" executed successfully\n", - "2026-01-23 01:31:32,991 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:34 CET)\" (scheduled at 2026-01-23 01:31:34.010875+01:00)\n", - "2026-01-23 01:31:34,153 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.42 | 88.4779 | 9.94605 | 4952.64 |\n", - "| H4 | uptrend | 449.2 | 44.4614 | 2.99579 | 4952.64 |\n", - "| H1 | uptrend | 617.83 | 23.9325 | 2.21792 | 4952.64 |\n", - "| M30 | uptrend | 636.05 | 15.5578 | 1.48434 | 4952.64 |\n", - "| M15 | uptrend | 298.54 | 10.6166 | 0.475419 | 4952.64 |\n", - "| M5 | uptrend | 1034.18 | 6.575 | 1.01997 | 4952.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234879.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:31:43,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:31:53,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:03,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:13,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:23,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:26 CET)\" (scheduled at 2026-01-23 01:32:26.633942+01:00)\n", - "2026-01-23 01:32:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:26 CET)\" executed successfully\n", - "2026-01-23 01:32:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:32 CET)\" (scheduled at 2026-01-23 01:32:32.132962+01:00)\n", - "2026-01-23 01:32:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:32 CET)\" executed successfully\n", - "2026-01-23 01:32:33,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:34 CET)\" (scheduled at 2026-01-23 01:32:34.010875+01:00)\n", - "2026-01-23 01:32:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 749.44 | 88.4779 | 9.94629 | 4953.66 |\n", - "| H4 | uptrend | 449.23 | 44.4614 | 2.99603 | 4953.66 |\n", - "| H1 | uptrend | 617.89 | 23.9325 | 2.21816 | 4953.66 |\n", - "| M30 | uptrend | 632.85 | 15.6392 | 1.48458 | 4953.66 |\n", - "| M15 | uptrend | 296.41 | 10.6981 | 0.47566 | 4953.66 |\n", - "| M5 | uptrend | 1021.77 | 6.6565 | 1.02021 | 4953.66 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.36)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234008.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:32:43,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:32:53,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:03,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:13,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:23,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:26 CET)\" (scheduled at 2026-01-23 01:33:26.633942+01:00)\n", - "2026-01-23 01:33:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:26 CET)\" executed successfully\n", - "2026-01-23 01:33:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:32 CET)\" (scheduled at 2026-01-23 01:33:32.132962+01:00)\n", - "2026-01-23 01:33:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:32 CET)\" executed successfully\n", - "2026-01-23 01:33:33,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:34 CET)\" (scheduled at 2026-01-23 01:33:34.010875+01:00)\n", - "2026-01-23 01:33:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.38 | 88.4779 | 9.9455 | 4950.3 |\n", - "| H4 | uptrend | 449.11 | 44.4614 | 2.99524 | 4950.3 |\n", - "| H1 | uptrend | 617.66 | 23.9325 | 2.21733 | 4950.13 |\n", - "| M30 | uptrend | 628.61 | 15.7356 | 1.48374 | 4950.13 |\n", - "| M15 | uptrend | 293.25 | 10.7945 | 0.474825 | 4950.13 |\n", - "| M5 | uptrend | 1006.36 | 6.7529 | 1.01938 | 4950.13 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232831.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:33:43,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:33:53,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:03,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:13,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:23,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:26,738 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:26 CET)\" (scheduled at 2026-01-23 01:34:26.633942+01:00)\n", - "2026-01-23 01:34:26,738 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:26 CET)\" executed successfully\n", - "2026-01-23 01:34:32,177 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:32 CET)\" (scheduled at 2026-01-23 01:34:32.132962+01:00)\n", - "2026-01-23 01:34:32,177 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:32 CET)\" executed successfully\n", - "2026-01-23 01:34:33,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:34 CET)\" (scheduled at 2026-01-23 01:34:34.010875+01:00)\n", - "2026-01-23 01:34:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.35 | 88.4779 | 9.94518 | 4948.94 |\n", - "| H4 | uptrend | 449.07 | 44.4614 | 2.99492 | 4948.94 |\n", - "| H1 | uptrend | 617.21 | 23.9468 | 2.21704 | 4948.94 |\n", - "| M30 | uptrend | 624.08 | 15.847 | 1.48346 | 4948.94 |\n", - "| M15 | uptrend | 290.08 | 10.9059 | 0.474544 | 4948.94 |\n", - "| M5 | uptrend | 989.75 | 6.8643 | 1.0191 | 4948.94 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231566.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:34:43,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:34:53,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:03,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:13,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:23,480 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:26,688 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:26 CET)\" (scheduled at 2026-01-23 01:35:26.633942+01:00)\n", - "2026-01-23 01:35:26,690 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:26 CET)\" executed successfully\n", - "2026-01-23 01:35:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:32 CET)\" (scheduled at 2026-01-23 01:35:32.132962+01:00)\n", - "2026-01-23 01:35:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:32 CET)\" executed successfully\n", - "2026-01-23 01:35:33,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:34 CET)\" (scheduled at 2026-01-23 01:35:34.010875+01:00)\n", - "2026-01-23 01:35:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.38 | 88.4779 | 9.94547 | 4950.2 |\n", - "| H4 | uptrend | 449.11 | 44.4614 | 2.99521 | 4950.2 |\n", - "| H1 | uptrend | 617.3 | 23.9468 | 2.21734 | 4950.2 |\n", - "| M30 | uptrend | 624.2 | 15.847 | 1.48376 | 4950.2 |\n", - "| M15 | uptrend | 290.27 | 10.9059 | 0.474842 | 4950.2 |\n", - "| M5 | uptrend | 1051.8 | 6.4726 | 1.02118 | 4950.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234080.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:35:43,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:35:53,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:03,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:13,617 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:23,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:26 CET)\" (scheduled at 2026-01-23 01:36:26.633942+01:00)\n", - "2026-01-23 01:36:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:26 CET)\" executed successfully\n", - "2026-01-23 01:36:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:32 CET)\" (scheduled at 2026-01-23 01:36:32.132962+01:00)\n", - "2026-01-23 01:36:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:32 CET)\" executed successfully\n", - "2026-01-23 01:36:33,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:34 CET)\" (scheduled at 2026-01-23 01:36:34.010875+01:00)\n", - "2026-01-23 01:36:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.4 | 88.4779 | 9.94584 | 4951.77 |\n", - "| H4 | uptrend | 449.17 | 44.4614 | 2.99559 | 4951.77 |\n", - "| H1 | uptrend | 617.4 | 23.9468 | 2.21771 | 4951.77 |\n", - "| M30 | uptrend | 624.36 | 15.847 | 1.48413 | 4951.77 |\n", - "| M15 | uptrend | 290.49 | 10.9059 | 0.475213 | 4951.77 |\n", - "| M5 | uptrend | 1032.03 | 6.599 | 1.02156 | 4951.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233330.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:36:43,677 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:36:53,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:03,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:13,739 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:24,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:27,052 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:26 CET)\" (scheduled at 2026-01-23 01:37:26.633942+01:00)\n", - "2026-01-23 01:37:27,052 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:26 CET)\" executed successfully\n", - "2026-01-23 01:37:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:32 CET)\" (scheduled at 2026-01-23 01:37:32.132962+01:00)\n", - "2026-01-23 01:37:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:32 CET)\" executed successfully\n", - "2026-01-23 01:37:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:34 CET)\" (scheduled at 2026-01-23 01:37:34.010875+01:00)\n", - "2026-01-23 01:37:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.39 | 88.4779 | 9.94562 | 4950.82 |\n", - "| H4 | uptrend | 449.13 | 44.4614 | 2.99536 | 4950.82 |\n", - "| H1 | uptrend | 617.34 | 23.9468 | 2.21749 | 4950.82 |\n", - "| M30 | uptrend | 624.26 | 15.847 | 1.48391 | 4950.82 |\n", - "| M15 | uptrend | 290.36 | 10.9059 | 0.474989 | 4950.82 |\n", - "| M5 | uptrend | 1030.69 | 6.6062 | 1.02133 | 4950.82 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233251.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:37:34,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:44,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:37:54,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:04,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:14,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:24,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:26 CET)\" (scheduled at 2026-01-23 01:38:26.633942+01:00)\n", - "2026-01-23 01:38:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:26 CET)\" executed successfully\n", - "2026-01-23 01:38:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:32 CET)\" (scheduled at 2026-01-23 01:38:32.132962+01:00)\n", - "2026-01-23 01:38:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:32 CET)\" executed successfully\n", - "2026-01-23 01:38:34,040 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:34 CET)\" (scheduled at 2026-01-23 01:38:34.010875+01:00)\n", - "2026-01-23 01:38:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.42 | 88.4779 | 9.94608 | 4952.76 |\n", - "| H4 | uptrend | 449.2 | 44.4614 | 2.99582 | 4952.76 |\n", - "| H1 | uptrend | 617.46 | 23.9468 | 2.21795 | 4952.76 |\n", - "| M30 | uptrend | 624.46 | 15.847 | 1.48436 | 4952.76 |\n", - "| M15 | uptrend | 290.64 | 10.9059 | 0.475447 | 4952.76 |\n", - "| M5 | uptrend | 1021.76 | 6.6669 | 1.02179 | 4952.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232944.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:38:34,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:44,393 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:38:54,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:04,429 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:14,455 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:24,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:26 CET)\" (scheduled at 2026-01-23 01:39:26.633942+01:00)\n", - "2026-01-23 01:39:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:26 CET)\" executed successfully\n", - "2026-01-23 01:39:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:32 CET)\" (scheduled at 2026-01-23 01:39:32.132962+01:00)\n", - "2026-01-23 01:39:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:32 CET)\" executed successfully\n", - "2026-01-23 01:39:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:34 CET)\" (scheduled at 2026-01-23 01:39:34.010875+01:00)\n", - "2026-01-23 01:39:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.43 | 88.4779 | 9.94624 | 4953.47 |\n", - "| H4 | uptrend | 449.23 | 44.4614 | 2.99599 | 4953.47 |\n", - "| H1 | uptrend | 617.51 | 23.9468 | 2.21811 | 4953.47 |\n", - "| M30 | uptrend | 621.86 | 15.9149 | 1.48453 | 4953.47 |\n", - "| M15 | uptrend | 288.94 | 10.9738 | 0.475615 | 4953.47 |\n", - "| M5 | uptrend | 990.21 | 6.8804 | 1.02196 | 4953.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.35)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231379.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:39:34,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:34,808 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 02:39:34 CET)\" (scheduled at 2026-01-23 01:39:34.806528+01:00)\n", - "2026-01-23 01:39:34,819 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 02:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[01:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 4500.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:39:44,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:39:54,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:04,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:14,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:24,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:26 CET)\" (scheduled at 2026-01-23 01:40:26.633942+01:00)\n", - "2026-01-23 01:40:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:26 CET)\" executed successfully\n", - "2026-01-23 01:40:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:32 CET)\" (scheduled at 2026-01-23 01:40:32.132962+01:00)\n", - "2026-01-23 01:40:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:32 CET)\" executed successfully\n", - "2026-01-23 01:40:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:34 CET)\" (scheduled at 2026-01-23 01:40:34.010875+01:00)\n", - "2026-01-23 01:40:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.36 | 88.4779 | 9.94525 | 4949.27 |\n", - "| H4 | uptrend | 449.08 | 44.4614 | 2.99499 | 4949.27 |\n", - "| H1 | uptrend | 617.24 | 23.9468 | 2.21712 | 4949.27 |\n", - "| M30 | uptrend | 621.45 | 15.9149 | 1.48354 | 4949.27 |\n", - "| M15 | uptrend | 288.34 | 10.9738 | 0.474622 | 4949.27 |\n", - "| M5 | uptrend | 1026.09 | 6.6418 | 1.02226 | 4949.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 232707.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:40:34,658 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:44,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:40:54,717 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:04,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:14,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:24,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:26 CET)\" (scheduled at 2026-01-23 01:41:26.633942+01:00)\n", - "2026-01-23 01:41:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:26 CET)\" executed successfully\n", - "2026-01-23 01:41:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:32 CET)\" (scheduled at 2026-01-23 01:41:32.132962+01:00)\n", - "2026-01-23 01:41:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:32 CET)\" executed successfully\n", - "2026-01-23 01:41:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:34 CET)\" (scheduled at 2026-01-23 01:41:34.010875+01:00)\n", - "2026-01-23 01:41:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.35 | 88.4779 | 9.94516 | 4948.9 |\n", - "| H4 | uptrend | 449.06 | 44.4614 | 2.99491 | 4948.9 |\n", - "| H1 | uptrend | 616.35 | 23.9804 | 2.21704 | 4948.9 |\n", - "| M30 | uptrend | 620.1 | 15.9485 | 1.48345 | 4948.9 |\n", - "| M15 | uptrend | 287.4 | 11.0074 | 0.474535 | 4948.9 |\n", - "| M5 | uptrend | 1007.26 | 6.7654 | 1.02218 | 4948.9 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231701.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:41:34,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:44,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:41:54,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:04,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:14,896 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:24,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:27,037 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:26 CET)\" (scheduled at 2026-01-23 01:42:26.633942+01:00)\n", - "2026-01-23 01:42:27,037 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:26 CET)\" executed successfully\n", - "2026-01-23 01:42:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:32 CET)\" (scheduled at 2026-01-23 01:42:32.132962+01:00)\n", - "2026-01-23 01:42:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:32 CET)\" executed successfully\n", - "2026-01-23 01:42:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:34 CET)\" (scheduled at 2026-01-23 01:42:34.010875+01:00)\n", - "2026-01-23 01:42:34,188 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.4 | 88.4779 | 9.94584 | 4951.74 |\n", - "| H4 | uptrend | 449.17 | 44.4614 | 2.99558 | 4951.74 |\n", - "| H1 | uptrend | 616.53 | 23.9804 | 2.21771 | 4951.74 |\n", - "| M30 | uptrend | 620.38 | 15.9485 | 1.48412 | 4951.74 |\n", - "| M15 | uptrend | 287.81 | 11.0074 | 0.475206 | 4951.74 |\n", - "| M5 | uptrend | 1007.92 | 6.7654 | 1.02285 | 4951.74 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231800.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:42:34,942 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:44,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:42:54,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:05,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:15,050 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:25,063 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:26 CET)\" (scheduled at 2026-01-23 01:43:26.633942+01:00)\n", - "2026-01-23 01:43:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:26 CET)\" executed successfully\n", - "2026-01-23 01:43:32,272 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:32 CET)\" (scheduled at 2026-01-23 01:43:32.132962+01:00)\n", - "2026-01-23 01:43:32,272 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:32 CET)\" executed successfully\n", - "2026-01-23 01:43:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:34 CET)\" (scheduled at 2026-01-23 01:43:34.010875+01:00)\n", - "2026-01-23 01:43:34,165 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.36 | 88.4779 | 9.94525 | 4949.27 |\n", - "| H4 | uptrend | 449.08 | 44.4614 | 2.995 | 4949.3 |\n", - "| H1 | uptrend | 616.37 | 23.9804 | 2.21713 | 4949.3 |\n", - "| M30 | uptrend | 620.14 | 15.9485 | 1.48355 | 4949.3 |\n", - "| M15 | uptrend | 287.46 | 11.0074 | 0.474629 | 4949.3 |\n", - "| M5 | uptrend | 1007.35 | 6.7654 | 1.02227 | 4949.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231715.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:43:35,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:45,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:43:55,144 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:05,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:15,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:25,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:26 CET)\" (scheduled at 2026-01-23 01:44:26.633942+01:00)\n", - "2026-01-23 01:44:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:26 CET)\" executed successfully\n", - "2026-01-23 01:44:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:32 CET)\" (scheduled at 2026-01-23 01:44:32.132962+01:00)\n", - "2026-01-23 01:44:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:32 CET)\" executed successfully\n", - "2026-01-23 01:44:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:34 CET)\" (scheduled at 2026-01-23 01:44:34.010875+01:00)\n", - "2026-01-23 01:44:34,218 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.35 | 88.4779 | 9.9452 | 4949.04 |\n", - "| H4 | uptrend | 449.07 | 44.4614 | 2.99494 | 4949.04 |\n", - "| H1 | uptrend | 616.36 | 23.9804 | 2.21707 | 4949.04 |\n", - "| M30 | uptrend | 620.12 | 15.9485 | 1.48349 | 4949.04 |\n", - "| M15 | uptrend | 287.42 | 11.0074 | 0.474568 | 4949.04 |\n", - "| M5 | uptrend | 1007.29 | 6.7654 | 1.02221 | 4949.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231706.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:44:35,237 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:45,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:44:55,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:05,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:15,334 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:25,365 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:26,826 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:26 CET)\" (scheduled at 2026-01-23 01:45:26.633942+01:00)\n", - "2026-01-23 01:45:26,832 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:26 CET)\" executed successfully\n", - "2026-01-23 01:45:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:32 CET)\" (scheduled at 2026-01-23 01:45:32.132962+01:00)\n", - "2026-01-23 01:45:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:32 CET)\" executed successfully\n", - "2026-01-23 01:45:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:34 CET)\" (scheduled at 2026-01-23 01:45:34.010875+01:00)\n", - "2026-01-23 01:45:34,162 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.39 | 88.4779 | 9.94567 | 4951.04 |\n", - "| H4 | uptrend | 449.14 | 44.4614 | 2.99541 | 4951.04 |\n", - "| H1 | uptrend | 616.49 | 23.9804 | 2.21754 | 4951.04 |\n", - "| M30 | uptrend | 620.31 | 15.9485 | 1.48396 | 4951.04 |\n", - "| M15 | uptrend | 326.49 | 10.4082 | 0.509734 | 4951.04 |\n", - "| M5 | uptrend | 1054.59 | 6.4693 | 1.02337 | 4951.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235976.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:45:35,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:45,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:45:55,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:05,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:15,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:25,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:26,697 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:26 CET)\" (scheduled at 2026-01-23 01:46:26.633942+01:00)\n", - "2026-01-23 01:46:26,697 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:26 CET)\" executed successfully\n", - "2026-01-23 01:46:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:32 CET)\" (scheduled at 2026-01-23 01:46:32.132962+01:00)\n", - "2026-01-23 01:46:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:32 CET)\" executed successfully\n", - "2026-01-23 01:46:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:34 CET)\" (scheduled at 2026-01-23 01:46:34.010875+01:00)\n", - "2026-01-23 01:46:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.39 | 88.4779 | 9.94568 | 4951.06 |\n", - "| H4 | uptrend | 449.14 | 44.4614 | 2.99542 | 4951.06 |\n", - "| H1 | uptrend | 616.49 | 23.9804 | 2.21754 | 4951.06 |\n", - "| M30 | uptrend | 620.32 | 15.9485 | 1.48396 | 4951.06 |\n", - "| M15 | uptrend | 326.5 | 10.4082 | 0.509737 | 4951.05 |\n", - "| M5 | uptrend | 1054.59 | 6.4693 | 1.02337 | 4951.05 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235976.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:46:35,522 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:45,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:46:55,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:05,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:15,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:25,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:26,723 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:26 CET)\" (scheduled at 2026-01-23 01:47:26.633942+01:00)\n", - "2026-01-23 01:47:26,723 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:26 CET)\" executed successfully\n", - "2026-01-23 01:47:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:32 CET)\" (scheduled at 2026-01-23 01:47:32.132962+01:00)\n", - "2026-01-23 01:47:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:32 CET)\" executed successfully\n", - "2026-01-23 01:47:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:34 CET)\" (scheduled at 2026-01-23 01:47:34.010875+01:00)\n", - "2026-01-23 01:47:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.39 | 88.4779 | 9.94572 | 4951.23 |\n", - "| H4 | uptrend | 449.15 | 44.4614 | 2.99546 | 4951.23 |\n", - "| H1 | uptrend | 616.5 | 23.9804 | 2.21759 | 4951.23 |\n", - "| M30 | uptrend | 620.33 | 15.9485 | 1.484 | 4951.23 |\n", - "| M15 | uptrend | 326.52 | 10.4082 | 0.509779 | 4951.23 |\n", - "| M5 | uptrend | 1054.63 | 6.4693 | 1.02341 | 4951.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235982.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:47:35,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:45,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:47:55,717 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:05,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:15,763 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:25,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:26 CET)\" (scheduled at 2026-01-23 01:48:26.633942+01:00)\n", - "2026-01-23 01:48:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:26 CET)\" executed successfully\n", - "2026-01-23 01:48:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:32 CET)\" (scheduled at 2026-01-23 01:48:32.132962+01:00)\n", - "2026-01-23 01:48:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:32 CET)\" executed successfully\n", - "2026-01-23 01:48:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:34 CET)\" (scheduled at 2026-01-23 01:48:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.44 | 88.4779 | 9.94629 | 4953.68 |\n", - "| H4 | uptrend | 449.23 | 44.4614 | 2.99604 | 4953.68 |\n", - "| H1 | uptrend | 616.66 | 23.9804 | 2.21816 | 4953.68 |\n", - "| M30 | uptrend | 620.57 | 15.9485 | 1.48458 | 4953.68 |\n", - "| M15 | uptrend | 322.93 | 10.5361 | 0.510358 | 4953.68 |\n", - "| M5 | uptrend | 1034.78 | 6.5972 | 1.02399 | 4953.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.36)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235014.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:48:34,252 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:48:35,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:45,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:48:55,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:05,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:15,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:25,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:26 CET)\" (scheduled at 2026-01-23 01:49:26.633942+01:00)\n", - "2026-01-23 01:49:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:26 CET)\" executed successfully\n", - "2026-01-23 01:49:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:32 CET)\" (scheduled at 2026-01-23 01:49:32.132962+01:00)\n", - "2026-01-23 01:49:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:32 CET)\" executed successfully\n", - "2026-01-23 01:49:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:34 CET)\" (scheduled at 2026-01-23 01:49:34.010875+01:00)\n", - "2026-01-23 01:49:34,200 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.44 | 88.4779 | 9.94638 | 4954.04 |\n", - "| H4 | uptrend | 449.25 | 44.4614 | 2.99612 | 4954.04 |\n", - "| H1 | uptrend | 616.68 | 23.9804 | 2.21825 | 4954.04 |\n", - "| M30 | uptrend | 620.61 | 15.9485 | 1.48467 | 4954.04 |\n", - "| M15 | uptrend | 321.82 | 10.574 | 0.510443 | 4954.04 |\n", - "| M5 | uptrend | 1028.96 | 6.635 | 1.02408 | 4954.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.36)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234721.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:49:35,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:45,970 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:49:55,988 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:06,016 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:16,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:26,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:26 CET)\" (scheduled at 2026-01-23 01:50:26.633942+01:00)\n", - "2026-01-23 01:50:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:26 CET)\" executed successfully\n", - "2026-01-23 01:50:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:32 CET)\" (scheduled at 2026-01-23 01:50:32.132962+01:00)\n", - "2026-01-23 01:50:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:32 CET)\" executed successfully\n", - "2026-01-23 01:50:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:34 CET)\" (scheduled at 2026-01-23 01:50:34.010875+01:00)\n", - "2026-01-23 01:50:34,214 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.49 | 88.4779 | 9.94695 | 4956.46 |\n", - "| H4 | uptrend | 449.33 | 44.4614 | 2.99669 | 4956.46 |\n", - "| H1 | uptrend | 616.84 | 23.9804 | 2.21882 | 4956.46 |\n", - "| M30 | uptrend | 619.71 | 15.9778 | 1.48524 | 4956.46 |\n", - "| M15 | uptrend | 317.36 | 10.7347 | 0.511015 | 4956.46 |\n", - "| M5 | uptrend | 1081.92 | 6.3283 | 1.02701 | 4956.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236522.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:50:36,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:46,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:50:56,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:06,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:16,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:26,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:26,700 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:26 CET)\" (scheduled at 2026-01-23 01:51:26.633942+01:00)\n", - "2026-01-23 01:51:26,704 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:26 CET)\" executed successfully\n", - "2026-01-23 01:51:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:32 CET)\" (scheduled at 2026-01-23 01:51:32.132962+01:00)\n", - "2026-01-23 01:51:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:32 CET)\" executed successfully\n", - "2026-01-23 01:51:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:34 CET)\" (scheduled at 2026-01-23 01:51:34.010875+01:00)\n", - "2026-01-23 01:51:34,248 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.49 | 88.4779 | 9.94704 | 4956.85 |\n", - "| H4 | uptrend | 449.35 | 44.4614 | 2.99679 | 4956.85 |\n", - "| H1 | uptrend | 616.87 | 23.9804 | 2.21891 | 4956.85 |\n", - "| M30 | uptrend | 618.48 | 16.0106 | 1.48533 | 4956.85 |\n", - "| M15 | uptrend | 316.45 | 10.7675 | 0.511107 | 4956.85 |\n", - "| M5 | uptrend | 1076.43 | 6.3612 | 1.0271 | 4956.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236152.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:51:36,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:46,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:51:56,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:06,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:16,324 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:26,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:26,699 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:26 CET)\" (scheduled at 2026-01-23 01:52:26.633942+01:00)\n", - "2026-01-23 01:52:26,701 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:26 CET)\" executed successfully\n", - "2026-01-23 01:52:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:32 CET)\" (scheduled at 2026-01-23 01:52:32.132962+01:00)\n", - "2026-01-23 01:52:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:32 CET)\" executed successfully\n", - "2026-01-23 01:52:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:34 CET)\" (scheduled at 2026-01-23 01:52:34.010875+01:00)\n", - "2026-01-23 01:52:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.47 | 88.4779 | 9.9468 | 4955.8 |\n", - "| H4 | uptrend | 449.31 | 44.4614 | 2.99654 | 4955.8 |\n", - "| H1 | uptrend | 616.8 | 23.9804 | 2.21867 | 4955.8 |\n", - "| M30 | uptrend | 616.45 | 16.0606 | 1.48508 | 4955.8 |\n", - "| M15 | uptrend | 314.83 | 10.8175 | 0.510859 | 4955.8 |\n", - "| M5 | uptrend | 1065.87 | 6.4226 | 1.02686 | 4955.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.41)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235461.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:52:36,366 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:46,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:52:56,419 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:06,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:16,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:26,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:26 CET)\" (scheduled at 2026-01-23 01:53:26.633942+01:00)\n", - "2026-01-23 01:53:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:26 CET)\" executed successfully\n", - "2026-01-23 01:53:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:32 CET)\" (scheduled at 2026-01-23 01:53:32.132962+01:00)\n", - "2026-01-23 01:53:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:32 CET)\" executed successfully\n", - "2026-01-23 01:53:34,128 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:34 CET)\" (scheduled at 2026-01-23 01:53:34.010875+01:00)\n", - "2026-01-23 01:53:34,297 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.49 | 88.4779 | 9.94693 | 4956.39 |\n", - "| H4 | uptrend | 449.33 | 44.4614 | 2.99668 | 4956.39 |\n", - "| H1 | uptrend | 616.84 | 23.9804 | 2.2188 | 4956.39 |\n", - "| M30 | uptrend | 616.51 | 16.0606 | 1.48522 | 4956.39 |\n", - "| M15 | uptrend | 314.92 | 10.8175 | 0.510999 | 4956.39 |\n", - "| M5 | uptrend | 1066.02 | 6.4226 | 1.027 | 4956.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235482.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:53:36,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:46,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:53:56,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:06,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:16,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:26,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:26,996 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:26 CET)\" (scheduled at 2026-01-23 01:54:26.633942+01:00)\n", - "2026-01-23 01:54:26,998 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:26 CET)\" executed successfully\n", - "2026-01-23 01:54:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:32 CET)\" (scheduled at 2026-01-23 01:54:32.132962+01:00)\n", - "2026-01-23 01:54:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:32 CET)\" executed successfully\n", - "2026-01-23 01:54:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:34 CET)\" (scheduled at 2026-01-23 01:54:34.010875+01:00)\n", - "2026-01-23 01:54:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.52 | 88.4779 | 9.94734 | 4958.12 |\n", - "| H4 | uptrend | 449.39 | 44.4614 | 2.99709 | 4958.12 |\n", - "| H1 | uptrend | 616.95 | 23.9804 | 2.21921 | 4958.12 |\n", - "| M30 | uptrend | 614.71 | 16.112 | 1.48563 | 4958.12 |\n", - "| M15 | uptrend | 313.68 | 10.869 | 0.511407 | 4958.12 |\n", - "| M5 | uptrend | 1057.97 | 6.4741 | 1.0274 | 4958.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.47)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234958.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:54:36,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:46,757 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:54:56,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:06,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:16,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:26 CET)\" (scheduled at 2026-01-23 01:55:26.633942+01:00)\n", - "2026-01-23 01:55:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:26 CET)\" executed successfully\n", - "2026-01-23 01:55:26,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:32 CET)\" (scheduled at 2026-01-23 01:55:32.132962+01:00)\n", - "2026-01-23 01:55:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:32 CET)\" executed successfully\n", - "2026-01-23 01:55:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:34 CET)\" (scheduled at 2026-01-23 01:55:34.010875+01:00)\n", - "2026-01-23 01:55:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.55 | 88.4779 | 9.94783 | 4960.17 |\n", - "| H4 | uptrend | 449.46 | 44.4614 | 2.99757 | 4960.17 |\n", - "| H1 | uptrend | 617.09 | 23.9804 | 2.2197 | 4960.17 |\n", - "| M30 | uptrend | 609.56 | 16.2535 | 1.48612 | 4960.17 |\n", - "| M15 | uptrend | 309.94 | 11.0104 | 0.511889 | 4960.16 |\n", - "| M5 | uptrend | 1101.15 | 6.2432 | 1.0312 | 4960.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236067.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:55:36,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:46,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:55:56,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:06,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:16,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:26 CET)\" (scheduled at 2026-01-23 01:56:26.633942+01:00)\n", - "2026-01-23 01:56:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:26 CET)\" executed successfully\n", - "2026-01-23 01:56:27,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:32 CET)\" (scheduled at 2026-01-23 01:56:32.132962+01:00)\n", - "2026-01-23 01:56:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:32 CET)\" executed successfully\n", - "2026-01-23 01:56:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:34 CET)\" (scheduled at 2026-01-23 01:56:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:56:34,433 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.58 | 88.4779 | 9.94818 | 4961.67 |\n", - "| H4 | uptrend | 449.52 | 44.4614 | 2.99792 | 4961.67 |\n", - "| H1 | uptrend | 617.19 | 23.9804 | 2.22005 | 4961.67 |\n", - "| M30 | uptrend | 603.42 | 16.4228 | 1.48647 | 4961.67 |\n", - "| M15 | uptrend | 305.46 | 11.1797 | 0.512246 | 4961.67 |\n", - "| M5 | uptrend | 1072.45 | 6.4124 | 1.03155 | 4961.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234173.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:56:37,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:47,053 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:56:57,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:07,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:17,124 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:26,654 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:26 CET)\" (scheduled at 2026-01-23 01:57:26.633942+01:00)\n", - "2026-01-23 01:57:26,654 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:26 CET)\" executed successfully\n", - "2026-01-23 01:57:27,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:32 CET)\" (scheduled at 2026-01-23 01:57:32.132962+01:00)\n", - "2026-01-23 01:57:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:32 CET)\" executed successfully\n", - "2026-01-23 01:57:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:34 CET)\" (scheduled at 2026-01-23 01:57:34.010875+01:00)\n", - "2026-01-23 01:57:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.57 | 88.4779 | 9.94811 | 4961.36 |\n", - "| H4 | uptrend | 449.51 | 44.4614 | 2.99785 | 4961.36 |\n", - "| H1 | uptrend | 617.17 | 23.9804 | 2.21998 | 4961.36 |\n", - "| M30 | uptrend | 603.39 | 16.4228 | 1.4864 | 4961.36 |\n", - "| M15 | uptrend | 305.42 | 11.1797 | 0.512173 | 4961.36 |\n", - "| M5 | uptrend | 1072.37 | 6.4124 | 1.03148 | 4961.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234162.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:57:37,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:47,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:57:57,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:07,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:17,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:26 CET)\" (scheduled at 2026-01-23 01:58:26.633942+01:00)\n", - "2026-01-23 01:58:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:26 CET)\" executed successfully\n", - "2026-01-23 01:58:27,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:32 CET)\" (scheduled at 2026-01-23 01:58:32.132962+01:00)\n", - "2026-01-23 01:58:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:32 CET)\" executed successfully\n", - "2026-01-23 01:58:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:34 CET)\" (scheduled at 2026-01-23 01:58:34.010875+01:00)\n", - "2026-01-23 01:58:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 01:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 749.46 | 88.4922 | 9.94824 | 4961.9 |\n", - "| H4 | uptrend | 449.38 | 44.4757 | 2.99798 | 4961.9 |\n", - "| H1 | uptrend | 616.83 | 23.9947 | 2.22011 | 4961.9 |\n", - "| M30 | uptrend | 601.19 | 16.4842 | 1.48653 | 4961.9 |\n", - "| M15 | uptrend | 303.82 | 11.2411 | 0.512291 | 4961.86 |\n", - "| M5 | uptrend | 1062.32 | 6.4739 | 1.0316 | 4961.86 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 629.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 233443.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:58:37,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:47,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:58:57,363 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:07,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:17,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:26 CET)\" (scheduled at 2026-01-23 01:59:26.633942+01:00)\n", - "2026-01-23 01:59:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:26 CET)\" executed successfully\n", - "2026-01-23 01:59:27,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:32 CET)\" (scheduled at 2026-01-23 01:59:32.132962+01:00)\n", - "2026-01-23 01:59:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:32 CET)\" executed successfully\n", - "2026-01-23 01:59:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:34 CET)\" (scheduled at 2026-01-23 01:59:34.010875+01:00)\n", - "2026-01-23 01:59:34,213 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 748.21 | 88.6472 | 9.94906 | 4965.37 |\n", - "| H4 | uptrend | 447.94 | 44.6307 | 2.9988 | 4965.37 |\n", - "| H1 | uptrend | 613.1 | 24.1497 | 2.22093 | 4965.37 |\n", - "| M30 | uptrend | 595.92 | 16.6392 | 1.48735 | 4965.41 |\n", - "| M15 | uptrend | 300.18 | 11.3961 | 0.513127 | 4965.4 |\n", - "| M5 | uptrend | 1038.32 | 6.6289 | 1.03244 | 4965.4 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 628.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 231338.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 01:59:37,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:47,497 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 01:59:57,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:00,030 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 02:30:00 CET)\" (scheduled at 2026-01-23 02:00:00+01:00)\n", - "2026-01-23 02:00:00,045 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 02:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 02:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.42 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:00:07,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:17,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:26 CET)\" (scheduled at 2026-01-23 02:00:26.633942+01:00)\n", - "2026-01-23 02:00:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:26 CET)\" executed successfully\n", - "2026-01-23 02:00:27,601 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:32,176 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:32 CET)\" (scheduled at 2026-01-23 02:00:32.132962+01:00)\n", - "2026-01-23 02:00:32,176 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:32 CET)\" executed successfully\n", - "2026-01-23 02:00:34,492 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:34 CET)\" (scheduled at 2026-01-23 02:00:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:00:34,750 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.24 | 88.7586 | 9.94857 | 4963.32 |\n", - "| H4 | uptrend | 446.76 | 44.7421 | 2.99831 | 4963.32 |\n", - "| H1 | uptrend | 651.07 | 23.2154 | 2.26723 | 4963.35 |\n", - "| M30 | uptrend | 615.27 | 16.2414 | 1.49893 | 4963.29 |\n", - "| M15 | uptrend | 321.58 | 11.3728 | 0.548585 | 4963.29 |\n", - "| M5 | uptrend | 995.04 | 6.9461 | 1.03675 | 4963.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 627.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236129.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:00:37,632 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:47,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:00:57,673 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:07,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:17,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:26,750 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:26 CET)\" (scheduled at 2026-01-23 02:01:26.633942+01:00)\n", - "2026-01-23 02:01:26,750 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:26 CET)\" executed successfully\n", - "2026-01-23 02:01:27,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:32,666 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:32 CET)\" (scheduled at 2026-01-23 02:01:32.132962+01:00)\n", - "2026-01-23 02:01:32,684 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:32 CET)\" executed successfully\n", - "2026-01-23 02:01:34,366 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:34 CET)\" (scheduled at 2026-01-23 02:01:34.010875+01:00)\n", - "2026-01-23 02:01:34,553 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94667 | 4955.26 |\n", - "| H4 | uptrend | 446.47 | 44.7421 | 2.99641 | 4955.26 |\n", - "| H1 | uptrend | 648.58 | 23.2847 | 2.26532 | 4955.26 |\n", - "| M30 | uptrend | 611.88 | 16.3107 | 1.49703 | 4955.26 |\n", - "| M15 | uptrend | 318.52 | 11.4421 | 0.546687 | 4955.26 |\n", - "| M5 | uptrend | 983.41 | 7.0154 | 1.03485 | 4955.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.85)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234941.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:01:37,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:47,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:01:57,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:07,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:17,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:26,657 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:26 CET)\" (scheduled at 2026-01-23 02:02:26.633942+01:00)\n", - "2026-01-23 02:02:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:26 CET)\" executed successfully\n", - "2026-01-23 02:02:27,908 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:32 CET)\" (scheduled at 2026-01-23 02:02:32.132962+01:00)\n", - "2026-01-23 02:02:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:32 CET)\" executed successfully\n", - "2026-01-23 02:02:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:34 CET)\" (scheduled at 2026-01-23 02:02:34.010875+01:00)\n", - "2026-01-23 02:02:34,218 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94513 | 4948.73 |\n", - "| H4 | uptrend | 446.24 | 44.7421 | 2.99487 | 4948.73 |\n", - "| H1 | uptrend | 635.28 | 23.7561 | 2.26377 | 4948.73 |\n", - "| M30 | uptrend | 594.08 | 16.7821 | 1.49549 | 4948.73 |\n", - "| M15 | uptrend | 305.06 | 11.9135 | 0.545144 | 4948.73 |\n", - "| M5 | uptrend | 920.11 | 7.4868 | 1.03331 | 4948.73 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 228831.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:02:37,940 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:47,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:02:57,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:08,006 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:18,039 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:26 CET)\" (scheduled at 2026-01-23 02:03:26.633942+01:00)\n", - "2026-01-23 02:03:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:26 CET)\" executed successfully\n", - "2026-01-23 02:03:28,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:32 CET)\" (scheduled at 2026-01-23 02:03:32.132962+01:00)\n", - "2026-01-23 02:03:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:32 CET)\" executed successfully\n", - "2026-01-23 02:03:34,032 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:34 CET)\" (scheduled at 2026-01-23 02:03:34.010875+01:00)\n", - "2026-01-23 02:03:34,225 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.94 | 88.7586 | 9.9446 | 4946.52 |\n", - "| H4 | uptrend | 446.17 | 44.7421 | 2.99436 | 4946.57 |\n", - "| H1 | uptrend | 612.79 | 24.6226 | 2.26326 | 4946.57 |\n", - "| M30 | uptrend | 564.68 | 17.6485 | 1.49486 | 4946.05 |\n", - "| M15 | uptrend | 284.02 | 12.7799 | 0.544464 | 4945.85 |\n", - "| M5 | uptrend | 824.13 | 8.3532 | 1.03263 | 4945.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219122.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:03:38,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:48,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:03:58,140 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:08,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:18,208 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:26,740 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:26 CET)\" (scheduled at 2026-01-23 02:04:26.633942+01:00)\n", - "2026-01-23 02:04:26,740 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:26 CET)\" executed successfully\n", - "2026-01-23 02:04:28,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:32 CET)\" (scheduled at 2026-01-23 02:04:32.132962+01:00)\n", - "2026-01-23 02:04:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:32 CET)\" executed successfully\n", - "2026-01-23 02:04:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:34 CET)\" (scheduled at 2026-01-23 02:04:34.010875+01:00)\n", - "2026-01-23 02:04:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.88 | 88.7586 | 9.94378 | 4943.03 |\n", - "| H4 | uptrend | 446.04 | 44.7421 | 2.99352 | 4943.03 |\n", - "| H1 | uptrend | 612.55 | 24.6226 | 2.2624 | 4942.92 |\n", - "| M30 | uptrend | 564.4 | 17.6485 | 1.49412 | 4942.92 |\n", - "| M15 | uptrend | 283.66 | 12.7799 | 0.543772 | 4942.92 |\n", - "| M5 | uptrend | 823.59 | 8.3532 | 1.03195 | 4942.97 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.54)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219024.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:04:38,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:48,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:04:58,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:08,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:18,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:26,775 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:26 CET)\" (scheduled at 2026-01-23 02:05:26.633942+01:00)\n", - "2026-01-23 02:05:26,775 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:26 CET)\" executed successfully\n", - "2026-01-23 02:05:28,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:32 CET)\" (scheduled at 2026-01-23 02:05:32.132962+01:00)\n", - "2026-01-23 02:05:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:32 CET)\" executed successfully\n", - "2026-01-23 02:05:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:34 CET)\" (scheduled at 2026-01-23 02:05:34.010875+01:00)\n", - "2026-01-23 02:05:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.88 | 88.7586 | 9.94382 | 4943.19 |\n", - "| H4 | uptrend | 446.05 | 44.7421 | 2.99356 | 4943.19 |\n", - "| H1 | uptrend | 612.57 | 24.6226 | 2.26247 | 4943.19 |\n", - "| M30 | uptrend | 564.42 | 17.6485 | 1.49418 | 4943.19 |\n", - "| M15 | uptrend | 283.69 | 12.7799 | 0.543836 | 4943.19 |\n", - "| M5 | uptrend | 848.59 | 8.1073 | 1.03196 | 4943.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220030.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:05:38,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:48,429 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:05:58,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:08,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:18,511 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:26 CET)\" (scheduled at 2026-01-23 02:06:26.633942+01:00)\n", - "2026-01-23 02:06:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:26 CET)\" executed successfully\n", - "2026-01-23 02:06:28,550 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:32 CET)\" (scheduled at 2026-01-23 02:06:32.132962+01:00)\n", - "2026-01-23 02:06:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:32 CET)\" executed successfully\n", - "2026-01-23 02:06:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:34 CET)\" (scheduled at 2026-01-23 02:06:34.010875+01:00)\n", - "2026-01-23 02:06:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.86 | 88.7586 | 9.94358 | 4942.18 |\n", - "| H4 | uptrend | 446.01 | 44.7421 | 2.99332 | 4942.18 |\n", - "| H1 | uptrend | 612.51 | 24.6226 | 2.26223 | 4942.18 |\n", - "| M30 | uptrend | 564.33 | 17.6485 | 1.49394 | 4942.18 |\n", - "| M15 | uptrend | 283.57 | 12.7799 | 0.543597 | 4942.18 |\n", - "| M5 | uptrend | 826.12 | 8.3259 | 1.03172 | 4942.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219108.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:06:38,568 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:48,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:06:58,617 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:08,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:18,673 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:26 CET)\" (scheduled at 2026-01-23 02:07:26.633942+01:00)\n", - "2026-01-23 02:07:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:26 CET)\" executed successfully\n", - "2026-01-23 02:07:28,695 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:32 CET)\" (scheduled at 2026-01-23 02:07:32.132962+01:00)\n", - "2026-01-23 02:07:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:32 CET)\" executed successfully\n", - "2026-01-23 02:07:34,190 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:34 CET)\" (scheduled at 2026-01-23 02:07:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:07:34,455 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.85 | 88.7586 | 9.94335 | 4941.23 |\n", - "| H4 | uptrend | 445.97 | 44.7421 | 2.99308 | 4941.16 |\n", - "| H1 | uptrend | 612.44 | 24.6226 | 2.26199 | 4941.16 |\n", - "| M30 | uptrend | 564.24 | 17.6485 | 1.4937 | 4941.16 |\n", - "| M15 | uptrend | 283.44 | 12.7799 | 0.543358 | 4941.17 |\n", - "| M5 | uptrend | 813.71 | 8.4509 | 1.03148 | 4941.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218588.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:07:38,716 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:48,737 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:07:58,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:08,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:18,816 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:26 CET)\" (scheduled at 2026-01-23 02:08:26.633942+01:00)\n", - "2026-01-23 02:08:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:26 CET)\" executed successfully\n", - "2026-01-23 02:08:28,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:32,168 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:32 CET)\" (scheduled at 2026-01-23 02:08:32.132962+01:00)\n", - "2026-01-23 02:08:32,168 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:32 CET)\" executed successfully\n", - "2026-01-23 02:08:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:34 CET)\" (scheduled at 2026-01-23 02:08:34.010875+01:00)\n", - "2026-01-23 02:08:34,232 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 746.88 | 88.7586 | 9.94381 | 4943.16 |\n", - "| H4 | uptrend | 446.05 | 44.7421 | 2.99355 | 4943.16 |\n", - "| H1 | uptrend | 612.57 | 24.6226 | 2.26246 | 4943.16 |\n", - "| M30 | uptrend | 564.43 | 17.6485 | 1.4942 | 4943.25 |\n", - "| M15 | uptrend | 283.7 | 12.7799 | 0.54385 | 4943.25 |\n", - "| M5 | uptrend | 814.1 | 8.4509 | 1.03197 | 4943.25 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218651.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:08:38,866 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:48,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:08:58,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:08,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:18,965 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:26 CET)\" (scheduled at 2026-01-23 02:09:26.633942+01:00)\n", - "2026-01-23 02:09:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:26 CET)\" executed successfully\n", - "2026-01-23 02:09:28,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:32,177 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:32 CET)\" (scheduled at 2026-01-23 02:09:32.132962+01:00)\n", - "2026-01-23 02:09:32,177 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:32 CET)\" executed successfully\n", - "2026-01-23 02:09:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:34 CET)\" (scheduled at 2026-01-23 02:09:34.010875+01:00)\n", - "2026-01-23 02:09:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.89 | 88.7586 | 9.94389 | 4943.5 |\n", - "| H4 | uptrend | 446.06 | 44.7421 | 2.99363 | 4943.5 |\n", - "| H1 | uptrend | 612.59 | 24.6226 | 2.26254 | 4943.5 |\n", - "| M30 | uptrend | 564.45 | 17.6485 | 1.49426 | 4943.5 |\n", - "| M15 | uptrend | 283.73 | 12.7799 | 0.543902 | 4943.47 |\n", - "| M5 | uptrend | 814.14 | 8.4509 | 1.03203 | 4943.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218659.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:09:39,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:49,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:09:59,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:09,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:19,109 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:26 CET)\" (scheduled at 2026-01-23 02:10:26.633942+01:00)\n", - "2026-01-23 02:10:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:26 CET)\" executed successfully\n", - "2026-01-23 02:10:29,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:32 CET)\" (scheduled at 2026-01-23 02:10:32.132962+01:00)\n", - "2026-01-23 02:10:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:32 CET)\" executed successfully\n", - "2026-01-23 02:10:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:34 CET)\" (scheduled at 2026-01-23 02:10:34.010875+01:00)\n", - "2026-01-23 02:10:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.92 | 88.7586 | 9.94436 | 4945.51 |\n", - "| H4 | uptrend | 446.13 | 44.7421 | 2.99411 | 4945.52 |\n", - "| H1 | uptrend | 612.72 | 24.6226 | 2.26302 | 4945.52 |\n", - "| M30 | uptrend | 564.63 | 17.6485 | 1.49473 | 4945.52 |\n", - "| M15 | uptrend | 283.98 | 12.7799 | 0.544386 | 4945.52 |\n", - "| M5 | uptrend | 860.18 | 7.9972 | 1.03185 | 4945.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220548.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:10:39,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:49,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:10:59,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:09,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:19,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:26 CET)\" (scheduled at 2026-01-23 02:11:26.633942+01:00)\n", - "2026-01-23 02:11:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:26 CET)\" executed successfully\n", - "2026-01-23 02:11:29,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:32 CET)\" (scheduled at 2026-01-23 02:11:32.132962+01:00)\n", - "2026-01-23 02:11:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:32 CET)\" executed successfully\n", - "2026-01-23 02:11:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:34 CET)\" (scheduled at 2026-01-23 02:11:34.010875+01:00)\n", - "2026-01-23 02:11:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94509 | 4948.57 |\n", - "| H4 | uptrend | 446.24 | 44.7421 | 2.99483 | 4948.57 |\n", - "| H1 | uptrend | 612.92 | 24.6226 | 2.26374 | 4948.57 |\n", - "| M30 | uptrend | 564.9 | 17.6485 | 1.49545 | 4948.57 |\n", - "| M15 | uptrend | 284.36 | 12.7799 | 0.545107 | 4948.57 |\n", - "| M5 | uptrend | 838.39 | 8.2108 | 1.03258 | 4948.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219748.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:11:39,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:49,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:11:59,504 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:09,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:19,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:26 CET)\" (scheduled at 2026-01-23 02:12:26.633942+01:00)\n", - "2026-01-23 02:12:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:26 CET)\" executed successfully\n", - "2026-01-23 02:12:29,573 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:32,168 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:32 CET)\" (scheduled at 2026-01-23 02:12:32.132962+01:00)\n", - "2026-01-23 02:12:32,168 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:32 CET)\" executed successfully\n", - "2026-01-23 02:12:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:34 CET)\" (scheduled at 2026-01-23 02:12:34.010875+01:00)\n", - "2026-01-23 02:12:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94424 | 4944.99 |\n", - "| H4 | uptrend | 446.11 | 44.7421 | 2.99398 | 4944.99 |\n", - "| H1 | uptrend | 612.69 | 24.6226 | 2.26289 | 4944.99 |\n", - "| M30 | uptrend | 564.58 | 17.6485 | 1.49461 | 4944.99 |\n", - "| M15 | uptrend | 283.92 | 12.7799 | 0.544263 | 4945 |\n", - "| M5 | uptrend | 821.62 | 8.3715 | 1.03173 | 4945 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218994.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:12:39,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:49,628 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:12:59,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:09,673 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:19,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:26 CET)\" (scheduled at 2026-01-23 02:13:26.633942+01:00)\n", - "2026-01-23 02:13:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:26 CET)\" executed successfully\n", - "2026-01-23 02:13:29,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:32,158 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:32 CET)\" (scheduled at 2026-01-23 02:13:32.132962+01:00)\n", - "2026-01-23 02:13:32,158 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:32 CET)\" executed successfully\n", - "2026-01-23 02:13:34,079 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:34 CET)\" (scheduled at 2026-01-23 02:13:34.010875+01:00)\n", - "2026-01-23 02:13:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.96 | 88.7586 | 9.94482 | 4947.42 |\n", - "| H4 | uptrend | 446.2 | 44.7421 | 2.99456 | 4947.42 |\n", - "| H1 | uptrend | 612.84 | 24.6226 | 2.26347 | 4947.42 |\n", - "| M30 | uptrend | 564.8 | 17.6485 | 1.49518 | 4947.42 |\n", - "| M15 | uptrend | 284.21 | 12.7799 | 0.544835 | 4947.42 |\n", - "| M5 | uptrend | 822.08 | 8.3715 | 1.0323 | 4947.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.65)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219069.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:13:39,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:49,772 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:13:59,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:09,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:19,858 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:27,059 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:26 CET)\" (scheduled at 2026-01-23 02:14:26.633942+01:00)\n", - "2026-01-23 02:14:27,059 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:26 CET)\" executed successfully\n", - "2026-01-23 02:14:29,870 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:32,158 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:32 CET)\" (scheduled at 2026-01-23 02:14:32.132962+01:00)\n", - "2026-01-23 02:14:32,158 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:32 CET)\" executed successfully\n", - "2026-01-23 02:14:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:34 CET)\" (scheduled at 2026-01-23 02:14:34.010875+01:00)\n", - "2026-01-23 02:14:34,215 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94508 | 4948.55 |\n", - "| H4 | uptrend | 446.24 | 44.7421 | 2.99482 | 4948.55 |\n", - "| H1 | uptrend | 612.91 | 24.6226 | 2.26373 | 4948.55 |\n", - "| M30 | uptrend | 564.91 | 17.6485 | 1.49548 | 4948.69 |\n", - "| M15 | uptrend | 284.37 | 12.7799 | 0.54514 | 4948.71 |\n", - "| M5 | uptrend | 817.57 | 8.4201 | 1.03261 | 4948.71 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218917.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:14:39,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:49,925 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:14:59,953 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:15:09,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:15:19,988 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:15:26,730 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:26 CET)\" (scheduled at 2026-01-23 02:15:26.633942+01:00)\n", - "2026-01-23 02:15:26,730 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:26 CET)\" executed successfully\n", - "2026-01-23 02:15:30,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:15:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:32 CET)\" (scheduled at 2026-01-23 02:15:32.132962+01:00)\n", - "2026-01-23 02:15:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:32 CET)\" executed successfully\n", - "2026-01-23 02:15:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:34 CET)\" (scheduled at 2026-01-23 02:15:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.9459 | 4952.03 |\n", - "| H4 | uptrend | 446.36 | 44.7421 | 2.99565 | 4952.03 |\n", - "| H1 | uptrend | 613.14 | 24.6226 | 2.26455 | 4952.03 |\n", - "| M30 | uptrend | 565.21 | 17.6485 | 1.49627 | 4952.03 |\n", - "| M15 | uptrend | 316.91 | 12.1171 | 0.575995 | 4952.03 |\n", - "| M5 | uptrend | 853.6 | 8.0687 | 1.03311 | 4952.03 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.77)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 222365.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:15:34,218 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:15:40,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:15:50,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:00,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:10,129 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:20,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:26,701 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:26 CET)\" (scheduled at 2026-01-23 02:16:26.633942+01:00)\n", - "2026-01-23 02:16:26,701 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:26 CET)\" executed successfully\n", - "2026-01-23 02:16:30,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:32 CET)\" (scheduled at 2026-01-23 02:16:32.132962+01:00)\n", - "2026-01-23 02:16:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:32 CET)\" executed successfully\n", - "2026-01-23 02:16:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:34 CET)\" (scheduled at 2026-01-23 02:16:34.010875+01:00)\n", - "2026-01-23 02:16:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94624 | 4953.43 |\n", - "| H4 | uptrend | 446.41 | 44.7421 | 2.99598 | 4953.43 |\n", - "| H1 | uptrend | 613.23 | 24.6226 | 2.26489 | 4953.43 |\n", - "| M30 | uptrend | 565.34 | 17.6485 | 1.49661 | 4953.48 |\n", - "| M15 | uptrend | 313.58 | 12.2528 | 0.576338 | 4953.48 |\n", - "| M5 | uptrend | 839.76 | 8.2044 | 1.03346 | 4953.5 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.80)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221635.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:16:40,191 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:16:50,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:00,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:10,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:20,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:26,804 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:26 CET)\" (scheduled at 2026-01-23 02:17:26.633942+01:00)\n", - "2026-01-23 02:17:26,804 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:26 CET)\" executed successfully\n", - "2026-01-23 02:17:30,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:32 CET)\" (scheduled at 2026-01-23 02:17:32.132962+01:00)\n", - "2026-01-23 02:17:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:32 CET)\" executed successfully\n", - "2026-01-23 02:17:34,606 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:34 CET)\" (scheduled at 2026-01-23 02:17:34.010875+01:00)\n", - "2026-01-23 02:17:34,782 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94584 | 4951.77 |\n", - "| H4 | uptrend | 446.35 | 44.7421 | 2.99559 | 4951.77 |\n", - "| H1 | uptrend | 613.12 | 24.6226 | 2.26449 | 4951.77 |\n", - "| M30 | uptrend | 565.19 | 17.6485 | 1.49621 | 4951.77 |\n", - "| M15 | uptrend | 313.36 | 12.2528 | 0.575939 | 4951.79 |\n", - "| M5 | uptrend | 839.42 | 8.2044 | 1.03303 | 4951.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.76)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221581.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:17:40,335 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:17:50,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:00,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:10,421 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:20,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:26 CET)\" (scheduled at 2026-01-23 02:18:26.633942+01:00)\n", - "2026-01-23 02:18:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:26 CET)\" executed successfully\n", - "2026-01-23 02:18:30,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:32,209 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:32 CET)\" (scheduled at 2026-01-23 02:18:32.132962+01:00)\n", - "2026-01-23 02:18:32,209 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:32 CET)\" executed successfully\n", - "2026-01-23 02:18:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:34 CET)\" (scheduled at 2026-01-23 02:18:34.010875+01:00)\n", - "2026-01-23 02:18:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.97 | 88.7586 | 9.94499 | 4948.15 |\n", - "| H4 | uptrend | 446.22 | 44.7421 | 2.99473 | 4948.15 |\n", - "| H1 | uptrend | 612.89 | 24.6226 | 2.26364 | 4948.15 |\n", - "| M30 | uptrend | 564.86 | 17.6485 | 1.49535 | 4948.15 |\n", - "| M15 | uptrend | 310.33 | 12.3542 | 0.575079 | 4948.15 |\n", - "| M5 | uptrend | 828.49 | 8.3058 | 1.03219 | 4948.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220904.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:18:40,486 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:18:50,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:00,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:10,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:20,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:27,132 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:26 CET)\" (scheduled at 2026-01-23 02:19:26.633942+01:00)\n", - "2026-01-23 02:19:27,132 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:26 CET)\" executed successfully\n", - "2026-01-23 02:19:30,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:32,389 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:32 CET)\" (scheduled at 2026-01-23 02:19:32.132962+01:00)\n", - "2026-01-23 02:19:32,389 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:32 CET)\" executed successfully\n", - "2026-01-23 02:19:34,078 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:34 CET)\" (scheduled at 2026-01-23 02:19:34.010875+01:00)\n", - "2026-01-23 02:19:34,267 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.88 | 88.7586 | 9.94385 | 4943.32 |\n", - "| H4 | uptrend | 446.05 | 44.7421 | 2.99359 | 4943.32 |\n", - "| H1 | uptrend | 612.58 | 24.6226 | 2.2625 | 4943.32 |\n", - "| M30 | uptrend | 564.43 | 17.6485 | 1.49421 | 4943.32 |\n", - "| M15 | uptrend | 301.11 | 12.7071 | 0.573937 | 4943.32 |\n", - "| M5 | uptrend | 793.85 | 8.6587 | 1.03105 | 4943.32 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 218888.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:19:40,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:19:50,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:00,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:10,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:20,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:26 CET)\" (scheduled at 2026-01-23 02:20:26.633942+01:00)\n", - "2026-01-23 02:20:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:26 CET)\" executed successfully\n", - "2026-01-23 02:20:30,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:32,268 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:32 CET)\" (scheduled at 2026-01-23 02:20:32.132962+01:00)\n", - "2026-01-23 02:20:32,268 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:32 CET)\" executed successfully\n", - "2026-01-23 02:20:34,088 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:34 CET)\" (scheduled at 2026-01-23 02:20:34.010875+01:00)\n", - "2026-01-23 02:20:34,245 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94427 | 4945.12 |\n", - "| H4 | uptrend | 446.11 | 44.7421 | 2.99401 | 4945.12 |\n", - "| H1 | uptrend | 612.7 | 24.6226 | 2.26292 | 4945.12 |\n", - "| M30 | uptrend | 564.59 | 17.6485 | 1.49464 | 4945.12 |\n", - "| M15 | uptrend | 301.33 | 12.7071 | 0.574363 | 4945.12 |\n", - "| M5 | uptrend | 841.7 | 8.1573 | 1.0299 | 4945.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220844.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:20:40,770 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:20:50,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:00,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:10,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:20,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:26,824 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:26 CET)\" (scheduled at 2026-01-23 02:21:26.633942+01:00)\n", - "2026-01-23 02:21:26,824 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:26 CET)\" executed successfully\n", - "2026-01-23 02:21:30,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:32,372 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:32 CET)\" (scheduled at 2026-01-23 02:21:32.132962+01:00)\n", - "2026-01-23 02:21:32,372 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:32 CET)\" executed successfully\n", - "2026-01-23 02:21:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:34 CET)\" (scheduled at 2026-01-23 02:21:34.010875+01:00)\n", - "2026-01-23 02:21:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.94524 | 4949.2 |\n", - "| H4 | uptrend | 446.26 | 44.7421 | 2.99498 | 4949.2 |\n", - "| H1 | uptrend | 612.96 | 24.6226 | 2.26389 | 4949.2 |\n", - "| M30 | uptrend | 564.96 | 17.6485 | 1.4956 | 4949.2 |\n", - "| M15 | uptrend | 301.84 | 12.7071 | 0.575327 | 4949.2 |\n", - "| M5 | uptrend | 812.88 | 8.4545 | 1.03086 | 4949.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219787.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:21:40,920 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:21:50,938 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:00,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:10,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:21,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:26 CET)\" (scheduled at 2026-01-23 02:22:26.633942+01:00)\n", - "2026-01-23 02:22:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:26 CET)\" executed successfully\n", - "2026-01-23 02:22:31,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:32 CET)\" (scheduled at 2026-01-23 02:22:32.132962+01:00)\n", - "2026-01-23 02:22:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:32 CET)\" executed successfully\n", - "2026-01-23 02:22:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:34 CET)\" (scheduled at 2026-01-23 02:22:34.010875+01:00)\n", - "2026-01-23 02:22:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.94 | 88.7586 | 9.94457 | 4946.37 |\n", - "| H4 | uptrend | 446.16 | 44.7421 | 2.99431 | 4946.37 |\n", - "| H1 | uptrend | 612.78 | 24.6226 | 2.26322 | 4946.37 |\n", - "| M30 | uptrend | 564.71 | 17.6485 | 1.49493 | 4946.37 |\n", - "| M15 | uptrend | 301.49 | 12.7071 | 0.574658 | 4946.37 |\n", - "| M5 | uptrend | 812.35 | 8.4545 | 1.03019 | 4946.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.63)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219699.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:22:41,065 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:22:51,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:01,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:11,136 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:21,168 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:26 CET)\" (scheduled at 2026-01-23 02:23:26.633942+01:00)\n", - "2026-01-23 02:23:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:26 CET)\" executed successfully\n", - "2026-01-23 02:23:31,184 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:32,155 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:32 CET)\" (scheduled at 2026-01-23 02:23:32.132962+01:00)\n", - "2026-01-23 02:23:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:32 CET)\" executed successfully\n", - "2026-01-23 02:23:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:34 CET)\" (scheduled at 2026-01-23 02:23:34.010875+01:00)\n", - "2026-01-23 02:23:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94426 | 4945.07 |\n", - "| H4 | uptrend | 446.11 | 44.7421 | 2.994 | 4945.07 |\n", - "| H1 | uptrend | 612.69 | 24.6226 | 2.26291 | 4945.07 |\n", - "| M30 | uptrend | 564.59 | 17.6485 | 1.49463 | 4945.07 |\n", - "| M15 | uptrend | 301.33 | 12.7071 | 0.57436 | 4945.11 |\n", - "| M5 | uptrend | 807.54 | 8.5023 | 1.0299 | 4945.11 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219477.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:23:41,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:23:51,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:01,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:11,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:21,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:26 CET)\" (scheduled at 2026-01-23 02:24:26.633942+01:00)\n", - "2026-01-23 02:24:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:26 CET)\" executed successfully\n", - "2026-01-23 02:24:31,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:32 CET)\" (scheduled at 2026-01-23 02:24:32.132962+01:00)\n", - "2026-01-23 02:24:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:32 CET)\" executed successfully\n", - "2026-01-23 02:24:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:34 CET)\" (scheduled at 2026-01-23 02:24:34.010875+01:00)\n", - "2026-01-23 02:24:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94509 | 4948.57 |\n", - "| H4 | uptrend | 446.24 | 44.7421 | 2.99483 | 4948.57 |\n", - "| H1 | uptrend | 612.92 | 24.6226 | 2.26374 | 4948.57 |\n", - "| M30 | uptrend | 564.9 | 17.6485 | 1.49545 | 4948.57 |\n", - "| M15 | uptrend | 301.76 | 12.7071 | 0.575178 | 4948.57 |\n", - "| M5 | uptrend | 808.18 | 8.5023 | 1.03072 | 4948.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.68)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219584.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:24:41,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:24:51,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:01,421 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:11,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:21,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:26 CET)\" (scheduled at 2026-01-23 02:25:26.633942+01:00)\n", - "2026-01-23 02:25:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:26 CET)\" executed successfully\n", - "2026-01-23 02:25:31,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:32 CET)\" (scheduled at 2026-01-23 02:25:32.132962+01:00)\n", - "2026-01-23 02:25:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:32 CET)\" executed successfully\n", - "2026-01-23 02:25:34,046 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:34 CET)\" (scheduled at 2026-01-23 02:25:34.010875+01:00)\n", - "2026-01-23 02:25:34,239 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.94526 | 4949.3 |\n", - "| H4 | uptrend | 446.26 | 44.7421 | 2.995 | 4949.3 |\n", - "| H1 | uptrend | 612.96 | 24.6226 | 2.26391 | 4949.3 |\n", - "| M30 | uptrend | 564.96 | 17.6485 | 1.49562 | 4949.26 |\n", - "| M15 | uptrend | 301.85 | 12.7071 | 0.575341 | 4949.26 |\n", - "| M5 | uptrend | 858.97 | 7.9829 | 1.02856 | 4949.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 221632.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:25:41,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:25:51,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:01,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:11,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:21,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:26,735 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:26 CET)\" (scheduled at 2026-01-23 02:26:26.633942+01:00)\n", - "2026-01-23 02:26:26,735 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:26 CET)\" executed successfully\n", - "2026-01-23 02:26:31,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:32 CET)\" (scheduled at 2026-01-23 02:26:32.132962+01:00)\n", - "2026-01-23 02:26:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:32 CET)\" executed successfully\n", - "2026-01-23 02:26:34,233 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:34 CET)\" (scheduled at 2026-01-23 02:26:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:26:34,461 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94552 | 4950.4 |\n", - "| H4 | uptrend | 446.3 | 44.7421 | 2.99526 | 4950.4 |\n", - "| H1 | uptrend | 613.03 | 24.6226 | 2.26417 | 4950.4 |\n", - "| M30 | uptrend | 565.07 | 17.6485 | 1.49589 | 4950.4 |\n", - "| M15 | uptrend | 301.99 | 12.7071 | 0.57561 | 4950.4 |\n", - "| M5 | uptrend | 837.9 | 8.1857 | 1.02882 | 4950.4 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220816.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:26:41,658 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:26:51,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:01,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:11,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:21,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:26,721 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:26 CET)\" (scheduled at 2026-01-23 02:27:26.633942+01:00)\n", - "2026-01-23 02:27:26,721 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:26 CET)\" executed successfully\n", - "2026-01-23 02:27:31,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:32 CET)\" (scheduled at 2026-01-23 02:27:32.132962+01:00)\n", - "2026-01-23 02:27:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:32 CET)\" executed successfully\n", - "2026-01-23 02:27:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:34 CET)\" (scheduled at 2026-01-23 02:27:34.010875+01:00)\n", - "2026-01-23 02:27:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94577 | 4951.48 |\n", - "| H4 | uptrend | 446.34 | 44.7421 | 2.99552 | 4951.48 |\n", - "| H1 | uptrend | 613.1 | 24.6226 | 2.26442 | 4951.48 |\n", - "| M30 | uptrend | 565.16 | 17.6485 | 1.49614 | 4951.48 |\n", - "| M15 | uptrend | 302.12 | 12.7071 | 0.575865 | 4951.48 |\n", - "| M5 | uptrend | 838.11 | 8.1857 | 1.02909 | 4951.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220850.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:27:41,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:27:51,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:01,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:11,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:21,987 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:26 CET)\" (scheduled at 2026-01-23 02:28:26.633942+01:00)\n", - "2026-01-23 02:28:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:26 CET)\" executed successfully\n", - "2026-01-23 02:28:32,011 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:32,316 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:32 CET)\" (scheduled at 2026-01-23 02:28:32.132962+01:00)\n", - "2026-01-23 02:28:32,328 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:32 CET)\" executed successfully\n", - "2026-01-23 02:28:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:34 CET)\" (scheduled at 2026-01-23 02:28:34.010875+01:00)\n", - "2026-01-23 02:28:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.95 | 88.7586 | 9.9447 | 4946.92 |\n", - "| H4 | uptrend | 446.18 | 44.7421 | 2.99444 | 4946.92 |\n", - "| H1 | uptrend | 612.81 | 24.6226 | 2.26335 | 4946.92 |\n", - "| M30 | uptrend | 564.75 | 17.6485 | 1.49506 | 4946.92 |\n", - "| M15 | uptrend | 301.56 | 12.7071 | 0.574788 | 4946.92 |\n", - "| M5 | uptrend | 827.48 | 8.2821 | 1.028 | 4946.92 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.64)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 220318.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:28:42,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:28:52,050 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:02,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:12,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:22,129 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:27,168 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:26 CET)\" (scheduled at 2026-01-23 02:29:26.633942+01:00)\n", - "2026-01-23 02:29:27,168 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:26 CET)\" executed successfully\n", - "2026-01-23 02:29:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:32 CET)\" (scheduled at 2026-01-23 02:29:32.132962+01:00)\n", - "2026-01-23 02:29:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:32 CET)\" executed successfully\n", - "2026-01-23 02:29:32,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:34,141 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:34 CET)\" (scheduled at 2026-01-23 02:29:34.010875+01:00)\n", - "2026-01-23 02:29:34,294 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.93 | 88.7586 | 9.94444 | 4945.82 |\n", - "| H4 | uptrend | 446.14 | 44.7421 | 2.99418 | 4945.82 |\n", - "| H1 | uptrend | 612.74 | 24.6226 | 2.26309 | 4945.82 |\n", - "| M30 | uptrend | 564.66 | 17.6485 | 1.4948 | 4945.82 |\n", - "| M15 | uptrend | 301.42 | 12.7071 | 0.574528 | 4945.82 |\n", - "| M5 | uptrend | 818.87 | 8.3671 | 1.02774 | 4945.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 219947.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:29:42,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:29:52,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:00,005 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 03:00:00 CET)\" (scheduled at 2026-01-23 02:30:00+01:00)\n", - "2026-01-23 02:30:00,005 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 03:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 02:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.96 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:30:02,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:12,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:22,277 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:26,711 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:26 CET)\" (scheduled at 2026-01-23 02:30:26.633942+01:00)\n", - "2026-01-23 02:30:26,711 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:26 CET)\" executed successfully\n", - "2026-01-23 02:30:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:32 CET)\" (scheduled at 2026-01-23 02:30:32.132962+01:00)\n", - "2026-01-23 02:30:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:32 CET)\" executed successfully\n", - "2026-01-23 02:30:32,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:34,338 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:34 CET)\" (scheduled at 2026-01-23 02:30:34.010875+01:00)\n", - "2026-01-23 02:30:34,514 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94569 | 4951.12 |\n", - "| H4 | uptrend | 446.33 | 44.7421 | 2.99543 | 4951.12 |\n", - "| H1 | uptrend | 613.08 | 24.6226 | 2.26434 | 4951.13 |\n", - "| M30 | uptrend | 599.63 | 16.6994 | 1.50203 | 4951.13 |\n", - "| M15 | uptrend | 333.7 | 12.1109 | 0.606204 | 4951.13 |\n", - "| M5 | uptrend | 845.09 | 8.0809 | 1.02437 | 4951.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.74)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225778.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:30:42,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:30:52,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:02,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:12,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:22,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:26 CET)\" (scheduled at 2026-01-23 02:31:26.633942+01:00)\n", - "2026-01-23 02:31:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:26 CET)\" executed successfully\n", - "2026-01-23 02:31:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:32 CET)\" (scheduled at 2026-01-23 02:31:32.132962+01:00)\n", - "2026-01-23 02:31:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:32 CET)\" executed successfully\n", - "2026-01-23 02:31:32,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:34,371 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:34 CET)\" (scheduled at 2026-01-23 02:31:34.010875+01:00)\n", - "2026-01-23 02:31:34,552 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.97 | 88.7586 | 9.94499 | 4948.16 |\n", - "| H4 | uptrend | 446.22 | 44.7421 | 2.99473 | 4948.16 |\n", - "| H1 | uptrend | 612.89 | 24.6226 | 2.26364 | 4948.16 |\n", - "| M30 | uptrend | 599.35 | 16.6994 | 1.50133 | 4948.16 |\n", - "| M15 | uptrend | 333.31 | 12.1109 | 0.605503 | 4948.16 |\n", - "| M5 | uptrend | 844.51 | 8.0809 | 1.02366 | 4948.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225683.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:31:42,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:31:52,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:02,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:12,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:22,573 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:26,660 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:26 CET)\" (scheduled at 2026-01-23 02:32:26.633942+01:00)\n", - "2026-01-23 02:32:26,660 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:26 CET)\" executed successfully\n", - "2026-01-23 02:32:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:32 CET)\" (scheduled at 2026-01-23 02:32:32.132962+01:00)\n", - "2026-01-23 02:32:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:32 CET)\" executed successfully\n", - "2026-01-23 02:32:32,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:34,149 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:34 CET)\" (scheduled at 2026-01-23 02:32:34.010875+01:00)\n", - "2026-01-23 02:32:34,274 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.9454 | 4949.91 |\n", - "| H4 | uptrend | 446.28 | 44.7421 | 2.99515 | 4949.91 |\n", - "| H1 | uptrend | 613 | 24.6226 | 2.26405 | 4949.91 |\n", - "| M30 | uptrend | 597.68 | 16.7508 | 1.50174 | 4949.91 |\n", - "| M15 | uptrend | 332.13 | 12.1623 | 0.605916 | 4949.91 |\n", - "| M5 | uptrend | 839.51 | 8.1323 | 1.02407 | 4949.91 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225293.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:32:42,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:32:52,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:02,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:12,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:22,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:27,125 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:26 CET)\" (scheduled at 2026-01-23 02:33:26.633942+01:00)\n", - "2026-01-23 02:33:27,125 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:26 CET)\" executed successfully\n", - "2026-01-23 02:33:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:32 CET)\" (scheduled at 2026-01-23 02:33:32.132962+01:00)\n", - "2026-01-23 02:33:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:32 CET)\" executed successfully\n", - "2026-01-23 02:33:32,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:34,237 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:34 CET)\" (scheduled at 2026-01-23 02:33:34.010875+01:00)\n", - "2026-01-23 02:33:34,377 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94606 | 4952.67 |\n", - "| H4 | uptrend | 446.38 | 44.7421 | 2.9958 | 4952.67 |\n", - "| H1 | uptrend | 613.18 | 24.6226 | 2.26471 | 4952.67 |\n", - "| M30 | uptrend | 595.48 | 16.8201 | 1.50239 | 4952.67 |\n", - "| M15 | uptrend | 330.6 | 12.2316 | 0.606568 | 4952.67 |\n", - "| M5 | uptrend | 832.94 | 8.2016 | 1.02473 | 4952.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.78)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224787.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:33:42,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:33:52,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:02,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:12,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:22,908 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:26 CET)\" (scheduled at 2026-01-23 02:34:26.633942+01:00)\n", - "2026-01-23 02:34:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:26 CET)\" executed successfully\n", - "2026-01-23 02:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:32 CET)\" (scheduled at 2026-01-23 02:34:32.132962+01:00)\n", - "2026-01-23 02:34:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:32 CET)\" executed successfully\n", - "2026-01-23 02:34:32,923 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:34 CET)\" (scheduled at 2026-01-23 02:34:34.010875+01:00)\n", - "2026-01-23 02:34:34,208 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94653 | 4954.66 |\n", - "| H4 | uptrend | 446.45 | 44.7421 | 2.99627 | 4954.66 |\n", - "| H1 | uptrend | 613.31 | 24.6226 | 2.26518 | 4954.66 |\n", - "| M30 | uptrend | 590.62 | 16.9637 | 1.50286 | 4954.66 |\n", - "| M15 | uptrend | 327.02 | 12.3752 | 0.607038 | 4954.66 |\n", - "| M5 | uptrend | 818.99 | 8.3452 | 1.0252 | 4954.66 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223644.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:34:42,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:34:52,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:03,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:13,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:23,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:26 CET)\" (scheduled at 2026-01-23 02:35:26.633942+01:00)\n", - "2026-01-23 02:35:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:26 CET)\" executed successfully\n", - "2026-01-23 02:35:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:32 CET)\" (scheduled at 2026-01-23 02:35:32.132962+01:00)\n", - "2026-01-23 02:35:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:32 CET)\" executed successfully\n", - "2026-01-23 02:35:33,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:34 CET)\" (scheduled at 2026-01-23 02:35:34.010875+01:00)\n", - "2026-01-23 02:35:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94616 | 4953.12 |\n", - "| H4 | uptrend | 446.4 | 44.7421 | 2.9959 | 4953.12 |\n", - "| H1 | uptrend | 613.21 | 24.6226 | 2.26481 | 4953.12 |\n", - "| M30 | uptrend | 586.77 | 17.0708 | 1.5025 | 4953.12 |\n", - "| M15 | uptrend | 324.02 | 12.4823 | 0.606674 | 4953.12 |\n", - "| M5 | uptrend | 837.24 | 8.14 | 1.02228 | 4953.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223872.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:35:43,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:35:53,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:03,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:13,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:23,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:26 CET)\" (scheduled at 2026-01-23 02:36:26.633942+01:00)\n", - "2026-01-23 02:36:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:26 CET)\" executed successfully\n", - "2026-01-23 02:36:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:32 CET)\" (scheduled at 2026-01-23 02:36:32.132962+01:00)\n", - "2026-01-23 02:36:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:32 CET)\" executed successfully\n", - "2026-01-23 02:36:33,210 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:34 CET)\" (scheduled at 2026-01-23 02:36:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:36:34,254 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94612 | 4952.95 |\n", - "| H4 | uptrend | 446.39 | 44.7421 | 2.99586 | 4952.95 |\n", - "| H1 | uptrend | 613.2 | 24.6226 | 2.26477 | 4952.95 |\n", - "| M30 | uptrend | 586.76 | 17.0708 | 1.50246 | 4952.95 |\n", - "| M15 | uptrend | 324 | 12.4823 | 0.606634 | 4952.95 |\n", - "| M5 | uptrend | 837.21 | 8.14 | 1.02224 | 4952.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223867.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:36:43,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:36:53,251 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:03,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:13,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:23,335 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:26,754 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:26 CET)\" (scheduled at 2026-01-23 02:37:26.633942+01:00)\n", - "2026-01-23 02:37:26,754 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:26 CET)\" executed successfully\n", - "2026-01-23 02:37:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:32 CET)\" (scheduled at 2026-01-23 02:37:32.132962+01:00)\n", - "2026-01-23 02:37:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:32 CET)\" executed successfully\n", - "2026-01-23 02:37:33,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:34,055 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:34 CET)\" (scheduled at 2026-01-23 02:37:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94628 | 4953.62 |\n", - "| H4 | uptrend | 446.41 | 44.7421 | 2.99602 | 4953.62 |\n", - "| H1 | uptrend | 613.24 | 24.6226 | 2.26493 | 4953.62 |\n", - "| M30 | uptrend | 586.81 | 17.0708 | 1.50259 | 4953.49 |\n", - "| M15 | uptrend | 324.06 | 12.4823 | 0.606762 | 4953.49 |\n", - "| M5 | uptrend | 826.94 | 8.2422 | 1.02236 | 4953.49 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.80)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223470.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:37:34,265 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:37:43,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:37:53,394 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:03,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:13,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:23,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:27,048 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:26 CET)\" (scheduled at 2026-01-23 02:38:26.633942+01:00)\n", - "2026-01-23 02:38:27,048 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:26 CET)\" executed successfully\n", - "2026-01-23 02:38:32,158 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:32 CET)\" (scheduled at 2026-01-23 02:38:32.132962+01:00)\n", - "2026-01-23 02:38:32,181 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:32 CET)\" executed successfully\n", - "2026-01-23 02:38:33,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:34,091 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:34 CET)\" (scheduled at 2026-01-23 02:38:34.010875+01:00)\n", - "2026-01-23 02:38:34,256 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94579 | 4951.54 |\n", - "| H4 | uptrend | 446.34 | 44.7421 | 2.99553 | 4951.54 |\n", - "| H1 | uptrend | 613.11 | 24.6226 | 2.26444 | 4951.54 |\n", - "| M30 | uptrend | 586.63 | 17.0708 | 1.50212 | 4951.54 |\n", - "| M15 | uptrend | 323.82 | 12.4823 | 0.606301 | 4951.54 |\n", - "| M5 | uptrend | 826.56 | 8.2422 | 1.0219 | 4951.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223407.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:38:43,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:38:53,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:03,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:13,595 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:23,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:26 CET)\" (scheduled at 2026-01-23 02:39:26.633942+01:00)\n", - "2026-01-23 02:39:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:26 CET)\" executed successfully\n", - "2026-01-23 02:39:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:32 CET)\" (scheduled at 2026-01-23 02:39:32.132962+01:00)\n", - "2026-01-23 02:39:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:32 CET)\" executed successfully\n", - "2026-01-23 02:39:33,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:34,183 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:34 CET)\" (scheduled at 2026-01-23 02:39:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:39:34,608 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94648 | 4954.47 |\n", - "| H4 | uptrend | 446.45 | 44.7421 | 2.99623 | 4954.52 |\n", - "| H1 | uptrend | 613.3 | 24.6226 | 2.26514 | 4954.52 |\n", - "| M30 | uptrend | 586.9 | 17.0708 | 1.50283 | 4954.52 |\n", - "| M15 | uptrend | 324.21 | 12.4823 | 0.607029 | 4954.62 |\n", - "| M5 | uptrend | 827.15 | 8.2422 | 1.02263 | 4954.63 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 223503.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:39:34,814 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 03:39:34 CET)\" (scheduled at 2026-01-23 02:39:34.806528+01:00)\n", - "2026-01-23 02:39:34,831 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 03:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[02:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:39:43,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:39:53,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:03,719 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:13,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:23,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:27,515 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:26 CET)\" (scheduled at 2026-01-23 02:40:26.633942+01:00)\n", - "2026-01-23 02:40:27,515 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:26 CET)\" executed successfully\n", - "2026-01-23 02:40:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:32 CET)\" (scheduled at 2026-01-23 02:40:32.132962+01:00)\n", - "2026-01-23 02:40:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:32 CET)\" executed successfully\n", - "2026-01-23 02:40:33,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:34 CET)\" (scheduled at 2026-01-23 02:40:34.010875+01:00)\n", - "2026-01-23 02:40:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94622 | 4953.37 |\n", - "| H4 | uptrend | 446.4 | 44.7421 | 2.99596 | 4953.37 |\n", - "| H1 | uptrend | 613.22 | 24.6226 | 2.26487 | 4953.37 |\n", - "| M30 | uptrend | 586.79 | 17.0708 | 1.50256 | 4953.37 |\n", - "| M15 | uptrend | 324.05 | 12.4823 | 0.606736 | 4953.38 |\n", - "| M5 | uptrend | 870.13 | 7.8135 | 1.01981 | 4953.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.80)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225193.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:40:43,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:40:53,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:03,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:13,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:23,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:26,744 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:26 CET)\" (scheduled at 2026-01-23 02:41:26.633942+01:00)\n", - "2026-01-23 02:41:26,744 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:26 CET)\" executed successfully\n", - "2026-01-23 02:41:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:32 CET)\" (scheduled at 2026-01-23 02:41:32.132962+01:00)\n", - "2026-01-23 02:41:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:32 CET)\" executed successfully\n", - "2026-01-23 02:41:33,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:34 CET)\" (scheduled at 2026-01-23 02:41:34.010875+01:00)\n", - "2026-01-23 02:41:34,202 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94621 | 4953.31 |\n", - "| H4 | uptrend | 446.4 | 44.7421 | 2.99595 | 4953.31 |\n", - "| H1 | uptrend | 613.22 | 24.6226 | 2.26486 | 4953.31 |\n", - "| M30 | uptrend | 586.79 | 17.0708 | 1.50254 | 4953.31 |\n", - "| M15 | uptrend | 324.04 | 12.4823 | 0.606719 | 4953.31 |\n", - "| M5 | uptrend | 864.98 | 7.8599 | 1.01979 | 4953.31 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.80)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224986.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:41:43,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:41:53,990 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:04,016 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:14,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:24,053 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:26 CET)\" (scheduled at 2026-01-23 02:42:26.633942+01:00)\n", - "2026-01-23 02:42:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:26 CET)\" executed successfully\n", - "2026-01-23 02:42:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:32 CET)\" (scheduled at 2026-01-23 02:42:32.132962+01:00)\n", - "2026-01-23 02:42:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:32 CET)\" executed successfully\n", - "2026-01-23 02:42:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:34 CET)\" (scheduled at 2026-01-23 02:42:34.010875+01:00)\n", - "2026-01-23 02:42:34,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94607 | 4952.74 |\n", - "| H4 | uptrend | 446.38 | 44.7421 | 2.99581 | 4952.74 |\n", - "| H1 | uptrend | 613.18 | 24.6226 | 2.26472 | 4952.74 |\n", - "| M30 | uptrend | 586.74 | 17.0708 | 1.50241 | 4952.74 |\n", - "| M15 | uptrend | 323.97 | 12.4823 | 0.606585 | 4952.74 |\n", - "| M5 | uptrend | 864.86 | 7.8599 | 1.01966 | 4952.74 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.78)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224968.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:42:44,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:42:54,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:04,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:14,282 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:24,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:26 CET)\" (scheduled at 2026-01-23 02:43:26.633942+01:00)\n", - "2026-01-23 02:43:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:26 CET)\" executed successfully\n", - "2026-01-23 02:43:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:32 CET)\" (scheduled at 2026-01-23 02:43:32.132962+01:00)\n", - "2026-01-23 02:43:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:32 CET)\" executed successfully\n", - "2026-01-23 02:43:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:34 CET)\" (scheduled at 2026-01-23 02:43:34.010875+01:00)\n", - "2026-01-23 02:43:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.9456 | 4950.72 |\n", - "| H4 | uptrend | 446.31 | 44.7421 | 2.99534 | 4950.72 |\n", - "| H1 | uptrend | 613.05 | 24.6226 | 2.26424 | 4950.72 |\n", - "| M30 | uptrend | 586.55 | 17.0708 | 1.50193 | 4950.72 |\n", - "| M15 | uptrend | 323.72 | 12.4823 | 0.606107 | 4950.72 |\n", - "| M5 | uptrend | 851.61 | 7.9785 | 1.01918 | 4950.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224389.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:43:34,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:44,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:43:54,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:04,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:14,568 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:24,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:26 CET)\" (scheduled at 2026-01-23 02:44:26.633942+01:00)\n", - "2026-01-23 02:44:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:26 CET)\" executed successfully\n", - "2026-01-23 02:44:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:32 CET)\" (scheduled at 2026-01-23 02:44:32.132962+01:00)\n", - "2026-01-23 02:44:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:32 CET)\" executed successfully\n", - "2026-01-23 02:44:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:34 CET)\" (scheduled at 2026-01-23 02:44:34.010875+01:00)\n", - "2026-01-23 02:44:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94577 | 4951.46 |\n", - "| H4 | uptrend | 446.34 | 44.7421 | 2.99551 | 4951.46 |\n", - "| H1 | uptrend | 613.1 | 24.6226 | 2.26442 | 4951.46 |\n", - "| M30 | uptrend | 586.62 | 17.0708 | 1.50211 | 4951.46 |\n", - "| M15 | uptrend | 323.81 | 12.4823 | 0.606282 | 4951.46 |\n", - "| M5 | uptrend | 851.76 | 7.9785 | 1.01935 | 4951.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.75)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224413.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:44:34,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:44,652 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:44:54,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:04,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:14,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:24,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:26 CET)\" (scheduled at 2026-01-23 02:45:26.633942+01:00)\n", - "2026-01-23 02:45:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:26 CET)\" executed successfully\n", - "2026-01-23 02:45:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:32 CET)\" (scheduled at 2026-01-23 02:45:32.132962+01:00)\n", - "2026-01-23 02:45:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:32 CET)\" executed successfully\n", - "2026-01-23 02:45:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:34 CET)\" (scheduled at 2026-01-23 02:45:34.010875+01:00)\n", - "2026-01-23 02:45:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94661 | 4955.02 |\n", - "| H4 | uptrend | 446.46 | 44.7421 | 2.99635 | 4955.02 |\n", - "| H1 | uptrend | 613.33 | 24.6226 | 2.26526 | 4955.02 |\n", - "| M30 | uptrend | 586.95 | 17.0708 | 1.50295 | 4955.02 |\n", - "| M15 | uptrend | 358.61 | 11.8743 | 0.63874 | 4955.02 |\n", - "| M5 | uptrend | 881.87 | 7.6921 | 1.01752 | 4955.02 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227764.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:45:34,771 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:44,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:45:54,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:04,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:14,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:24,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:26 CET)\" (scheduled at 2026-01-23 02:46:26.633942+01:00)\n", - "2026-01-23 02:46:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:26 CET)\" executed successfully\n", - "2026-01-23 02:46:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:32 CET)\" (scheduled at 2026-01-23 02:46:32.132962+01:00)\n", - "2026-01-23 02:46:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:32 CET)\" executed successfully\n", - "2026-01-23 02:46:34,446 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:34 CET)\" (scheduled at 2026-01-23 02:46:34.010875+01:00)\n", - "2026-01-23 02:46:34,631 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94653 | 4954.66 |\n", - "| H4 | uptrend | 446.45 | 44.7421 | 2.99627 | 4954.66 |\n", - "| H1 | uptrend | 613.31 | 24.6226 | 2.26518 | 4954.66 |\n", - "| M30 | uptrend | 586.04 | 17.0958 | 1.50283 | 4954.53 |\n", - "| M15 | uptrend | 355.62 | 11.9722 | 0.638624 | 4954.53 |\n", - "| M5 | uptrend | 870.67 | 7.79 | 1.01738 | 4954.43 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227060.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:46:34,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:44,936 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:46:54,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:04,998 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:15,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:25,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:26,748 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:26 CET)\" (scheduled at 2026-01-23 02:47:26.633942+01:00)\n", - "2026-01-23 02:47:26,748 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:26 CET)\" executed successfully\n", - "2026-01-23 02:47:32,169 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:32 CET)\" (scheduled at 2026-01-23 02:47:32.132962+01:00)\n", - "2026-01-23 02:47:32,169 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:32 CET)\" executed successfully\n", - "2026-01-23 02:47:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:34 CET)\" (scheduled at 2026-01-23 02:47:34.010875+01:00)\n", - "2026-01-23 02:47:34,238 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94725 | 4957.7 |\n", - "| H4 | uptrend | 446.56 | 44.7421 | 2.99699 | 4957.7 |\n", - "| H1 | uptrend | 613.5 | 24.6226 | 2.26591 | 4957.77 |\n", - "| M30 | uptrend | 583.18 | 17.1887 | 1.50362 | 4957.86 |\n", - "| M15 | uptrend | 353.31 | 12.065 | 0.639411 | 4957.86 |\n", - "| M5 | uptrend | 860.8 | 7.8857 | 1.0182 | 4957.9 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.91)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226326.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:47:35,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:45,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:47:55,115 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:05,140 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:15,167 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:25,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:26,770 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:26 CET)\" (scheduled at 2026-01-23 02:48:26.633942+01:00)\n", - "2026-01-23 02:48:26,770 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:26 CET)\" executed successfully\n", - "2026-01-23 02:48:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:32 CET)\" (scheduled at 2026-01-23 02:48:32.132962+01:00)\n", - "2026-01-23 02:48:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:32 CET)\" executed successfully\n", - "2026-01-23 02:48:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:34 CET)\" (scheduled at 2026-01-23 02:48:34.010875+01:00)\n", - "2026-01-23 02:48:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.9474 | 4958.36 |\n", - "| H4 | uptrend | 446.58 | 44.7421 | 2.99714 | 4958.36 |\n", - "| H1 | uptrend | 613.54 | 24.6226 | 2.26605 | 4958.36 |\n", - "| M30 | uptrend | 580.14 | 17.2801 | 1.50374 | 4958.36 |\n", - "| M15 | uptrend | 350.72 | 12.1564 | 0.639529 | 4958.36 |\n", - "| M5 | uptrend | 851.33 | 7.9743 | 1.01831 | 4958.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225554.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:48:35,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:45,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:48:55,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:05,277 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:15,300 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:25,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:26,828 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:26 CET)\" (scheduled at 2026-01-23 02:49:26.633942+01:00)\n", - "2026-01-23 02:49:26,828 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:26 CET)\" executed successfully\n", - "2026-01-23 02:49:32,190 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:32 CET)\" (scheduled at 2026-01-23 02:49:32.132962+01:00)\n", - "2026-01-23 02:49:32,190 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:32 CET)\" executed successfully\n", - "2026-01-23 02:49:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:34 CET)\" (scheduled at 2026-01-23 02:49:34.010875+01:00)\n", - "2026-01-23 02:49:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94768 | 4959.54 |\n", - "| H4 | uptrend | 446.62 | 44.7421 | 2.99742 | 4959.54 |\n", - "| H1 | uptrend | 613.62 | 24.6226 | 2.26633 | 4959.54 |\n", - "| M30 | uptrend | 576.18 | 17.4022 | 1.50401 | 4959.54 |\n", - "| M15 | uptrend | 347.39 | 12.2786 | 0.63981 | 4959.55 |\n", - "| M5 | uptrend | 838.71 | 8.0964 | 1.01859 | 4959.55 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224542.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:49:35,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:45,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:49:55,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:05,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:15,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:25,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:26 CET)\" (scheduled at 2026-01-23 02:50:26.633942+01:00)\n", - "2026-01-23 02:50:26,663 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:26 CET)\" executed successfully\n", - "2026-01-23 02:50:32,152 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:32 CET)\" (scheduled at 2026-01-23 02:50:32.132962+01:00)\n", - "2026-01-23 02:50:32,152 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:32 CET)\" executed successfully\n", - "2026-01-23 02:50:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:34 CET)\" (scheduled at 2026-01-23 02:50:34.010875+01:00)\n", - "2026-01-23 02:50:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94815 | 4961.55 |\n", - "| H4 | uptrend | 446.69 | 44.7421 | 2.9979 | 4961.55 |\n", - "| H1 | uptrend | 613.75 | 24.6226 | 2.2668 | 4961.55 |\n", - "| M30 | uptrend | 574.57 | 17.4565 | 1.50449 | 4961.55 |\n", - "| M15 | uptrend | 346.11 | 12.3329 | 0.640283 | 4961.55 |\n", - "| M5 | uptrend | 888.26 | 7.6467 | 1.01884 | 4961.58 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 627.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226337.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:50:35,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:45,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:50:55,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:05,569 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:15,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:25,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:26,754 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:26 CET)\" (scheduled at 2026-01-23 02:51:26.633942+01:00)\n", - "2026-01-23 02:51:26,754 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:26 CET)\" executed successfully\n", - "2026-01-23 02:51:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:32 CET)\" (scheduled at 2026-01-23 02:51:32.132962+01:00)\n", - "2026-01-23 02:51:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:32 CET)\" executed successfully\n", - "2026-01-23 02:51:34,123 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:34 CET)\" (scheduled at 2026-01-23 02:51:34.010875+01:00)\n", - "2026-01-23 02:51:34,336 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.22 | 88.7586 | 9.94828 | 4962.09 |\n", - "| H4 | uptrend | 446.71 | 44.7421 | 2.99802 | 4962.09 |\n", - "| H1 | uptrend | 613.78 | 24.6226 | 2.26693 | 4962.09 |\n", - "| M30 | uptrend | 571.44 | 17.5537 | 1.50462 | 4962.09 |\n", - "| M15 | uptrend | 343.48 | 12.43 | 0.640411 | 4962.09 |\n", - "| M5 | uptrend | 877.22 | 7.7438 | 1.01896 | 4962.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 627.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225491.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:51:35,644 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:45,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:51:55,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:05,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:15,730 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:25,763 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:26 CET)\" (scheduled at 2026-01-23 02:52:26.633942+01:00)\n", - "2026-01-23 02:52:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:26 CET)\" executed successfully\n", - "2026-01-23 02:52:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:32 CET)\" (scheduled at 2026-01-23 02:52:32.132962+01:00)\n", - "2026-01-23 02:52:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:32 CET)\" executed successfully\n", - "2026-01-23 02:52:34,364 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:34 CET)\" (scheduled at 2026-01-23 02:52:34.010875+01:00)\n", - "2026-01-23 02:52:34,569 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94785 | 4960.26 |\n", - "| H4 | uptrend | 446.65 | 44.7421 | 2.99759 | 4960.26 |\n", - "| H1 | uptrend | 613.65 | 24.6226 | 2.26646 | 4960.09 |\n", - "| M30 | uptrend | 571.26 | 17.5537 | 1.50414 | 4960.09 |\n", - "| M15 | uptrend | 343.22 | 12.43 | 0.639938 | 4960.09 |\n", - "| M5 | uptrend | 870.47 | 7.8003 | 1.01849 | 4960.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.97)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225175.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:52:35,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:45,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:52:55,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:05,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:15,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:25,905 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:27,071 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:26 CET)\" (scheduled at 2026-01-23 02:53:26.633942+01:00)\n", - "2026-01-23 02:53:27,071 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:26 CET)\" executed successfully\n", - "2026-01-23 02:53:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:32 CET)\" (scheduled at 2026-01-23 02:53:32.132962+01:00)\n", - "2026-01-23 02:53:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:32 CET)\" executed successfully\n", - "2026-01-23 02:53:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:34 CET)\" (scheduled at 2026-01-23 02:53:34.010875+01:00)\n", - "2026-01-23 02:53:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94781 | 4960.11 |\n", - "| H4 | uptrend | 446.64 | 44.7421 | 2.99756 | 4960.11 |\n", - "| H1 | uptrend | 613.65 | 24.6226 | 2.26646 | 4960.11 |\n", - "| M30 | uptrend | 571.26 | 17.5537 | 1.50415 | 4960.11 |\n", - "| M15 | uptrend | 343.23 | 12.43 | 0.639945 | 4960.12 |\n", - "| M5 | uptrend | 863.29 | 7.8653 | 1.0185 | 4960.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.97)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224887.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:53:35,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:45,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:53:55,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:06,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:16,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:26,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:26,766 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:26 CET)\" (scheduled at 2026-01-23 02:54:26.633942+01:00)\n", - "2026-01-23 02:54:26,766 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:26 CET)\" executed successfully\n", - "2026-01-23 02:54:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:32 CET)\" (scheduled at 2026-01-23 02:54:32.132962+01:00)\n", - "2026-01-23 02:54:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:32 CET)\" executed successfully\n", - "2026-01-23 02:54:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:34 CET)\" (scheduled at 2026-01-23 02:54:34.010875+01:00)\n", - "2026-01-23 02:54:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94762 | 4959.28 |\n", - "| H4 | uptrend | 446.61 | 44.7421 | 2.99736 | 4959.28 |\n", - "| H1 | uptrend | 613.6 | 24.6226 | 2.26627 | 4959.28 |\n", - "| M30 | uptrend | 571.18 | 17.5537 | 1.50395 | 4959.28 |\n", - "| M15 | uptrend | 343.12 | 12.43 | 0.639747 | 4959.28 |\n", - "| M5 | uptrend | 863.12 | 7.8653 | 1.0183 | 4959.28 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224861.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:54:36,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:46,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:54:56,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:06,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:16,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:26,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:26,899 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:26 CET)\" (scheduled at 2026-01-23 02:55:26.633942+01:00)\n", - "2026-01-23 02:55:26,903 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:26 CET)\" executed successfully\n", - "2026-01-23 02:55:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:32 CET)\" (scheduled at 2026-01-23 02:55:32.132962+01:00)\n", - "2026-01-23 02:55:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:32 CET)\" executed successfully\n", - "2026-01-23 02:55:34,067 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:34 CET)\" (scheduled at 2026-01-23 02:55:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:55:34,331 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94732 | 4958.01 |\n", - "| H4 | uptrend | 446.57 | 44.7421 | 2.99706 | 4958.01 |\n", - "| H1 | uptrend | 613.52 | 24.6226 | 2.26597 | 4958.01 |\n", - "| M30 | uptrend | 571.07 | 17.5537 | 1.50365 | 4958.01 |\n", - "| M15 | uptrend | 342.96 | 12.43 | 0.639447 | 4958.01 |\n", - "| M5 | uptrend | 918.62 | 7.3853 | 1.01764 | 4957.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.91)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 227051.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:55:36,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:46,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:55:56,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:06,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:16,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:26,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:26 CET)\" (scheduled at 2026-01-23 02:56:26.633942+01:00)\n", - "2026-01-23 02:56:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:26 CET)\" executed successfully\n", - "2026-01-23 02:56:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:32 CET)\" (scheduled at 2026-01-23 02:56:32.132962+01:00)\n", - "2026-01-23 02:56:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:32 CET)\" executed successfully\n", - "2026-01-23 02:56:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:34 CET)\" (scheduled at 2026-01-23 02:56:34.010875+01:00)\n", - "2026-01-23 02:56:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94748 | 4958.68 |\n", - "| H4 | uptrend | 446.59 | 44.7421 | 2.99722 | 4958.68 |\n", - "| H1 | uptrend | 613.56 | 24.6226 | 2.26613 | 4958.68 |\n", - "| M30 | uptrend | 571.13 | 17.5537 | 1.50381 | 4958.68 |\n", - "| M15 | uptrend | 343.04 | 12.43 | 0.639605 | 4958.68 |\n", - "| M5 | uptrend | 912.16 | 7.4389 | 1.01782 | 4958.68 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.93)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226808.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:56:36,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:46,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:56:56,419 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:06,445 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:16,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:26,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:26,897 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:26 CET)\" (scheduled at 2026-01-23 02:57:26.633942+01:00)\n", - "2026-01-23 02:57:26,899 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:26 CET)\" executed successfully\n", - "2026-01-23 02:57:32,205 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:32 CET)\" (scheduled at 2026-01-23 02:57:32.132962+01:00)\n", - "2026-01-23 02:57:32,213 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:32 CET)\" executed successfully\n", - "2026-01-23 02:57:34,030 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:34 CET)\" (scheduled at 2026-01-23 02:57:34.010875+01:00)\n", - "2026-01-23 02:57:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.9474 | 4958.34 |\n", - "| H4 | uptrend | 446.58 | 44.7421 | 2.99714 | 4958.34 |\n", - "| H1 | uptrend | 613.54 | 24.6226 | 2.26605 | 4958.34 |\n", - "| M30 | uptrend | 571.1 | 17.5537 | 1.50373 | 4958.34 |\n", - "| M15 | uptrend | 343 | 12.43 | 0.639524 | 4958.34 |\n", - "| M5 | uptrend | 906.78 | 7.4824 | 1.01774 | 4958.34 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 226585.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:57:36,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:46,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:57:56,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:06,595 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:16,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:26 CET)\" (scheduled at 2026-01-23 02:58:26.633942+01:00)\n", - "2026-01-23 02:58:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:26 CET)\" executed successfully\n", - "2026-01-23 02:58:26,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:32,163 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:32 CET)\" (scheduled at 2026-01-23 02:58:32.132962+01:00)\n", - "2026-01-23 02:58:32,163 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:32 CET)\" executed successfully\n", - "2026-01-23 02:58:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:34 CET)\" (scheduled at 2026-01-23 02:58:34.010875+01:00)\n", - "2026-01-23 02:58:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 02:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94684 | 4955.99 |\n", - "| H4 | uptrend | 446.5 | 44.7421 | 2.99659 | 4956.01 |\n", - "| H1 | uptrend | 613.39 | 24.6226 | 2.26549 | 4956.01 |\n", - "| M30 | uptrend | 570.89 | 17.5537 | 1.50318 | 4956.01 |\n", - "| M15 | uptrend | 342.7 | 12.43 | 0.638974 | 4956.01 |\n", - "| M5 | uptrend | 884.91 | 7.6632 | 1.01719 | 4956.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.86)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 225655.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:58:36,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:46,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:58:56,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:06,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:16,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:26 CET)\" (scheduled at 2026-01-23 02:59:26.633942+01:00)\n", - "2026-01-23 02:59:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:26 CET)\" executed successfully\n", - "2026-01-23 02:59:26,800 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:32 CET)\" (scheduled at 2026-01-23 02:59:32.132962+01:00)\n", - "2026-01-23 02:59:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:32 CET)\" executed successfully\n", - "2026-01-23 02:59:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:34 CET)\" (scheduled at 2026-01-23 02:59:34.010875+01:00)\n", - "2026-01-23 02:59:34,195 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 29%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94611 | 4952.91 |\n", - "| H4 | uptrend | 446.39 | 44.7421 | 2.99586 | 4952.91 |\n", - "| H1 | uptrend | 613.19 | 24.6226 | 2.26476 | 4952.91 |\n", - "| M30 | uptrend | 570.61 | 17.5537 | 1.50245 | 4952.91 |\n", - "| M15 | uptrend | 342.31 | 12.43 | 0.638241 | 4952.91 |\n", - "| M5 | uptrend | 862.57 | 7.856 | 1.01645 | 4952.91 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 626.79)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 224688.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 02:59:36,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:46,842 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 02:59:56,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:00,002 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 03:30:00 CET)\" (scheduled at 2026-01-23 03:00:00+01:00)\n", - "2026-01-23 03:00:00,022 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 03:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 03:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.96 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:00:06,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:16,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:26,671 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:26 CET)\" (scheduled at 2026-01-23 03:00:26.633942+01:00)\n", - "2026-01-23 03:00:26,671 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:26 CET)\" executed successfully\n", - "2026-01-23 03:00:26,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:32,157 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:32 CET)\" (scheduled at 2026-01-23 03:00:32.132962+01:00)\n", - "2026-01-23 03:00:32,157 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:32 CET)\" executed successfully\n", - "2026-01-23 03:00:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:34 CET)\" (scheduled at 2026-01-23 03:00:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:00:34,264 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.9469 | 4956.26 |\n", - "| H4 | uptrend | 489.03 | 41.7962 | 3.06591 | 4956.26 |\n", - "| H1 | uptrend | 665.42 | 23.1138 | 2.30708 | 4956.26 |\n", - "| M30 | uptrend | 607.97 | 16.5498 | 1.50928 | 4956.26 |\n", - "| M15 | uptrend | 379.28 | 11.7922 | 0.670886 | 4956.26 |\n", - "| M5 | uptrend | 896.32 | 7.5449 | 1.01439 | 4956.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.88)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238177.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:00:36,991 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:47,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:00:57,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:07,131 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:17,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:26 CET)\" (scheduled at 2026-01-23 03:01:26.633942+01:00)\n", - "2026-01-23 03:01:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:26 CET)\" executed successfully\n", - "2026-01-23 03:01:27,202 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:32 CET)\" (scheduled at 2026-01-23 03:01:32.132962+01:00)\n", - "2026-01-23 03:01:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:32 CET)\" executed successfully\n", - "2026-01-23 03:01:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:34 CET)\" (scheduled at 2026-01-23 03:01:34.010875+01:00)\n", - "2026-01-23 03:01:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94659 | 4954.93 |\n", - "| H4 | uptrend | 488.81 | 41.8105 | 3.0656 | 4954.93 |\n", - "| H1 | uptrend | 664.92 | 23.1281 | 2.30676 | 4954.93 |\n", - "| M30 | uptrend | 607.32 | 16.5641 | 1.50897 | 4954.93 |\n", - "| M15 | uptrend | 378.65 | 11.8065 | 0.670572 | 4954.93 |\n", - "| M5 | uptrend | 894.35 | 7.5592 | 1.01408 | 4954.93 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.78)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 237948.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:01:37,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:47,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:01:57,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:07,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:17,334 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:26 CET)\" (scheduled at 2026-01-23 03:02:26.633942+01:00)\n", - "2026-01-23 03:02:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:26 CET)\" executed successfully\n", - "2026-01-23 03:02:27,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:32 CET)\" (scheduled at 2026-01-23 03:02:32.132962+01:00)\n", - "2026-01-23 03:02:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:32 CET)\" executed successfully\n", - "2026-01-23 03:02:34,061 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:34 CET)\" (scheduled at 2026-01-23 03:02:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:02:34,354 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94627 | 4953.56 |\n", - "| H4 | uptrend | 487.67 | 41.9034 | 3.06527 | 4953.56 |\n", - "| H1 | uptrend | 662.17 | 23.221 | 2.30644 | 4953.56 |\n", - "| M30 | uptrend | 603.81 | 16.657 | 1.50865 | 4953.56 |\n", - "| M15 | uptrend | 375.51 | 11.8993 | 0.670248 | 4953.56 |\n", - "| M5 | uptrend | 883.21 | 7.652 | 1.01376 | 4953.56 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236711.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:02:37,395 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:47,418 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:02:57,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:07,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:17,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:26 CET)\" (scheduled at 2026-01-23 03:03:26.633942+01:00)\n", - "2026-01-23 03:03:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:26 CET)\" executed successfully\n", - "2026-01-23 03:03:27,521 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:32 CET)\" (scheduled at 2026-01-23 03:03:32.132962+01:00)\n", - "2026-01-23 03:03:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:32 CET)\" executed successfully\n", - "2026-01-23 03:03:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:34 CET)\" (scheduled at 2026-01-23 03:03:34.010875+01:00)\n", - "2026-01-23 03:03:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94606 | 4952.67 |\n", - "| H4 | uptrend | 487.64 | 41.9034 | 3.06506 | 4952.67 |\n", - "| H1 | uptrend | 662.11 | 23.221 | 2.30623 | 4952.67 |\n", - "| M30 | uptrend | 603.72 | 16.657 | 1.50843 | 4952.67 |\n", - "| M15 | uptrend | 375.39 | 11.8993 | 0.670038 | 4952.67 |\n", - "| M5 | uptrend | 883.03 | 7.652 | 1.01354 | 4952.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236682.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:03:37,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:47,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:03:57,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:07,628 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:17,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:26 CET)\" (scheduled at 2026-01-23 03:04:26.633942+01:00)\n", - "2026-01-23 03:04:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:26 CET)\" executed successfully\n", - "2026-01-23 03:04:27,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:32 CET)\" (scheduled at 2026-01-23 03:04:32.132962+01:00)\n", - "2026-01-23 03:04:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:32 CET)\" executed successfully\n", - "2026-01-23 03:04:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:34 CET)\" (scheduled at 2026-01-23 03:04:34.010875+01:00)\n", - "2026-01-23 03:04:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94575 | 4951.36 |\n", - "| H4 | uptrend | 486.74 | 41.9762 | 3.06475 | 4951.36 |\n", - "| H1 | uptrend | 659.95 | 23.2938 | 2.30592 | 4951.36 |\n", - "| M30 | uptrend | 600.97 | 16.7298 | 1.50812 | 4951.36 |\n", - "| M15 | uptrend | 372.94 | 11.9722 | 0.669728 | 4951.36 |\n", - "| M5 | uptrend | 874.43 | 7.7249 | 1.01324 | 4951.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.91)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235717.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:04:37,690 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:47,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:04:57,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:07,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:17,809 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:26 CET)\" (scheduled at 2026-01-23 03:05:26.633942+01:00)\n", - "2026-01-23 03:05:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:26 CET)\" executed successfully\n", - "2026-01-23 03:05:27,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:32 CET)\" (scheduled at 2026-01-23 03:05:32.132962+01:00)\n", - "2026-01-23 03:05:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:32 CET)\" executed successfully\n", - "2026-01-23 03:05:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:34 CET)\" (scheduled at 2026-01-23 03:05:34.010875+01:00)\n", - "2026-01-23 03:05:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94627 | 4953.59 |\n", - "| H4 | uptrend | 486.83 | 41.9762 | 3.06528 | 4953.59 |\n", - "| H1 | uptrend | 660.1 | 23.2938 | 2.30645 | 4953.59 |\n", - "| M30 | uptrend | 601.18 | 16.7298 | 1.50865 | 4953.59 |\n", - "| M15 | uptrend | 373.23 | 11.9722 | 0.670255 | 4953.59 |\n", - "| M5 | uptrend | 914.89 | 7.3553 | 1.00939 | 4953.6 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.97)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 237391.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:05:37,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:47,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:05:57,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:07,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:17,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:26 CET)\" (scheduled at 2026-01-23 03:06:26.633942+01:00)\n", - "2026-01-23 03:06:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:26 CET)\" executed successfully\n", - "2026-01-23 03:06:27,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:32 CET)\" (scheduled at 2026-01-23 03:06:32.132962+01:00)\n", - "2026-01-23 03:06:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:32 CET)\" executed successfully\n", - "2026-01-23 03:06:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:34 CET)\" (scheduled at 2026-01-23 03:06:34.010875+01:00)\n", - "2026-01-23 03:06:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94655 | 4954.75 |\n", - "| H4 | uptrend | 486.87 | 41.9762 | 3.06555 | 4954.75 |\n", - "| H1 | uptrend | 660.18 | 23.2938 | 2.30672 | 4954.75 |\n", - "| M30 | uptrend | 601.29 | 16.7298 | 1.50893 | 4954.75 |\n", - "| M15 | uptrend | 373.38 | 11.9722 | 0.670529 | 4954.75 |\n", - "| M5 | uptrend | 904.33 | 7.4431 | 1.00966 | 4954.75 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 643.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236997.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:06:37,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:48,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:06:58,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:08,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:18,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:26 CET)\" (scheduled at 2026-01-23 03:07:26.633942+01:00)\n", - "2026-01-23 03:07:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:26 CET)\" executed successfully\n", - "2026-01-23 03:07:28,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:32 CET)\" (scheduled at 2026-01-23 03:07:32.132962+01:00)\n", - "2026-01-23 03:07:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:32 CET)\" executed successfully\n", - "2026-01-23 03:07:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:34 CET)\" (scheduled at 2026-01-23 03:07:34.010875+01:00)\n", - "2026-01-23 03:07:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94622 | 4953.36 |\n", - "| H4 | uptrend | 486.82 | 41.9762 | 3.06523 | 4953.36 |\n", - "| H1 | uptrend | 660.09 | 23.2938 | 2.30639 | 4953.36 |\n", - "| M30 | uptrend | 601.16 | 16.7298 | 1.5086 | 4953.36 |\n", - "| M15 | uptrend | 373.2 | 11.9722 | 0.670201 | 4953.36 |\n", - "| M5 | uptrend | 904.04 | 7.4431 | 1.00933 | 4953.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236951.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:07:38,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:48,163 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:07:58,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:08,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:18,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:26 CET)\" (scheduled at 2026-01-23 03:08:26.633942+01:00)\n", - "2026-01-23 03:08:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:26 CET)\" executed successfully\n", - "2026-01-23 03:08:28,268 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:32 CET)\" (scheduled at 2026-01-23 03:08:32.132962+01:00)\n", - "2026-01-23 03:08:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:32 CET)\" executed successfully\n", - "2026-01-23 03:08:34,032 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:34 CET)\" (scheduled at 2026-01-23 03:08:34.010875+01:00)\n", - "2026-01-23 03:08:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94574 | 4951.34 |\n", - "| H4 | uptrend | 486.74 | 41.9762 | 3.06475 | 4951.34 |\n", - "| H1 | uptrend | 659.95 | 23.2938 | 2.30591 | 4951.34 |\n", - "| M30 | uptrend | 600.97 | 16.7298 | 1.50812 | 4951.34 |\n", - "| M15 | uptrend | 372.93 | 11.9722 | 0.669723 | 4951.34 |\n", - "| M5 | uptrend | 900.93 | 7.4653 | 1.00886 | 4951.34 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.91)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236777.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:08:38,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:48,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:08:58,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:08,367 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:18,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:26 CET)\" (scheduled at 2026-01-23 03:09:26.633942+01:00)\n", - "2026-01-23 03:09:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:26 CET)\" executed successfully\n", - "2026-01-23 03:09:28,423 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:32 CET)\" (scheduled at 2026-01-23 03:09:32.132962+01:00)\n", - "2026-01-23 03:09:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:32 CET)\" executed successfully\n", - "2026-01-23 03:09:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:34 CET)\" (scheduled at 2026-01-23 03:09:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.9455 | 4950.33 |\n", - "| H4 | uptrend | 485.09 | 42.1162 | 3.06451 | 4950.33 |\n", - "| H1 | uptrend | 655.94 | 23.4338 | 2.30567 | 4950.32 |\n", - "| M30 | uptrend | 595.89 | 16.8698 | 1.50788 | 4950.32 |\n", - "| M15 | uptrend | 368.49 | 12.1122 | 0.669482 | 4950.32 |\n", - "| M5 | uptrend | 879.18 | 7.6481 | 1.00861 | 4950.32 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234765.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:09:34,236 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:09:38,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:48,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:09:58,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:08,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:18,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:26,756 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:26 CET)\" (scheduled at 2026-01-23 03:10:26.633942+01:00)\n", - "2026-01-23 03:10:26,756 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:26 CET)\" executed successfully\n", - "2026-01-23 03:10:28,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:32 CET)\" (scheduled at 2026-01-23 03:10:32.132962+01:00)\n", - "2026-01-23 03:10:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:32 CET)\" executed successfully\n", - "2026-01-23 03:10:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:34 CET)\" (scheduled at 2026-01-23 03:10:34.010875+01:00)\n", - "2026-01-23 03:10:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94512 | 4948.69 |\n", - "| H4 | uptrend | 484.91 | 42.1262 | 3.06412 | 4948.69 |\n", - "| H1 | uptrend | 655.55 | 23.4438 | 2.30529 | 4948.69 |\n", - "| M30 | uptrend | 595.38 | 16.8798 | 1.50749 | 4948.69 |\n", - "| M15 | uptrend | 367.97 | 12.1222 | 0.669097 | 4948.69 |\n", - "| M5 | uptrend | 923.59 | 7.2297 | 1.00159 | 4948.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 642.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 236422.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:10:38,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:48,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:10:58,644 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:08,669 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:18,691 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:26 CET)\" (scheduled at 2026-01-23 03:11:26.633942+01:00)\n", - "2026-01-23 03:11:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:26 CET)\" executed successfully\n", - "2026-01-23 03:11:28,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:32,167 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:32 CET)\" (scheduled at 2026-01-23 03:11:32.132962+01:00)\n", - "2026-01-23 03:11:32,167 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:32 CET)\" executed successfully\n", - "2026-01-23 03:11:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:34 CET)\" (scheduled at 2026-01-23 03:11:34.010875+01:00)\n", - "2026-01-23 03:11:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94513 | 4948.76 |\n", - "| H4 | uptrend | 483.71 | 42.2312 | 3.06414 | 4948.76 |\n", - "| H1 | uptrend | 652.63 | 23.5488 | 2.30531 | 4948.76 |\n", - "| M30 | uptrend | 591.71 | 16.9848 | 1.50751 | 4948.76 |\n", - "| M15 | uptrend | 364.82 | 12.2272 | 0.669114 | 4948.76 |\n", - "| M5 | uptrend | 910.38 | 7.3347 | 1.00161 | 4948.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235071.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:11:38,739 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:48,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:11:58,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:08,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:18,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:26 CET)\" (scheduled at 2026-01-23 03:12:26.633942+01:00)\n", - "2026-01-23 03:12:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:26 CET)\" executed successfully\n", - "2026-01-23 03:12:28,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:32 CET)\" (scheduled at 2026-01-23 03:12:32.132962+01:00)\n", - "2026-01-23 03:12:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:32 CET)\" executed successfully\n", - "2026-01-23 03:12:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:34 CET)\" (scheduled at 2026-01-23 03:12:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94554 | 4950.48 |\n", - "| H4 | uptrend | 483.77 | 42.2312 | 3.06455 | 4950.48 |\n", - "| H1 | uptrend | 652.74 | 23.5488 | 2.3057 | 4950.45 |\n", - "| M30 | uptrend | 591.86 | 16.9848 | 1.50791 | 4950.45 |\n", - "| M15 | uptrend | 365.04 | 12.2272 | 0.669513 | 4950.45 |\n", - "| M5 | uptrend | 909.06 | 7.3483 | 1.00201 | 4950.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 235060.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:12:34,239 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:12:38,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:48,905 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:12:58,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:08,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:18,979 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:26,759 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:26 CET)\" (scheduled at 2026-01-23 03:13:26.633942+01:00)\n", - "2026-01-23 03:13:26,759 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:26 CET)\" executed successfully\n", - "2026-01-23 03:13:29,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:32 CET)\" (scheduled at 2026-01-23 03:13:32.132962+01:00)\n", - "2026-01-23 03:13:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:32 CET)\" executed successfully\n", - "2026-01-23 03:13:34,064 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:34 CET)\" (scheduled at 2026-01-23 03:13:34.010875+01:00)\n", - "2026-01-23 03:13:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94555 | 4950.52 |\n", - "| H4 | uptrend | 483.77 | 42.2312 | 3.06456 | 4950.52 |\n", - "| H1 | uptrend | 652.75 | 23.5488 | 2.30572 | 4950.52 |\n", - "| M30 | uptrend | 591.87 | 16.9848 | 1.50793 | 4950.52 |\n", - "| M15 | uptrend | 365.05 | 12.2272 | 0.66953 | 4950.52 |\n", - "| M5 | uptrend | 907.32 | 7.3626 | 1.00202 | 4950.52 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234991.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:13:39,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:49,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:13:59,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:09,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:19,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:27,063 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:26 CET)\" (scheduled at 2026-01-23 03:14:26.633942+01:00)\n", - "2026-01-23 03:14:27,063 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:26 CET)\" executed successfully\n", - "2026-01-23 03:14:29,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:32 CET)\" (scheduled at 2026-01-23 03:14:32.132962+01:00)\n", - "2026-01-23 03:14:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:32 CET)\" executed successfully\n", - "2026-01-23 03:14:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:34 CET)\" (scheduled at 2026-01-23 03:14:34.010875+01:00)\n", - "2026-01-23 03:14:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.97 | 88.7586 | 9.94506 | 4948.47 |\n", - "| H4 | uptrend | 483.7 | 42.2312 | 3.06407 | 4948.47 |\n", - "| H1 | uptrend | 652.61 | 23.5488 | 2.30524 | 4948.47 |\n", - "| M30 | uptrend | 591.68 | 16.9848 | 1.50744 | 4948.47 |\n", - "| M15 | uptrend | 364.79 | 12.2272 | 0.669045 | 4948.47 |\n", - "| M5 | uptrend | 906.61 | 7.3647 | 1.00154 | 4948.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.66)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 234913.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:14:39,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:49,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:14:59,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:09,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:19,273 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:26 CET)\" (scheduled at 2026-01-23 03:15:26.633942+01:00)\n", - "2026-01-23 03:15:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:26 CET)\" executed successfully\n", - "2026-01-23 03:15:29,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:32 CET)\" (scheduled at 2026-01-23 03:15:32.132962+01:00)\n", - "2026-01-23 03:15:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:32 CET)\" executed successfully\n", - "2026-01-23 03:15:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:34 CET)\" (scheduled at 2026-01-23 03:15:34.010875+01:00)\n", - "2026-01-23 03:15:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94543 | 4950.04 |\n", - "| H4 | uptrend | 483.76 | 42.2312 | 3.06444 | 4950.04 |\n", - "| H1 | uptrend | 652.72 | 23.5488 | 2.30561 | 4950.04 |\n", - "| M30 | uptrend | 591.83 | 16.9848 | 1.50781 | 4950.04 |\n", - "| M15 | uptrend | 404.73 | 11.5088 | 0.698691 | 4950.04 |\n", - "| M5 | uptrend | 948.18 | 6.9937 | 0.994683 | 4950.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238998.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:15:39,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:49,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:15:59,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:09,421 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:19,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:26,708 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:26 CET)\" (scheduled at 2026-01-23 03:16:26.633942+01:00)\n", - "2026-01-23 03:16:26,708 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:26 CET)\" executed successfully\n", - "2026-01-23 03:16:29,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:32 CET)\" (scheduled at 2026-01-23 03:16:32.132962+01:00)\n", - "2026-01-23 03:16:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:32 CET)\" executed successfully\n", - "2026-01-23 03:16:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:34 CET)\" (scheduled at 2026-01-23 03:16:34.010875+01:00)\n", - "2026-01-23 03:16:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94536 | 4949.71 |\n", - "| H4 | uptrend | 483.74 | 42.2312 | 3.06436 | 4949.71 |\n", - "| H1 | uptrend | 652.69 | 23.5488 | 2.30553 | 4949.71 |\n", - "| M30 | uptrend | 591.8 | 16.9848 | 1.50773 | 4949.7 |\n", - "| M15 | uptrend | 404.68 | 11.5088 | 0.698611 | 4949.7 |\n", - "| M5 | uptrend | 948.1 | 6.9937 | 0.994602 | 4949.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238987.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:16:39,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:49,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:16:59,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:09,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:19,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:26,715 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:26 CET)\" (scheduled at 2026-01-23 03:17:26.633942+01:00)\n", - "2026-01-23 03:17:26,715 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:26 CET)\" executed successfully\n", - "2026-01-23 03:17:29,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:32 CET)\" (scheduled at 2026-01-23 03:17:32.132962+01:00)\n", - "2026-01-23 03:17:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:32 CET)\" executed successfully\n", - "2026-01-23 03:17:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:34 CET)\" (scheduled at 2026-01-23 03:17:34.010875+01:00)\n", - "2026-01-23 03:17:34,229 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.9455 | 4950.31 |\n", - "| H4 | uptrend | 483.77 | 42.2312 | 3.06451 | 4950.31 |\n", - "| H1 | uptrend | 652.73 | 23.5488 | 2.30567 | 4950.29 |\n", - "| M30 | uptrend | 591.85 | 16.9848 | 1.50787 | 4950.3 |\n", - "| M15 | uptrend | 404.56 | 11.5145 | 0.698753 | 4950.3 |\n", - "| M5 | uptrend | 947.46 | 6.9994 | 0.994744 | 4950.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238964.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:17:39,716 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:49,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:17:59,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:09,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:19,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:26 CET)\" (scheduled at 2026-01-23 03:18:26.633942+01:00)\n", - "2026-01-23 03:18:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:26 CET)\" executed successfully\n", - "2026-01-23 03:18:29,814 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:32 CET)\" (scheduled at 2026-01-23 03:18:32.132962+01:00)\n", - "2026-01-23 03:18:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:32 CET)\" executed successfully\n", - "2026-01-23 03:18:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:34 CET)\" (scheduled at 2026-01-23 03:18:34.010875+01:00)\n", - "2026-01-23 03:18:34,230 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94514 | 4948.77 |\n", - "| H4 | uptrend | 483.71 | 42.2312 | 3.06414 | 4948.77 |\n", - "| H1 | uptrend | 652.63 | 23.5488 | 2.30531 | 4948.77 |\n", - "| M30 | uptrend | 591.71 | 16.9848 | 1.50751 | 4948.77 |\n", - "| M15 | uptrend | 402.83 | 11.5581 | 0.698391 | 4948.77 |\n", - "| M5 | uptrend | 941.26 | 7.0429 | 0.994385 | 4948.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.67)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238587.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:18:39,835 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:49,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:18:59,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:19:09,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:19:19,922 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:19:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:26 CET)\" (scheduled at 2026-01-23 03:19:26.633942+01:00)\n", - "2026-01-23 03:19:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:26 CET)\" executed successfully\n", - "2026-01-23 03:19:29,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:19:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:32 CET)\" (scheduled at 2026-01-23 03:19:32.132962+01:00)\n", - "2026-01-23 03:19:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:32 CET)\" executed successfully\n", - "2026-01-23 03:19:34,043 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:34 CET)\" (scheduled at 2026-01-23 03:19:34.010875+01:00)\n", - "2026-01-23 03:19:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94565 | 4950.95 |\n", - "| H4 | uptrend | 483.79 | 42.2312 | 3.06466 | 4950.95 |\n", - "| H1 | uptrend | 652.78 | 23.5488 | 2.30582 | 4950.95 |\n", - "| M30 | uptrend | 591.91 | 16.9848 | 1.50803 | 4950.95 |\n", - "| M15 | uptrend | 402.8 | 11.5674 | 0.698906 | 4950.95 |\n", - "| M5 | uptrend | 940.5 | 7.0522 | 0.994898 | 4950.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.73)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238591.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:19:39,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:19:49,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:00,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:10,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:20,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:26 CET)\" (scheduled at 2026-01-23 03:20:26.633942+01:00)\n", - "2026-01-23 03:20:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:26 CET)\" executed successfully\n", - "2026-01-23 03:20:30,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:32,182 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:32 CET)\" (scheduled at 2026-01-23 03:20:32.132962+01:00)\n", - "2026-01-23 03:20:32,198 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:32 CET)\" executed successfully\n", - "2026-01-23 03:20:34,048 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:34 CET)\" (scheduled at 2026-01-23 03:20:34.010875+01:00)\n", - "2026-01-23 03:20:34,249 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.94534 | 4949.63 |\n", - "| H4 | uptrend | 483.74 | 42.2312 | 3.06434 | 4949.63 |\n", - "| H1 | uptrend | 652.69 | 23.5488 | 2.30551 | 4949.63 |\n", - "| M30 | uptrend | 591.79 | 16.9848 | 1.50772 | 4949.63 |\n", - "| M15 | uptrend | 402.62 | 11.5674 | 0.698594 | 4949.63 |\n", - "| M5 | uptrend | 988.45 | 6.6571 | 0.987029 | 4949.63 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 240476.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:20:40,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:20:50,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:00,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:10,156 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:20,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:26,657 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:26 CET)\" (scheduled at 2026-01-23 03:21:26.633942+01:00)\n", - "2026-01-23 03:21:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:26 CET)\" executed successfully\n", - "2026-01-23 03:21:30,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:32,192 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:32 CET)\" (scheduled at 2026-01-23 03:21:32.132962+01:00)\n", - "2026-01-23 03:21:32,192 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:32 CET)\" executed successfully\n", - "2026-01-23 03:21:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:34 CET)\" (scheduled at 2026-01-23 03:21:34.010875+01:00)\n", - "2026-01-23 03:21:34,203 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94548 | 4950.23 |\n", - "| H4 | uptrend | 483.76 | 42.2312 | 3.06449 | 4950.23 |\n", - "| H1 | uptrend | 652.73 | 23.5488 | 2.30565 | 4950.23 |\n", - "| M30 | uptrend | 591.84 | 16.9848 | 1.50786 | 4950.23 |\n", - "| M15 | uptrend | 401.96 | 11.5888 | 0.698736 | 4950.23 |\n", - "| M5 | uptrend | 979.97 | 6.7156 | 0.987171 | 4950.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 240107.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:21:40,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:21:50,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:00,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:10,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:20,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:26 CET)\" (scheduled at 2026-01-23 03:22:26.633942+01:00)\n", - "2026-01-23 03:22:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:26 CET)\" executed successfully\n", - "2026-01-23 03:22:30,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:32,197 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:32 CET)\" (scheduled at 2026-01-23 03:22:32.132962+01:00)\n", - "2026-01-23 03:22:32,197 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:32 CET)\" executed successfully\n", - "2026-01-23 03:22:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:34 CET)\" (scheduled at 2026-01-23 03:22:34.010875+01:00)\n", - "2026-01-23 03:22:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94555 | 4950.52 |\n", - "| H4 | uptrend | 483.77 | 42.2312 | 3.06456 | 4950.52 |\n", - "| H1 | uptrend | 652.75 | 23.5488 | 2.30572 | 4950.52 |\n", - "| M30 | uptrend | 591.87 | 16.9848 | 1.50793 | 4950.52 |\n", - "| M15 | uptrend | 399.83 | 11.6517 | 0.698805 | 4950.52 |\n", - "| M5 | uptrend | 970.95 | 6.7785 | 0.987239 | 4950.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.72)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239624.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:22:40,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:22:50,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:00,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:10,425 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:20,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:26,720 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:26 CET)\" (scheduled at 2026-01-23 03:23:26.633942+01:00)\n", - "2026-01-23 03:23:26,720 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:26 CET)\" executed successfully\n", - "2026-01-23 03:23:30,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:32,175 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:32 CET)\" (scheduled at 2026-01-23 03:23:32.132962+01:00)\n", - "2026-01-23 03:23:32,191 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:32 CET)\" executed successfully\n", - "2026-01-23 03:23:34,136 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:34 CET)\" (scheduled at 2026-01-23 03:23:34.010875+01:00)\n", - "2026-01-23 03:23:34,294 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94609 | 4952.8 |\n", - "| H4 | uptrend | 483.86 | 42.2312 | 3.06509 | 4952.8 |\n", - "| H1 | uptrend | 652.9 | 23.5488 | 2.30626 | 4952.8 |\n", - "| M30 | uptrend | 592.08 | 16.9848 | 1.50846 | 4952.8 |\n", - "| M15 | uptrend | 398.4 | 11.7024 | 0.699343 | 4952.8 |\n", - "| M5 | uptrend | 964.27 | 6.8292 | 0.987778 | 4952.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.77)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239309.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:23:40,476 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:23:50,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:00,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:10,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:20,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:26,652 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:26 CET)\" (scheduled at 2026-01-23 03:24:26.633942+01:00)\n", - "2026-01-23 03:24:26,652 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:26 CET)\" executed successfully\n", - "2026-01-23 03:24:30,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:32 CET)\" (scheduled at 2026-01-23 03:24:32.132962+01:00)\n", - "2026-01-23 03:24:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:32 CET)\" executed successfully\n", - "2026-01-23 03:24:34,047 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:34 CET)\" (scheduled at 2026-01-23 03:24:34.010875+01:00)\n", - "2026-01-23 03:24:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.9453 | 4949.46 |\n", - "| H4 | uptrend | 483.73 | 42.2312 | 3.06431 | 4949.46 |\n", - "| H1 | uptrend | 652.68 | 23.5488 | 2.30547 | 4949.46 |\n", - "| M30 | uptrend | 591.77 | 16.9848 | 1.50768 | 4949.46 |\n", - "| M15 | uptrend | 396.67 | 11.7403 | 0.698554 | 4949.46 |\n", - "| M5 | uptrend | 958.18 | 6.8671 | 0.986989 | 4949.46 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 238906.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:24:40,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:24:50,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:00,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:10,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:20,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:26 CET)\" (scheduled at 2026-01-23 03:25:26.633942+01:00)\n", - "2026-01-23 03:25:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:26 CET)\" executed successfully\n", - "2026-01-23 03:25:30,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:32,268 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:32 CET)\" (scheduled at 2026-01-23 03:25:32.132962+01:00)\n", - "2026-01-23 03:25:32,284 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:32 CET)\" executed successfully\n", - "2026-01-23 03:25:34,044 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:34 CET)\" (scheduled at 2026-01-23 03:25:34.010875+01:00)\n", - "2026-01-23 03:25:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94543 | 4950 |\n", - "| H4 | uptrend | 483.75 | 42.2312 | 3.06443 | 4950 |\n", - "| H1 | uptrend | 652.71 | 23.5488 | 2.3056 | 4950 |\n", - "| M30 | uptrend | 591.82 | 16.9848 | 1.5078 | 4950 |\n", - "| M15 | uptrend | 396.74 | 11.7403 | 0.698682 | 4950 |\n", - "| M5 | uptrend | 1011.27 | 6.4433 | 0.977382 | 4950 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.70)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 241043.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:25:40,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:25:50,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:00,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:10,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:20,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:26 CET)\" (scheduled at 2026-01-23 03:26:26.633942+01:00)\n", - "2026-01-23 03:26:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:26 CET)\" executed successfully\n", - "2026-01-23 03:26:30,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:32,390 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:32 CET)\" (scheduled at 2026-01-23 03:26:32.132962+01:00)\n", - "2026-01-23 03:26:32,390 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:32 CET)\" executed successfully\n", - "2026-01-23 03:26:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:34 CET)\" (scheduled at 2026-01-23 03:26:34.010875+01:00)\n", - "2026-01-23 03:26:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.94527 | 4949.35 |\n", - "| H4 | uptrend | 483.73 | 42.2312 | 3.06428 | 4949.35 |\n", - "| H1 | uptrend | 652.67 | 23.5488 | 2.30544 | 4949.35 |\n", - "| M30 | uptrend | 591.76 | 16.9848 | 1.50765 | 4949.35 |\n", - "| M15 | uptrend | 396.66 | 11.7403 | 0.698528 | 4949.35 |\n", - "| M5 | uptrend | 1000.14 | 6.514 | 0.977228 | 4949.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.69)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 240581.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:26:40,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:26:50,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:00,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:10,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:20,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:26 CET)\" (scheduled at 2026-01-23 03:27:26.633942+01:00)\n", - "2026-01-23 03:27:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:26 CET)\" executed successfully\n", - "2026-01-23 03:27:30,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:32 CET)\" (scheduled at 2026-01-23 03:27:32.132962+01:00)\n", - "2026-01-23 03:27:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:32 CET)\" executed successfully\n", - "2026-01-23 03:27:34,540 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:34 CET)\" (scheduled at 2026-01-23 03:27:34.010875+01:00)\n", - "2026-01-23 03:27:34,673 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94515 | 4948.83 |\n", - "| H4 | uptrend | 483.59 | 42.2419 | 3.06416 | 4948.83 |\n", - "| H1 | uptrend | 652.34 | 23.5596 | 2.30532 | 4948.83 |\n", - "| M30 | uptrend | 591.34 | 16.9956 | 1.50753 | 4948.83 |\n", - "| M15 | uptrend | 394.07 | 11.8153 | 0.698405 | 4948.83 |\n", - "| M5 | uptrend | 978.13 | 6.6597 | 0.977105 | 4948.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.62)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239473.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:27:40,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:27:50,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:01,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:11,034 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:21,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:26 CET)\" (scheduled at 2026-01-23 03:28:26.633942+01:00)\n", - "2026-01-23 03:28:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:26 CET)\" executed successfully\n", - "2026-01-23 03:28:31,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:32,290 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:32 CET)\" (scheduled at 2026-01-23 03:28:32.132962+01:00)\n", - "2026-01-23 03:28:32,290 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:32 CET)\" executed successfully\n", - "2026-01-23 03:28:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:34 CET)\" (scheduled at 2026-01-23 03:28:34.010875+01:00)\n", - "2026-01-23 03:28:34,169 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94542 | 4949.99 |\n", - "| H4 | uptrend | 483.63 | 42.2419 | 3.06443 | 4949.99 |\n", - "| H1 | uptrend | 652.42 | 23.5596 | 2.30559 | 4949.99 |\n", - "| M30 | uptrend | 591.45 | 16.9956 | 1.5078 | 4949.99 |\n", - "| M15 | uptrend | 394.22 | 11.8153 | 0.69868 | 4949.99 |\n", - "| M5 | uptrend | 977.15 | 6.6683 | 0.977379 | 4949.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.65)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239462.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:28:41,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:28:51,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:01,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:11,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:21,220 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:26 CET)\" (scheduled at 2026-01-23 03:29:26.633942+01:00)\n", - "2026-01-23 03:29:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:26 CET)\" executed successfully\n", - "2026-01-23 03:29:31,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:32 CET)\" (scheduled at 2026-01-23 03:29:32.132962+01:00)\n", - "2026-01-23 03:29:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:32 CET)\" executed successfully\n", - "2026-01-23 03:29:34,185 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:34 CET)\" (scheduled at 2026-01-23 03:29:34.010875+01:00)\n", - "2026-01-23 03:29:34,362 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94591 | 4952.07 |\n", - "| H4 | uptrend | 483.71 | 42.2419 | 3.06492 | 4952.07 |\n", - "| H1 | uptrend | 652.56 | 23.5596 | 2.30609 | 4952.07 |\n", - "| M30 | uptrend | 591.64 | 16.9956 | 1.50829 | 4952.07 |\n", - "| M15 | uptrend | 394.5 | 11.8153 | 0.699171 | 4952.07 |\n", - "| M5 | uptrend | 965.33 | 6.7533 | 0.977871 | 4952.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.71)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 239041.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:29:41,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:29:51,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:00,048 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 04:00:00 CET)\" (scheduled at 2026-01-23 03:30:00+01:00)\n", - "2026-01-23 03:30:00,069 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 04:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 03:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 23.89 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:30:01,296 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:11,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:21,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:26,854 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:26 CET)\" (scheduled at 2026-01-23 03:30:26.633942+01:00)\n", - "2026-01-23 03:30:26,854 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:26 CET)\" executed successfully\n", - "2026-01-23 03:30:31,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:32 CET)\" (scheduled at 2026-01-23 03:30:32.132962+01:00)\n", - "2026-01-23 03:30:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:32 CET)\" executed successfully\n", - "2026-01-23 03:30:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:34 CET)\" (scheduled at 2026-01-23 03:30:34.010875+01:00)\n", - "2026-01-23 03:30:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94697 | 4956.54 |\n", - "| H4 | uptrend | 483.88 | 42.2419 | 3.06598 | 4956.54 |\n", - "| H1 | uptrend | 652.85 | 23.5596 | 2.30714 | 4956.54 |\n", - "| M30 | uptrend | 627.91 | 16.0723 | 1.5138 | 4956.54 |\n", - "| M15 | uptrend | 432.91 | 11.262 | 0.731311 | 4956.54 |\n", - "| M5 | uptrend | 975.39 | 6.6339 | 0.970599 | 4956.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.82)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244690.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:30:41,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:30:51,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:01,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:11,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:21,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:26 CET)\" (scheduled at 2026-01-23 03:31:26.633942+01:00)\n", - "2026-01-23 03:31:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:26 CET)\" executed successfully\n", - "2026-01-23 03:31:31,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:32 CET)\" (scheduled at 2026-01-23 03:31:32.132962+01:00)\n", - "2026-01-23 03:31:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:32 CET)\" executed successfully\n", - "2026-01-23 03:31:34,200 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:34 CET)\" (scheduled at 2026-01-23 03:31:34.010875+01:00)\n", - "2026-01-23 03:31:34,393 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94686 | 4956.06 |\n", - "| H4 | uptrend | 483.33 | 42.2877 | 3.06587 | 4956.06 |\n", - "| H1 | uptrend | 651.56 | 23.6053 | 2.30703 | 4956.06 |\n", - "| M30 | uptrend | 625.84 | 16.1244 | 1.51369 | 4956.06 |\n", - "| M15 | uptrend | 430.84 | 11.3142 | 0.731198 | 4956.06 |\n", - "| M5 | uptrend | 967.67 | 6.686 | 0.970486 | 4956.06 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243940.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:31:41,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:31:51,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:01,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:11,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:21,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:26,679 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:26 CET)\" (scheduled at 2026-01-23 03:32:26.633942+01:00)\n", - "2026-01-23 03:32:26,679 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:26 CET)\" executed successfully\n", - "2026-01-23 03:32:31,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:32 CET)\" (scheduled at 2026-01-23 03:32:32.132962+01:00)\n", - "2026-01-23 03:32:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:32 CET)\" executed successfully\n", - "2026-01-23 03:32:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:34 CET)\" (scheduled at 2026-01-23 03:32:34.010875+01:00)\n", - "2026-01-23 03:32:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94698 | 4956.57 |\n", - "| H4 | uptrend | 483.35 | 42.2877 | 3.06598 | 4956.57 |\n", - "| H1 | uptrend | 651.59 | 23.6053 | 2.30715 | 4956.57 |\n", - "| M30 | uptrend | 625.89 | 16.1244 | 1.51381 | 4956.57 |\n", - "| M15 | uptrend | 430.91 | 11.3142 | 0.731318 | 4956.57 |\n", - "| M5 | uptrend | 967.79 | 6.686 | 0.970606 | 4956.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243958.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:32:41,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:32:51,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:01,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:11,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:21,739 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:26 CET)\" (scheduled at 2026-01-23 03:33:26.633942+01:00)\n", - "2026-01-23 03:33:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:26 CET)\" executed successfully\n", - "2026-01-23 03:33:31,772 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:32 CET)\" (scheduled at 2026-01-23 03:33:32.132962+01:00)\n", - "2026-01-23 03:33:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:32 CET)\" executed successfully\n", - "2026-01-23 03:33:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:34 CET)\" (scheduled at 2026-01-23 03:33:34.010875+01:00)\n", - "2026-01-23 03:33:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94663 | 4955.09 |\n", - "| H4 | uptrend | 483.3 | 42.2877 | 3.06563 | 4955.09 |\n", - "| H1 | uptrend | 651.49 | 23.6053 | 2.3068 | 4955.09 |\n", - "| M30 | uptrend | 625.74 | 16.1244 | 1.51346 | 4955.09 |\n", - "| M15 | uptrend | 430.71 | 11.3142 | 0.730968 | 4955.09 |\n", - "| M5 | uptrend | 967.45 | 6.686 | 0.970257 | 4955.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.57)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243906.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:33:41,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:33:51,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:01,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:11,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:21,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:26 CET)\" (scheduled at 2026-01-23 03:34:26.633942+01:00)\n", - "2026-01-23 03:34:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:26 CET)\" executed successfully\n", - "2026-01-23 03:34:31,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:32 CET)\" (scheduled at 2026-01-23 03:34:32.132962+01:00)\n", - "2026-01-23 03:34:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:32 CET)\" executed successfully\n", - "2026-01-23 03:34:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:34 CET)\" (scheduled at 2026-01-23 03:34:34.010875+01:00)\n", - "2026-01-23 03:34:34,156 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94668 | 4955.29 |\n", - "| H4 | uptrend | 483.31 | 42.2877 | 3.06568 | 4955.29 |\n", - "| H1 | uptrend | 651.51 | 23.6053 | 2.30685 | 4955.29 |\n", - "| M30 | uptrend | 625.76 | 16.1244 | 1.51351 | 4955.29 |\n", - "| M15 | uptrend | 430.74 | 11.3142 | 0.731016 | 4955.29 |\n", - "| M5 | uptrend | 967.49 | 6.686 | 0.970304 | 4955.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243913.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:34:41,991 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:34:52,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:02,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:12,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:22,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:26 CET)\" (scheduled at 2026-01-23 03:35:26.633942+01:00)\n", - "2026-01-23 03:35:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:26 CET)\" executed successfully\n", - "2026-01-23 03:35:32,121 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:32,167 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:32 CET)\" (scheduled at 2026-01-23 03:35:32.132962+01:00)\n", - "2026-01-23 03:35:32,169 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:32 CET)\" executed successfully\n", - "2026-01-23 03:35:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:34 CET)\" (scheduled at 2026-01-23 03:35:34.010875+01:00)\n", - "2026-01-23 03:35:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94657 | 4954.83 |\n", - "| H4 | uptrend | 483.29 | 42.2877 | 3.06557 | 4954.83 |\n", - "| H1 | uptrend | 651.48 | 23.6053 | 2.30674 | 4954.83 |\n", - "| M30 | uptrend | 625.72 | 16.1244 | 1.5134 | 4954.83 |\n", - "| M15 | uptrend | 430.67 | 11.3142 | 0.730907 | 4954.83 |\n", - "| M5 | uptrend | 1026.42 | 6.2485 | 0.962029 | 4954.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.57)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246258.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:35:42,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:35:52,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:02,191 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:12,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:22,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:26 CET)\" (scheduled at 2026-01-23 03:36:26.633942+01:00)\n", - "2026-01-23 03:36:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:26 CET)\" executed successfully\n", - "2026-01-23 03:36:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:32 CET)\" (scheduled at 2026-01-23 03:36:32.132962+01:00)\n", - "2026-01-23 03:36:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:32 CET)\" executed successfully\n", - "2026-01-23 03:36:32,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:34 CET)\" (scheduled at 2026-01-23 03:36:34.010875+01:00)\n", - "2026-01-23 03:36:34,200 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94678 | 4955.72 |\n", - "| H4 | uptrend | 483.32 | 42.2877 | 3.06578 | 4955.72 |\n", - "| H1 | uptrend | 651.53 | 23.6053 | 2.30695 | 4955.72 |\n", - "| M30 | uptrend | 625.8 | 16.1244 | 1.51361 | 4955.72 |\n", - "| M15 | uptrend | 430.8 | 11.3142 | 0.731117 | 4955.72 |\n", - "| M5 | uptrend | 1019.65 | 6.2913 | 0.962239 | 4955.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246010.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:36:42,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:36:52,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:02,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:12,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:22,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:26 CET)\" (scheduled at 2026-01-23 03:37:26.633942+01:00)\n", - "2026-01-23 03:37:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:26 CET)\" executed successfully\n", - "2026-01-23 03:37:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:32 CET)\" (scheduled at 2026-01-23 03:37:32.132962+01:00)\n", - "2026-01-23 03:37:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:32 CET)\" executed successfully\n", - "2026-01-23 03:37:32,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:34,051 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:34 CET)\" (scheduled at 2026-01-23 03:37:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94643 | 4954.26 |\n", - "| H4 | uptrend | 483.27 | 42.2877 | 3.06544 | 4954.26 |\n", - "| H1 | uptrend | 651.44 | 23.6053 | 2.30661 | 4954.28 |\n", - "| M30 | uptrend | 625.66 | 16.1244 | 1.51327 | 4954.28 |\n", - "| M15 | uptrend | 430.59 | 11.3142 | 0.730775 | 4954.27 |\n", - "| M5 | uptrend | 1007.06 | 6.3677 | 0.961903 | 4954.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245470.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:37:34,267 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:37:42,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:37:52,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:02,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:12,512 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:22,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:26,725 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:26 CET)\" (scheduled at 2026-01-23 03:38:26.633942+01:00)\n", - "2026-01-23 03:38:26,725 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:26 CET)\" executed successfully\n", - "2026-01-23 03:38:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:32 CET)\" (scheduled at 2026-01-23 03:38:32.132962+01:00)\n", - "2026-01-23 03:38:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:32 CET)\" executed successfully\n", - "2026-01-23 03:38:32,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:34 CET)\" (scheduled at 2026-01-23 03:38:34.010875+01:00)\n", - "2026-01-23 03:38:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94701 | 4956.7 |\n", - "| H4 | uptrend | 483.36 | 42.2877 | 3.06602 | 4956.7 |\n", - "| H1 | uptrend | 651.6 | 23.6053 | 2.30718 | 4956.7 |\n", - "| M30 | uptrend | 625.9 | 16.1244 | 1.51384 | 4956.7 |\n", - "| M15 | uptrend | 430.93 | 11.3142 | 0.731349 | 4956.7 |\n", - "| M5 | uptrend | 1005.06 | 6.3842 | 0.962471 | 4956.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.62)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245451.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:38:42,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:38:52,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:02,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:12,675 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:22,691 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:26 CET)\" (scheduled at 2026-01-23 03:39:26.633942+01:00)\n", - "2026-01-23 03:39:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:26 CET)\" executed successfully\n", - "2026-01-23 03:39:32,159 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:32 CET)\" (scheduled at 2026-01-23 03:39:32.132962+01:00)\n", - "2026-01-23 03:39:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:32 CET)\" executed successfully\n", - "2026-01-23 03:39:32,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:34,041 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:34 CET)\" (scheduled at 2026-01-23 03:39:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:39:34,641 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94687 | 4956.13 |\n", - "| H4 | uptrend | 483.34 | 42.2877 | 3.06588 | 4956.13 |\n", - "| H1 | uptrend | 651.56 | 23.6053 | 2.30705 | 4956.13 |\n", - "| M30 | uptrend | 625.85 | 16.1244 | 1.51373 | 4956.23 |\n", - "| M15 | uptrend | 430.87 | 11.3142 | 0.731238 | 4956.23 |\n", - "| M5 | uptrend | 1002.36 | 6.4006 | 0.962359 | 4956.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245331.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:39:35,442 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 04:39:34 CET)\" (scheduled at 2026-01-23 03:39:34.806528+01:00)\n", - "2026-01-23 03:39:35,468 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 04:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[03:39:35] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:39:42,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:39:52,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:02,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:12,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:22,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:26,678 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:26 CET)\" (scheduled at 2026-01-23 03:40:26.633942+01:00)\n", - "2026-01-23 03:40:26,678 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:26 CET)\" executed successfully\n", - "2026-01-23 03:40:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:32 CET)\" (scheduled at 2026-01-23 03:40:32.132962+01:00)\n", - "2026-01-23 03:40:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:32 CET)\" executed successfully\n", - "2026-01-23 03:40:32,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:34 CET)\" (scheduled at 2026-01-23 03:40:34.010875+01:00)\n", - "2026-01-23 03:40:34,186 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.9468 | 4955.83 |\n", - "| H4 | uptrend | 483.33 | 42.2877 | 3.06581 | 4955.83 |\n", - "| H1 | uptrend | 651.54 | 23.6053 | 2.30697 | 4955.83 |\n", - "| M30 | uptrend | 625.81 | 16.1244 | 1.51364 | 4955.83 |\n", - "| M15 | uptrend | 430.81 | 11.3142 | 0.731143 | 4955.83 |\n", - "| M5 | uptrend | 1053.89 | 6.0456 | 0.955704 | 4955.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 247383.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:40:42,896 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:40:52,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:02,938 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:12,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:22,987 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:27,125 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:26 CET)\" (scheduled at 2026-01-23 03:41:26.633942+01:00)\n", - "2026-01-23 03:41:27,125 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:26 CET)\" executed successfully\n", - "2026-01-23 03:41:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:32 CET)\" (scheduled at 2026-01-23 03:41:32.132962+01:00)\n", - "2026-01-23 03:41:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:32 CET)\" executed successfully\n", - "2026-01-23 03:41:33,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:34 CET)\" (scheduled at 2026-01-23 03:41:34.010875+01:00)\n", - "2026-01-23 03:41:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94665 | 4955.16 |\n", - "| H4 | uptrend | 483.3 | 42.2877 | 3.06565 | 4955.16 |\n", - "| H1 | uptrend | 651.5 | 23.6053 | 2.30682 | 4955.16 |\n", - "| M30 | uptrend | 625.75 | 16.1244 | 1.51348 | 4955.16 |\n", - "| M15 | uptrend | 430.72 | 11.3142 | 0.730985 | 4955.16 |\n", - "| M5 | uptrend | 1033.57 | 6.1634 | 0.955546 | 4955.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.58)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246553.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:41:43,035 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:41:53,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:03,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:13,107 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:23,142 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:26 CET)\" (scheduled at 2026-01-23 03:42:26.633942+01:00)\n", - "2026-01-23 03:42:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:26 CET)\" executed successfully\n", - "2026-01-23 03:42:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:32 CET)\" (scheduled at 2026-01-23 03:42:32.132962+01:00)\n", - "2026-01-23 03:42:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:32 CET)\" executed successfully\n", - "2026-01-23 03:42:33,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:34 CET)\" (scheduled at 2026-01-23 03:42:34.010875+01:00)\n", - "2026-01-23 03:42:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94659 | 4954.93 |\n", - "| H4 | uptrend | 483.29 | 42.2877 | 3.0656 | 4954.93 |\n", - "| H1 | uptrend | 651.48 | 23.6053 | 2.30676 | 4954.93 |\n", - "| M30 | uptrend | 625.73 | 16.1244 | 1.51342 | 4954.93 |\n", - "| M15 | uptrend | 430.69 | 11.3142 | 0.730931 | 4954.93 |\n", - "| M5 | uptrend | 1033.27 | 6.1648 | 0.955491 | 4954.93 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.57)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246535.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:42:43,195 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:42:53,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:03,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:13,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:23,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:26 CET)\" (scheduled at 2026-01-23 03:43:26.633942+01:00)\n", - "2026-01-23 03:43:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:26 CET)\" executed successfully\n", - "2026-01-23 03:43:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:32 CET)\" (scheduled at 2026-01-23 03:43:32.132962+01:00)\n", - "2026-01-23 03:43:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:32 CET)\" executed successfully\n", - "2026-01-23 03:43:33,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:34 CET)\" (scheduled at 2026-01-23 03:43:34.010875+01:00)\n", - "2026-01-23 03:43:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94685 | 4956.05 |\n", - "| H4 | uptrend | 483.33 | 42.2877 | 3.06585 | 4955.99 |\n", - "| H1 | uptrend | 651.55 | 23.6053 | 2.30701 | 4955.99 |\n", - "| M30 | uptrend | 625.83 | 16.1244 | 1.51368 | 4956.01 |\n", - "| M15 | uptrend | 430.84 | 11.3142 | 0.731186 | 4956.01 |\n", - "| M5 | uptrend | 1033.54 | 6.1648 | 0.955747 | 4956.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246573.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:43:43,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:43:53,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:03,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:13,414 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:23,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:26,725 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:26 CET)\" (scheduled at 2026-01-23 03:44:26.633942+01:00)\n", - "2026-01-23 03:44:26,725 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:26 CET)\" executed successfully\n", - "2026-01-23 03:44:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:32 CET)\" (scheduled at 2026-01-23 03:44:32.132962+01:00)\n", - "2026-01-23 03:44:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:32 CET)\" executed successfully\n", - "2026-01-23 03:44:33,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:34 CET)\" (scheduled at 2026-01-23 03:44:34.010875+01:00)\n", - "2026-01-23 03:44:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94717 | 4957.39 |\n", - "| H4 | uptrend | 483.29 | 42.2962 | 3.06618 | 4957.39 |\n", - "| H1 | uptrend | 651.41 | 23.6138 | 2.30734 | 4957.39 |\n", - "| M30 | uptrend | 625.63 | 16.133 | 1.514 | 4957.39 |\n", - "| M15 | uptrend | 430.7 | 11.3228 | 0.731512 | 4957.39 |\n", - "| M5 | uptrend | 1030.91 | 6.1827 | 0.956073 | 4957.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246429.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:44:43,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:44:53,504 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:03,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:13,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:23,591 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:26 CET)\" (scheduled at 2026-01-23 03:45:26.633942+01:00)\n", - "2026-01-23 03:45:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:26 CET)\" executed successfully\n", - "2026-01-23 03:45:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:32 CET)\" (scheduled at 2026-01-23 03:45:32.132962+01:00)\n", - "2026-01-23 03:45:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:32 CET)\" executed successfully\n", - "2026-01-23 03:45:33,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:34,665 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:34 CET)\" (scheduled at 2026-01-23 03:45:34.010875+01:00)\n", - "2026-01-23 03:45:34,820 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94733 | 4958.07 |\n", - "| H4 | uptrend | 482.86 | 42.3362 | 3.06634 | 4958.07 |\n", - "| H1 | uptrend | 650.35 | 23.6538 | 2.3075 | 4958.07 |\n", - "| M30 | uptrend | 624.15 | 16.173 | 1.51416 | 4958.07 |\n", - "| M15 | uptrend | 479.83 | 10.6031 | 0.76316 | 4958.07 |\n", - "| M5 | uptrend | 1086.12 | 5.8302 | 0.949847 | 4958.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 251345.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:45:43,651 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:45:53,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:03,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:13,731 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:23,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:26 CET)\" (scheduled at 2026-01-23 03:46:26.633942+01:00)\n", - "2026-01-23 03:46:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:26 CET)\" executed successfully\n", - "2026-01-23 03:46:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:32 CET)\" (scheduled at 2026-01-23 03:46:32.132962+01:00)\n", - "2026-01-23 03:46:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:32 CET)\" executed successfully\n", - "2026-01-23 03:46:33,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:34 CET)\" (scheduled at 2026-01-23 03:46:34.010875+01:00)\n", - "2026-01-23 03:46:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94758 | 4959.13 |\n", - "| H4 | uptrend | 482.03 | 42.4119 | 3.06659 | 4959.12 |\n", - "| H1 | uptrend | 648.35 | 23.7296 | 2.30775 | 4959.12 |\n", - "| M30 | uptrend | 621.35 | 16.2487 | 1.51441 | 4959.12 |\n", - "| M15 | uptrend | 476.46 | 10.6817 | 0.76342 | 4959.17 |\n", - "| M5 | uptrend | 1071.97 | 5.9088 | 0.950107 | 4959.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 641.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 250120.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:46:43,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:46:53,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:03,847 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:13,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:23,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:26,762 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:26 CET)\" (scheduled at 2026-01-23 03:47:26.633942+01:00)\n", - "2026-01-23 03:47:26,762 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:26 CET)\" executed successfully\n", - "2026-01-23 03:47:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:32 CET)\" (scheduled at 2026-01-23 03:47:32.132962+01:00)\n", - "2026-01-23 03:47:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:32 CET)\" executed successfully\n", - "2026-01-23 03:47:33,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:34,039 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:34 CET)\" (scheduled at 2026-01-23 03:47:34.010875+01:00)\n", - "2026-01-23 03:47:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.19 | 88.7586 | 9.94797 | 4960.76 |\n", - "| H4 | uptrend | 480.7 | 42.5348 | 3.06697 | 4960.76 |\n", - "| H1 | uptrend | 645.12 | 23.8524 | 2.30814 | 4960.76 |\n", - "| M30 | uptrend | 616.84 | 16.3716 | 1.5148 | 4960.77 |\n", - "| M15 | uptrend | 471.41 | 10.8017 | 0.763798 | 4960.77 |\n", - "| M5 | uptrend | 1051.05 | 6.0288 | 0.950485 | 4960.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.60)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248245.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:47:43,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:47:53,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:03,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:14,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:24,038 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:26,702 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:26 CET)\" (scheduled at 2026-01-23 03:48:26.633942+01:00)\n", - "2026-01-23 03:48:26,702 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:26 CET)\" executed successfully\n", - "2026-01-23 03:48:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:32 CET)\" (scheduled at 2026-01-23 03:48:32.132962+01:00)\n", - "2026-01-23 03:48:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:32 CET)\" executed successfully\n", - "2026-01-23 03:48:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:34 CET)\" (scheduled at 2026-01-23 03:48:34.010875+01:00)\n", - "2026-01-23 03:48:34,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94815 | 4961.52 |\n", - "| H4 | uptrend | 479.83 | 42.6141 | 3.06716 | 4961.52 |\n", - "| H1 | uptrend | 643.03 | 23.9317 | 2.30832 | 4961.52 |\n", - "| M30 | uptrend | 613.94 | 16.4509 | 1.51498 | 4961.52 |\n", - "| M15 | uptrend | 468.08 | 10.881 | 0.763975 | 4961.52 |\n", - "| M5 | uptrend | 1037.6 | 6.1081 | 0.950662 | 4961.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 247032.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:48:44,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:48:54,210 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:04,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:14,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:24,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:26 CET)\" (scheduled at 2026-01-23 03:49:26.633942+01:00)\n", - "2026-01-23 03:49:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:26 CET)\" executed successfully\n", - "2026-01-23 03:49:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:32 CET)\" (scheduled at 2026-01-23 03:49:32.132962+01:00)\n", - "2026-01-23 03:49:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:32 CET)\" executed successfully\n", - "2026-01-23 03:49:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:34 CET)\" (scheduled at 2026-01-23 03:49:34.010875+01:00)\n", - "2026-01-23 03:49:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94826 | 4962.02 |\n", - "| H4 | uptrend | 479.7 | 42.6277 | 3.06727 | 4962.02 |\n", - "| H1 | uptrend | 642.7 | 23.9453 | 2.30844 | 4962.02 |\n", - "| M30 | uptrend | 613.48 | 16.4644 | 1.5151 | 4962.02 |\n", - "| M15 | uptrend | 467.57 | 10.8946 | 0.764093 | 4962.02 |\n", - "| M5 | uptrend | 1035.43 | 6.1216 | 0.95078 | 4962.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246840.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:49:34,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:44,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:49:54,362 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:04,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:14,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:24,448 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:27,150 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:26 CET)\" (scheduled at 2026-01-23 03:50:26.633942+01:00)\n", - "2026-01-23 03:50:27,150 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:26 CET)\" executed successfully\n", - "2026-01-23 03:50:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:32 CET)\" (scheduled at 2026-01-23 03:50:32.132962+01:00)\n", - "2026-01-23 03:50:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:32 CET)\" executed successfully\n", - "2026-01-23 03:50:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:34 CET)\" (scheduled at 2026-01-23 03:50:34.010875+01:00)\n", - "2026-01-23 03:50:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.19 | 88.7586 | 9.94798 | 4960.83 |\n", - "| H4 | uptrend | 479.66 | 42.6277 | 3.06699 | 4960.83 |\n", - "| H1 | uptrend | 642.62 | 23.9453 | 2.30816 | 4960.83 |\n", - "| M30 | uptrend | 613.37 | 16.4644 | 1.51482 | 4960.83 |\n", - "| M15 | uptrend | 467.4 | 10.8946 | 0.763812 | 4960.83 |\n", - "| M5 | uptrend | 1097.37 | 5.7444 | 0.94556 | 4960.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 249288.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:50:34,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:44,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:50:54,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:04,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:14,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:24,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:26,696 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:26 CET)\" (scheduled at 2026-01-23 03:51:26.633942+01:00)\n", - "2026-01-23 03:51:26,696 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:26 CET)\" executed successfully\n", - "2026-01-23 03:51:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:32 CET)\" (scheduled at 2026-01-23 03:51:32.132962+01:00)\n", - "2026-01-23 03:51:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:32 CET)\" executed successfully\n", - "2026-01-23 03:51:34,028 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:34 CET)\" (scheduled at 2026-01-23 03:51:34.010875+01:00)\n", - "2026-01-23 03:51:34,184 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94821 | 4961.79 |\n", - "| H4 | uptrend | 479.69 | 42.6277 | 3.06722 | 4961.79 |\n", - "| H1 | uptrend | 642.68 | 23.9453 | 2.30838 | 4961.79 |\n", - "| M30 | uptrend | 613.46 | 16.4644 | 1.51504 | 4961.79 |\n", - "| M15 | uptrend | 467.53 | 10.8946 | 0.764039 | 4961.79 |\n", - "| M5 | uptrend | 1087.09 | 5.8001 | 0.945787 | 4961.79 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248901.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:51:34,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:44,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:51:54,733 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:04,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:14,788 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:24,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:26 CET)\" (scheduled at 2026-01-23 03:52:26.633942+01:00)\n", - "2026-01-23 03:52:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:26 CET)\" executed successfully\n", - "2026-01-23 03:52:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:32 CET)\" (scheduled at 2026-01-23 03:52:32.132962+01:00)\n", - "2026-01-23 03:52:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:32 CET)\" executed successfully\n", - "2026-01-23 03:52:34,086 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:34 CET)\" (scheduled at 2026-01-23 03:52:34.010875+01:00)\n", - "2026-01-23 03:52:34,247 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.2 | 88.7586 | 9.94811 | 4961.38 |\n", - "| H4 | uptrend | 479.68 | 42.6277 | 3.06712 | 4961.38 |\n", - "| H1 | uptrend | 642.66 | 23.9453 | 2.30829 | 4961.38 |\n", - "| M30 | uptrend | 613.42 | 16.4644 | 1.51495 | 4961.38 |\n", - "| M15 | uptrend | 467.48 | 10.8946 | 0.763942 | 4961.38 |\n", - "| M5 | uptrend | 1086.58 | 5.8022 | 0.94569 | 4961.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248870.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:52:34,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:44,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:52:54,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:04,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:14,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:24,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:26 CET)\" (scheduled at 2026-01-23 03:53:26.633942+01:00)\n", - "2026-01-23 03:53:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:26 CET)\" executed successfully\n", - "2026-01-23 03:53:32,156 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:32 CET)\" (scheduled at 2026-01-23 03:53:32.132962+01:00)\n", - "2026-01-23 03:53:32,156 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:32 CET)\" executed successfully\n", - "2026-01-23 03:53:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:34 CET)\" (scheduled at 2026-01-23 03:53:34.010875+01:00)\n", - "2026-01-23 03:53:34,202 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.9477 | 4959.65 |\n", - "| H4 | uptrend | 479.61 | 42.6277 | 3.06671 | 4959.66 |\n", - "| H1 | uptrend | 642.54 | 23.9453 | 2.30788 | 4959.66 |\n", - "| M30 | uptrend | 613.26 | 16.4644 | 1.51454 | 4959.66 |\n", - "| M15 | uptrend | 467.24 | 10.8946 | 0.76355 | 4959.72 |\n", - "| M5 | uptrend | 1063.35 | 5.9265 | 0.945298 | 4959.72 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 247898.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:53:34,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:44,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:53:55,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:05,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:15,053 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:25,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:26,726 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:26 CET)\" (scheduled at 2026-01-23 03:54:26.633942+01:00)\n", - "2026-01-23 03:54:26,726 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:26 CET)\" executed successfully\n", - "2026-01-23 03:54:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:32 CET)\" (scheduled at 2026-01-23 03:54:32.132962+01:00)\n", - "2026-01-23 03:54:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:32 CET)\" executed successfully\n", - "2026-01-23 03:54:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:34 CET)\" (scheduled at 2026-01-23 03:54:34.010875+01:00)\n", - "2026-01-23 03:54:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.2 | 88.7586 | 9.94802 | 4960.99 |\n", - "| H4 | uptrend | 479.66 | 42.6277 | 3.06703 | 4960.99 |\n", - "| H1 | uptrend | 642.63 | 23.9453 | 2.30819 | 4960.99 |\n", - "| M30 | uptrend | 613.38 | 16.4644 | 1.51486 | 4960.99 |\n", - "| M15 | uptrend | 467.42 | 10.8946 | 0.76385 | 4960.99 |\n", - "| M5 | uptrend | 1063.69 | 5.9265 | 0.945598 | 4960.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 247944.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:54:35,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:45,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:54:55,145 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:05,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:15,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:25,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:26,791 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:26 CET)\" (scheduled at 2026-01-23 03:55:26.633942+01:00)\n", - "2026-01-23 03:55:26,791 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:26 CET)\" executed successfully\n", - "2026-01-23 03:55:32,195 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:32 CET)\" (scheduled at 2026-01-23 03:55:32.132962+01:00)\n", - "2026-01-23 03:55:32,195 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:32 CET)\" executed successfully\n", - "2026-01-23 03:55:34,292 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:34 CET)\" (scheduled at 2026-01-23 03:55:34.010875+01:00)\n", - "2026-01-23 03:55:34,469 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94761 | 4959.23 |\n", - "| H4 | uptrend | 479.6 | 42.6277 | 3.06661 | 4959.23 |\n", - "| H1 | uptrend | 642.51 | 23.9453 | 2.30778 | 4959.23 |\n", - "| M30 | uptrend | 613.22 | 16.4644 | 1.51444 | 4959.23 |\n", - "| M15 | uptrend | 467.16 | 10.8946 | 0.763434 | 4959.23 |\n", - "| M5 | uptrend | 1116.44 | 5.6046 | 0.938582 | 4959.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 250009.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:55:35,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:45,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:55:55,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:05,315 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:15,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:25,351 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:26,786 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:26 CET)\" (scheduled at 2026-01-23 03:56:26.633942+01:00)\n", - "2026-01-23 03:56:26,786 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:26 CET)\" executed successfully\n", - "2026-01-23 03:56:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:32 CET)\" (scheduled at 2026-01-23 03:56:32.132962+01:00)\n", - "2026-01-23 03:56:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:32 CET)\" executed successfully\n", - "2026-01-23 03:56:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:34 CET)\" (scheduled at 2026-01-23 03:56:34.010875+01:00)\n", - "2026-01-23 03:56:34,148 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94774 | 4959.8 |\n", - "| H4 | uptrend | 479.62 | 42.6277 | 3.06675 | 4959.8 |\n", - "| H1 | uptrend | 642.55 | 23.9453 | 2.30791 | 4959.8 |\n", - "| M30 | uptrend | 613.27 | 16.4644 | 1.51457 | 4959.8 |\n", - "| M15 | uptrend | 467.25 | 10.8946 | 0.763569 | 4959.8 |\n", - "| M5 | uptrend | 1106.73 | 5.6546 | 0.938716 | 4959.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 249635.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:56:35,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:45,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:56:55,423 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:05,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:15,474 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:25,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:26,752 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:26 CET)\" (scheduled at 2026-01-23 03:57:26.633942+01:00)\n", - "2026-01-23 03:57:26,768 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:26 CET)\" executed successfully\n", - "2026-01-23 03:57:32,162 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:32 CET)\" (scheduled at 2026-01-23 03:57:32.132962+01:00)\n", - "2026-01-23 03:57:32,162 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:32 CET)\" executed successfully\n", - "2026-01-23 03:57:34,070 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:34 CET)\" (scheduled at 2026-01-23 03:57:34.010875+01:00)\n", - "2026-01-23 03:57:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94768 | 4959.53 |\n", - "| H4 | uptrend | 479.61 | 42.6277 | 3.06669 | 4959.53 |\n", - "| H1 | uptrend | 642.53 | 23.9453 | 2.30785 | 4959.53 |\n", - "| M30 | uptrend | 613.25 | 16.4644 | 1.51451 | 4959.54 |\n", - "| M15 | uptrend | 467.21 | 10.8946 | 0.763507 | 4959.54 |\n", - "| M5 | uptrend | 1106.65 | 5.6546 | 0.938655 | 4959.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 249626.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:57:35,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:45,545 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:57:55,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:05,585 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:15,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:25,639 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:26,660 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:26 CET)\" (scheduled at 2026-01-23 03:58:26.633942+01:00)\n", - "2026-01-23 03:58:26,660 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:26 CET)\" executed successfully\n", - "2026-01-23 03:58:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:32 CET)\" (scheduled at 2026-01-23 03:58:32.132962+01:00)\n", - "2026-01-23 03:58:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:32 CET)\" executed successfully\n", - "2026-01-23 03:58:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:34 CET)\" (scheduled at 2026-01-23 03:58:34.010875+01:00)\n", - "2026-01-23 03:58:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 03:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.9475 | 4958.78 |\n", - "| H4 | uptrend | 479.58 | 42.6277 | 3.06651 | 4958.78 |\n", - "| H1 | uptrend | 642.49 | 23.9453 | 2.30767 | 4958.78 |\n", - "| M30 | uptrend | 613.17 | 16.4644 | 1.51433 | 4958.78 |\n", - "| M15 | uptrend | 467.1 | 10.8946 | 0.763328 | 4958.78 |\n", - "| M5 | uptrend | 1102.82 | 5.6732 | 0.938475 | 4958.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 249453.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:58:35,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:45,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:58:55,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:05,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:15,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:25,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:26 CET)\" (scheduled at 2026-01-23 03:59:26.633942+01:00)\n", - "2026-01-23 03:59:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:26 CET)\" executed successfully\n", - "2026-01-23 03:59:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:32 CET)\" (scheduled at 2026-01-23 03:59:32.132962+01:00)\n", - "2026-01-23 03:59:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:32 CET)\" executed successfully\n", - "2026-01-23 03:59:34,130 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:34 CET)\" (scheduled at 2026-01-23 03:59:34.010875+01:00)\n", - "2026-01-23 03:59:34,300 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94693 | 4956.38 |\n", - "| H4 | uptrend | 479.49 | 42.6277 | 3.06594 | 4956.38 |\n", - "| H1 | uptrend | 642.33 | 23.9453 | 2.3071 | 4956.38 |\n", - "| M30 | uptrend | 612.94 | 16.4644 | 1.51377 | 4956.38 |\n", - "| M15 | uptrend | 465.05 | 10.9346 | 0.762761 | 4956.38 |\n", - "| M5 | uptrend | 1075.74 | 5.8125 | 0.937908 | 4956.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248207.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 03:59:35,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:45,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 03:59:55,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:00,079 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 04:30:00 CET)\" (scheduled at 2026-01-23 04:00:00+01:00)\n", - "2026-01-23 04:00:00,079 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 04:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 04:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 22.58 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:00:05,866 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:15,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:25,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:26,758 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:26 CET)\" (scheduled at 2026-01-23 04:00:26.633942+01:00)\n", - "2026-01-23 04:00:26,758 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:26 CET)\" executed successfully\n", - "2026-01-23 04:00:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:32 CET)\" (scheduled at 2026-01-23 04:00:32.132962+01:00)\n", - "2026-01-23 04:00:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:32 CET)\" executed successfully\n", - "2026-01-23 04:00:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:34 CET)\" (scheduled at 2026-01-23 04:00:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94693 | 4956.35 |\n", - "| H4 | uptrend | 479.49 | 42.6277 | 3.06593 | 4956.35 |\n", - "| H1 | uptrend | 700.23 | 22.3599 | 2.34855 | 4956.31 |\n", - "| M30 | uptrend | 656.82 | 15.4134 | 1.51858 | 4956.31 |\n", - "| M15 | uptrend | 512.08 | 10.3356 | 0.793904 | 4956.31 |\n", - "| M5 | uptrend | 1108.76 | 5.5793 | 0.927923 | 4956.31 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261650.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:00:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:00:35,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:45,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:00:55,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:05,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:16,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:26,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:26 CET)\" (scheduled at 2026-01-23 04:01:26.633942+01:00)\n", - "2026-01-23 04:01:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:26 CET)\" executed successfully\n", - "2026-01-23 04:01:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:32 CET)\" (scheduled at 2026-01-23 04:01:32.132962+01:00)\n", - "2026-01-23 04:01:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:32 CET)\" executed successfully\n", - "2026-01-23 04:01:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:34 CET)\" (scheduled at 2026-01-23 04:01:34.010875+01:00)\n", - "2026-01-23 04:01:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94751 | 4958.83 |\n", - "| H4 | uptrend | 479.58 | 42.6277 | 3.06652 | 4958.83 |\n", - "| H1 | uptrend | 696.29 | 22.4921 | 2.34915 | 4958.83 |\n", - "| M30 | uptrend | 651.49 | 15.5456 | 1.51918 | 4958.83 |\n", - "| M15 | uptrend | 506 | 10.4677 | 0.794495 | 4958.81 |\n", - "| M5 | uptrend | 1083.8 | 5.7115 | 0.928514 | 4958.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 259472.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:01:36,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:46,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:01:56,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:06,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:16,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:26,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:26 CET)\" (scheduled at 2026-01-23 04:02:26.633942+01:00)\n", - "2026-01-23 04:02:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:26 CET)\" executed successfully\n", - "2026-01-23 04:02:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:32 CET)\" (scheduled at 2026-01-23 04:02:32.132962+01:00)\n", - "2026-01-23 04:02:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:32 CET)\" executed successfully\n", - "2026-01-23 04:02:34,100 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:34 CET)\" (scheduled at 2026-01-23 04:02:34.010875+01:00)\n", - "2026-01-23 04:02:34,257 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94745 | 4958.57 |\n", - "| H4 | uptrend | 479.57 | 42.6277 | 3.06646 | 4958.57 |\n", - "| H1 | uptrend | 696.05 | 22.4992 | 2.34908 | 4958.57 |\n", - "| M30 | uptrend | 651.17 | 15.5527 | 1.51911 | 4958.57 |\n", - "| M15 | uptrend | 505.62 | 10.4749 | 0.794438 | 4958.57 |\n", - "| M5 | uptrend | 1082.38 | 5.7186 | 0.928457 | 4958.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 259342.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:02:36,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:46,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:02:56,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:06,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:16,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:26,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:26 CET)\" (scheduled at 2026-01-23 04:03:26.633942+01:00)\n", - "2026-01-23 04:03:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:26 CET)\" executed successfully\n", - "2026-01-23 04:03:32,156 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:32 CET)\" (scheduled at 2026-01-23 04:03:32.132962+01:00)\n", - "2026-01-23 04:03:32,156 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:32 CET)\" executed successfully\n", - "2026-01-23 04:03:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:34 CET)\" (scheduled at 2026-01-23 04:03:34.010875+01:00)\n", - "2026-01-23 04:03:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94713 | 4957.2 |\n", - "| H4 | uptrend | 479.52 | 42.6277 | 3.06613 | 4957.2 |\n", - "| H1 | uptrend | 695.95 | 22.4992 | 2.34876 | 4957.2 |\n", - "| M30 | uptrend | 651.03 | 15.5527 | 1.51879 | 4957.2 |\n", - "| M15 | uptrend | 505.41 | 10.4749 | 0.794115 | 4957.2 |\n", - "| M5 | uptrend | 1082 | 5.7186 | 0.928136 | 4957.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 259291.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:03:36,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:46,366 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:03:56,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:06,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:16,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:26,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:26,843 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:26 CET)\" (scheduled at 2026-01-23 04:04:26.633942+01:00)\n", - "2026-01-23 04:04:26,844 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:26 CET)\" executed successfully\n", - "2026-01-23 04:04:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:32 CET)\" (scheduled at 2026-01-23 04:04:32.132962+01:00)\n", - "2026-01-23 04:04:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:32 CET)\" executed successfully\n", - "2026-01-23 04:04:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:34 CET)\" (scheduled at 2026-01-23 04:04:34.010875+01:00)\n", - "2026-01-23 04:04:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94655 | 4954.77 |\n", - "| H4 | uptrend | 479.43 | 42.6277 | 3.06556 | 4954.78 |\n", - "| H1 | uptrend | 694.7 | 22.5342 | 2.34819 | 4954.78 |\n", - "| M30 | uptrend | 649.32 | 15.5877 | 1.51822 | 4954.78 |\n", - "| M15 | uptrend | 503.36 | 10.5099 | 0.793543 | 4954.78 |\n", - "| M5 | uptrend | 1074.76 | 5.7536 | 0.927562 | 4954.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 258610.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:04:36,474 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:46,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:04:56,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:06,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:16,567 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:26,595 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:27,030 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:26 CET)\" (scheduled at 2026-01-23 04:05:26.633942+01:00)\n", - "2026-01-23 04:05:27,032 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:26 CET)\" executed successfully\n", - "2026-01-23 04:05:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:32 CET)\" (scheduled at 2026-01-23 04:05:32.132962+01:00)\n", - "2026-01-23 04:05:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:32 CET)\" executed successfully\n", - "2026-01-23 04:05:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:34 CET)\" (scheduled at 2026-01-23 04:05:34.010875+01:00)\n", - "2026-01-23 04:05:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.9469 | 4956.24 |\n", - "| H4 | uptrend | 479.49 | 42.6277 | 3.06591 | 4956.24 |\n", - "| H1 | uptrend | 694.67 | 22.5385 | 2.34853 | 4956.24 |\n", - "| M30 | uptrend | 649.29 | 15.592 | 1.51856 | 4956.24 |\n", - "| M15 | uptrend | 503.38 | 10.5142 | 0.793888 | 4956.24 |\n", - "| M5 | uptrend | 1114.47 | 5.4838 | 0.916726 | 4956.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260198.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:05:36,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:46,640 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:05:56,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:06,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:16,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:26 CET)\" (scheduled at 2026-01-23 04:06:26.633942+01:00)\n", - "2026-01-23 04:06:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:26 CET)\" executed successfully\n", - "2026-01-23 04:06:26,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:32 CET)\" (scheduled at 2026-01-23 04:06:32.132962+01:00)\n", - "2026-01-23 04:06:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:32 CET)\" executed successfully\n", - "2026-01-23 04:06:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:34 CET)\" (scheduled at 2026-01-23 04:06:34.010875+01:00)\n", - "2026-01-23 04:06:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94727 | 4957.83 |\n", - "| H4 | uptrend | 479.55 | 42.6277 | 3.06628 | 4957.83 |\n", - "| H1 | uptrend | 694.79 | 22.5385 | 2.34891 | 4957.86 |\n", - "| M30 | uptrend | 649.46 | 15.592 | 1.51895 | 4957.86 |\n", - "| M15 | uptrend | 503.62 | 10.5142 | 0.794271 | 4957.86 |\n", - "| M5 | uptrend | 1111.9 | 5.4988 | 0.917109 | 4957.86 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.10)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260138.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:06:36,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:46,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:06:56,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:06,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:16,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:26 CET)\" (scheduled at 2026-01-23 04:07:26.633942+01:00)\n", - "2026-01-23 04:07:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:26 CET)\" executed successfully\n", - "2026-01-23 04:07:26,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:32 CET)\" (scheduled at 2026-01-23 04:07:32.132962+01:00)\n", - "2026-01-23 04:07:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:32 CET)\" executed successfully\n", - "2026-01-23 04:07:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:34 CET)\" (scheduled at 2026-01-23 04:07:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94695 | 4956.47 |\n", - "| H4 | uptrend | 479.49 | 42.6277 | 3.06596 | 4956.47 |\n", - "| H1 | uptrend | 694.69 | 22.5385 | 2.34859 | 4956.47 |\n", - "| M30 | uptrend | 649.32 | 15.592 | 1.51862 | 4956.47 |\n", - "| M15 | uptrend | 503.41 | 10.5142 | 0.793942 | 4956.47 |\n", - "| M5 | uptrend | 1108.47 | 5.5138 | 0.91678 | 4956.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 259964.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:07:34,260 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:07:36,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:47,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:07:57,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:07,051 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:17,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:26 CET)\" (scheduled at 2026-01-23 04:08:26.633942+01:00)\n", - "2026-01-23 04:08:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:26 CET)\" executed successfully\n", - "2026-01-23 04:08:27,108 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:32 CET)\" (scheduled at 2026-01-23 04:08:32.132962+01:00)\n", - "2026-01-23 04:08:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:32 CET)\" executed successfully\n", - "2026-01-23 04:08:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:34 CET)\" (scheduled at 2026-01-23 04:08:34.010875+01:00)\n", - "2026-01-23 04:08:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94731 | 4957.98 |\n", - "| H4 | uptrend | 479.55 | 42.6277 | 3.06632 | 4957.98 |\n", - "| H1 | uptrend | 694.79 | 22.5385 | 2.34894 | 4957.95 |\n", - "| M30 | uptrend | 649.47 | 15.592 | 1.51897 | 4957.95 |\n", - "| M15 | uptrend | 503.63 | 10.5142 | 0.794292 | 4957.95 |\n", - "| M5 | uptrend | 1108.9 | 5.5138 | 0.91713 | 4957.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260021.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:08:37,129 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:47,154 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:08:57,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:07,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:17,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:26 CET)\" (scheduled at 2026-01-23 04:09:26.633942+01:00)\n", - "2026-01-23 04:09:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:26 CET)\" executed successfully\n", - "2026-01-23 04:09:27,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:32 CET)\" (scheduled at 2026-01-23 04:09:32.132962+01:00)\n", - "2026-01-23 04:09:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:32 CET)\" executed successfully\n", - "2026-01-23 04:09:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:34 CET)\" (scheduled at 2026-01-23 04:09:34.010875+01:00)\n", - "2026-01-23 04:09:34,229 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94738 | 4958.27 |\n", - "| H4 | uptrend | 479.56 | 42.6277 | 3.06639 | 4958.27 |\n", - "| H1 | uptrend | 694.82 | 22.5385 | 2.34901 | 4958.27 |\n", - "| M30 | uptrend | 649.5 | 15.592 | 1.51904 | 4958.27 |\n", - "| M15 | uptrend | 503.68 | 10.5142 | 0.794368 | 4958.27 |\n", - "| M5 | uptrend | 1106.41 | 5.5266 | 0.917206 | 4958.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 259929.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:09:37,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:47,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:09:57,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:07,346 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:17,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:26 CET)\" (scheduled at 2026-01-23 04:10:26.633942+01:00)\n", - "2026-01-23 04:10:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:26 CET)\" executed successfully\n", - "2026-01-23 04:10:27,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:32 CET)\" (scheduled at 2026-01-23 04:10:32.132962+01:00)\n", - "2026-01-23 04:10:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:32 CET)\" executed successfully\n", - "2026-01-23 04:10:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:34 CET)\" (scheduled at 2026-01-23 04:10:34.010875+01:00)\n", - "2026-01-23 04:10:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94745 | 4958.58 |\n", - "| H4 | uptrend | 479.57 | 42.6277 | 3.06646 | 4958.58 |\n", - "| H1 | uptrend | 694.84 | 22.5385 | 2.34909 | 4958.58 |\n", - "| M30 | uptrend | 649.53 | 15.592 | 1.51912 | 4958.58 |\n", - "| M15 | uptrend | 503.73 | 10.5142 | 0.794441 | 4958.58 |\n", - "| M5 | uptrend | 1152.74 | 5.2323 | 0.904728 | 4958.58 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261791.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:10:37,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:47,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:10:57,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:07,484 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:17,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:26 CET)\" (scheduled at 2026-01-23 04:11:26.633942+01:00)\n", - "2026-01-23 04:11:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:26 CET)\" executed successfully\n", - "2026-01-23 04:11:27,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:32 CET)\" (scheduled at 2026-01-23 04:11:32.132962+01:00)\n", - "2026-01-23 04:11:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:32 CET)\" executed successfully\n", - "2026-01-23 04:11:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:34 CET)\" (scheduled at 2026-01-23 04:11:34.010875+01:00)\n", - "2026-01-23 04:11:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94724 | 4957.69 |\n", - "| H4 | uptrend | 479.54 | 42.6277 | 3.06625 | 4957.69 |\n", - "| H1 | uptrend | 694.77 | 22.5385 | 2.34888 | 4957.69 |\n", - "| M30 | uptrend | 649.44 | 15.592 | 1.51891 | 4957.69 |\n", - "| M15 | uptrend | 503.6 | 10.5142 | 0.794233 | 4957.7 |\n", - "| M5 | uptrend | 1137.26 | 5.3023 | 0.90452 | 4957.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.10)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261148.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:11:37,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:47,576 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:11:57,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:07,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:17,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:26 CET)\" (scheduled at 2026-01-23 04:12:26.633942+01:00)\n", - "2026-01-23 04:12:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:26 CET)\" executed successfully\n", - "2026-01-23 04:12:27,677 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:32 CET)\" (scheduled at 2026-01-23 04:12:32.132962+01:00)\n", - "2026-01-23 04:12:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:32 CET)\" executed successfully\n", - "2026-01-23 04:12:34,146 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:34 CET)\" (scheduled at 2026-01-23 04:12:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94719 | 4957.48 |\n", - "| H4 | uptrend | 479.53 | 42.6277 | 3.0662 | 4957.48 |\n", - "| H1 | uptrend | 694.76 | 22.5385 | 2.34883 | 4957.48 |\n", - "| M30 | uptrend | 649.42 | 15.592 | 1.51886 | 4957.48 |\n", - "| M15 | uptrend | 503.57 | 10.5142 | 0.794188 | 4957.51 |\n", - "| M5 | uptrend | 1124.78 | 5.3609 | 0.904475 | 4957.51 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260644.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:12:34,347 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:12:37,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:47,725 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:12:57,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:07,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:17,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:26,655 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:26 CET)\" (scheduled at 2026-01-23 04:13:26.633942+01:00)\n", - "2026-01-23 04:13:26,655 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:26 CET)\" executed successfully\n", - "2026-01-23 04:13:27,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:32 CET)\" (scheduled at 2026-01-23 04:13:32.132962+01:00)\n", - "2026-01-23 04:13:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:32 CET)\" executed successfully\n", - "2026-01-23 04:13:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:34 CET)\" (scheduled at 2026-01-23 04:13:34.010875+01:00)\n", - "2026-01-23 04:13:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94671 | 4955.42 |\n", - "| H4 | uptrend | 479.46 | 42.6277 | 3.06571 | 4955.4 |\n", - "| H1 | uptrend | 694.61 | 22.5385 | 2.34833 | 4955.4 |\n", - "| M30 | uptrend | 649.21 | 15.592 | 1.51837 | 4955.4 |\n", - "| M15 | uptrend | 503.25 | 10.5142 | 0.793689 | 4955.4 |\n", - "| M5 | uptrend | 1110.84 | 5.4252 | 0.903977 | 4955.4 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260030.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:13:37,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:47,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:13:57,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:07,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:17,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:26 CET)\" (scheduled at 2026-01-23 04:14:26.633942+01:00)\n", - "2026-01-23 04:14:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:26 CET)\" executed successfully\n", - "2026-01-23 04:14:27,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:32 CET)\" (scheduled at 2026-01-23 04:14:32.132962+01:00)\n", - "2026-01-23 04:14:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:32 CET)\" executed successfully\n", - "2026-01-23 04:14:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:34 CET)\" (scheduled at 2026-01-23 04:14:34.010875+01:00)\n", - "2026-01-23 04:14:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94655 | 4954.77 |\n", - "| H4 | uptrend | 479.43 | 42.6277 | 3.06556 | 4954.77 |\n", - "| H1 | uptrend | 691.76 | 22.6299 | 2.34818 | 4954.77 |\n", - "| M30 | uptrend | 645.36 | 15.6834 | 1.51822 | 4954.77 |\n", - "| M15 | uptrend | 498.82 | 10.6056 | 0.793541 | 4954.77 |\n", - "| M5 | uptrend | 1082.58 | 5.5659 | 0.903828 | 4954.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 258039.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:14:38,004 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:48,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:14:58,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:08,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:18,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:26 CET)\" (scheduled at 2026-01-23 04:15:26.633942+01:00)\n", - "2026-01-23 04:15:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:26 CET)\" executed successfully\n", - "2026-01-23 04:15:28,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:32 CET)\" (scheduled at 2026-01-23 04:15:32.132962+01:00)\n", - "2026-01-23 04:15:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:32 CET)\" executed successfully\n", - "2026-01-23 04:15:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:34 CET)\" (scheduled at 2026-01-23 04:15:34.010875+01:00)\n", - "2026-01-23 04:15:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.9465 | 4954.54 |\n", - "| H4 | uptrend | 479.42 | 42.6277 | 3.06551 | 4954.54 |\n", - "| H1 | uptrend | 691.64 | 22.6335 | 2.34813 | 4954.54 |\n", - "| M30 | uptrend | 645.19 | 15.687 | 1.51816 | 4954.54 |\n", - "| M15 | uptrend | 551.98 | 9.9631 | 0.824918 | 4954.54 |\n", - "| M5 | uptrend | 1122.82 | 5.2833 | 0.889839 | 4954.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 262812.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:15:38,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:48,174 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:15:58,205 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:08,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:18,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:26 CET)\" (scheduled at 2026-01-23 04:16:26.633942+01:00)\n", - "2026-01-23 04:16:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:26 CET)\" executed successfully\n", - "2026-01-23 04:16:28,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:32 CET)\" (scheduled at 2026-01-23 04:16:32.132962+01:00)\n", - "2026-01-23 04:16:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:32 CET)\" executed successfully\n", - "2026-01-23 04:16:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:34 CET)\" (scheduled at 2026-01-23 04:16:34.010875+01:00)\n", - "2026-01-23 04:16:34,239 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94636 | 4953.96 |\n", - "| H4 | uptrend | 479.4 | 42.6277 | 3.06537 | 4953.96 |\n", - "| H1 | uptrend | 691.6 | 22.6335 | 2.348 | 4954 |\n", - "| M30 | uptrend | 645.14 | 15.687 | 1.51804 | 4954 |\n", - "| M15 | uptrend | 550.48 | 9.9888 | 0.82479 | 4954 |\n", - "| M5 | uptrend | 1117.23 | 5.3091 | 0.889714 | 4954.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 640.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 262489.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:16:38,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:48,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:16:58,356 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:08,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:18,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:26 CET)\" (scheduled at 2026-01-23 04:17:26.633942+01:00)\n", - "2026-01-23 04:17:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:26 CET)\" executed successfully\n", - "2026-01-23 04:17:28,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:32 CET)\" (scheduled at 2026-01-23 04:17:32.132962+01:00)\n", - "2026-01-23 04:17:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:32 CET)\" executed successfully\n", - "2026-01-23 04:17:34,094 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:34 CET)\" (scheduled at 2026-01-23 04:17:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:17:34,331 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.01 | 88.7586 | 9.94551 | 4950.35 |\n", - "| H4 | uptrend | 479.27 | 42.6277 | 3.06452 | 4950.35 |\n", - "| H1 | uptrend | 684.8 | 22.8499 | 2.34714 | 4950.35 |\n", - "| M30 | uptrend | 635.99 | 15.9034 | 1.51717 | 4950.35 |\n", - "| M15 | uptrend | 538.24 | 10.2052 | 0.823928 | 4950.35 |\n", - "| M5 | uptrend | 1072.42 | 5.5255 | 0.888849 | 4950.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 639.91)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 258542.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:17:38,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:48,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:17:58,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:08,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:18,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:26 CET)\" (scheduled at 2026-01-23 04:18:26.633942+01:00)\n", - "2026-01-23 04:18:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:26 CET)\" executed successfully\n", - "2026-01-23 04:18:28,582 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:32,195 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:32 CET)\" (scheduled at 2026-01-23 04:18:32.132962+01:00)\n", - "2026-01-23 04:18:32,195 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:32 CET)\" executed successfully\n", - "2026-01-23 04:18:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:34 CET)\" (scheduled at 2026-01-23 04:18:34.010875+01:00)\n", - "2026-01-23 04:18:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.95 | 88.7586 | 9.94472 | 4947.02 |\n", - "| H4 | uptrend | 478.54 | 42.6812 | 3.06373 | 4947.02 |\n", - "| H1 | uptrend | 675.93 | 23.1421 | 2.34635 | 4947.02 |\n", - "| M30 | uptrend | 624.2 | 16.1956 | 1.5164 | 4947.07 |\n", - "| M15 | uptrend | 522.77 | 10.4974 | 0.823153 | 4947.07 |\n", - "| M5 | uptrend | 1017.68 | 5.8176 | 0.888074 | 4947.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 639.59)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 253561.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:18:38,592 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:48,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:18:58,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:08,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:18,692 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:26,720 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:26 CET)\" (scheduled at 2026-01-23 04:19:26.633942+01:00)\n", - "2026-01-23 04:19:26,720 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:26 CET)\" executed successfully\n", - "2026-01-23 04:19:28,710 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:32 CET)\" (scheduled at 2026-01-23 04:19:32.132962+01:00)\n", - "2026-01-23 04:19:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:32 CET)\" executed successfully\n", - "2026-01-23 04:19:34,054 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:34 CET)\" (scheduled at 2026-01-23 04:19:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:19:34,683 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.86 | 88.7586 | 9.9435 | 4941.83 |\n", - "| H4 | uptrend | 474.66 | 43.0134 | 3.0625 | 4941.83 |\n", - "| H1 | uptrend | 666.02 | 23.4742 | 2.34513 | 4941.83 |\n", - "| M30 | uptrend | 611.16 | 16.5277 | 1.51516 | 4941.83 |\n", - "| M15 | uptrend | 505.97 | 10.8295 | 0.821915 | 4941.83 |\n", - "| M5 | uptrend | 961.38 | 6.1498 | 0.886836 | 4941.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.98)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248105.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:19:38,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:48,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:19:58,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:08,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:18,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:26,956 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:26 CET)\" (scheduled at 2026-01-23 04:20:26.633942+01:00)\n", - "2026-01-23 04:20:26,956 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:26 CET)\" executed successfully\n", - "2026-01-23 04:20:28,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:32 CET)\" (scheduled at 2026-01-23 04:20:32.132962+01:00)\n", - "2026-01-23 04:20:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:32 CET)\" executed successfully\n", - "2026-01-23 04:20:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:34 CET)\" (scheduled at 2026-01-23 04:20:34.010875+01:00)\n", - "2026-01-23 04:20:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.83 | 88.7586 | 9.94312 | 4940.25 |\n", - "| H4 | uptrend | 472.79 | 43.1784 | 3.06213 | 4940.25 |\n", - "| H1 | uptrend | 661.26 | 23.6392 | 2.34476 | 4940.25 |\n", - "| M30 | uptrend | 604.97 | 16.6927 | 1.51479 | 4940.25 |\n", - "| M15 | uptrend | 498.15 | 10.9945 | 0.821541 | 4940.25 |\n", - "| M5 | uptrend | 949.61 | 6.098 | 0.868606 | 4940.25 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.21)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246118.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:20:38,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:48,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:20:58,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:08,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:18,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:26 CET)\" (scheduled at 2026-01-23 04:21:26.633942+01:00)\n", - "2026-01-23 04:21:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:26 CET)\" executed successfully\n", - "2026-01-23 04:21:29,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:32 CET)\" (scheduled at 2026-01-23 04:21:32.132962+01:00)\n", - "2026-01-23 04:21:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:32 CET)\" executed successfully\n", - "2026-01-23 04:21:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:34 CET)\" (scheduled at 2026-01-23 04:21:34.010875+01:00)\n", - "2026-01-23 04:21:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.89 | 88.7586 | 9.94394 | 4943.71 |\n", - "| H4 | uptrend | 472.91 | 43.1784 | 3.06295 | 4943.71 |\n", - "| H1 | uptrend | 661.49 | 23.6392 | 2.34557 | 4943.71 |\n", - "| M30 | uptrend | 605.3 | 16.6927 | 1.5156 | 4943.71 |\n", - "| M15 | uptrend | 498.65 | 10.9945 | 0.822359 | 4943.71 |\n", - "| M5 | uptrend | 937.31 | 6.1837 | 0.869409 | 4943.65 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245714.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:21:39,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:49,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:21:59,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:09,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:19,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:26 CET)\" (scheduled at 2026-01-23 04:22:26.633942+01:00)\n", - "2026-01-23 04:22:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:26 CET)\" executed successfully\n", - "2026-01-23 04:22:29,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:32 CET)\" (scheduled at 2026-01-23 04:22:32.132962+01:00)\n", - "2026-01-23 04:22:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:32 CET)\" executed successfully\n", - "2026-01-23 04:22:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:34 CET)\" (scheduled at 2026-01-23 04:22:34.010875+01:00)\n", - "2026-01-23 04:22:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.89 | 88.7586 | 9.94395 | 4943.76 |\n", - "| H4 | uptrend | 472.92 | 43.1784 | 3.06296 | 4943.76 |\n", - "| H1 | uptrend | 661.5 | 23.6392 | 2.34558 | 4943.76 |\n", - "| M30 | uptrend | 605.3 | 16.6927 | 1.51562 | 4943.76 |\n", - "| M15 | uptrend | 498.66 | 10.9945 | 0.822371 | 4943.76 |\n", - "| M5 | uptrend | 933.99 | 6.2059 | 0.869433 | 4943.75 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245582.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:22:39,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:49,195 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:22:59,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:09,239 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:19,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:26,709 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:26 CET)\" (scheduled at 2026-01-23 04:23:26.633942+01:00)\n", - "2026-01-23 04:23:26,709 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:26 CET)\" executed successfully\n", - "2026-01-23 04:23:29,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:32 CET)\" (scheduled at 2026-01-23 04:23:32.132962+01:00)\n", - "2026-01-23 04:23:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:32 CET)\" executed successfully\n", - "2026-01-23 04:23:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:34 CET)\" (scheduled at 2026-01-23 04:23:34.010875+01:00)\n", - "2026-01-23 04:23:34,220 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94427 | 4945.11 |\n", - "| H4 | uptrend | 472.96 | 43.1784 | 3.06328 | 4945.11 |\n", - "| H1 | uptrend | 661.59 | 23.6392 | 2.3459 | 4945.11 |\n", - "| M30 | uptrend | 605.43 | 16.6927 | 1.51594 | 4945.11 |\n", - "| M15 | uptrend | 498.85 | 10.9945 | 0.82269 | 4945.11 |\n", - "| M5 | uptrend | 917.86 | 6.3173 | 0.869754 | 4945.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244971.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:23:39,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:49,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:23:59,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:09,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:19,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:26 CET)\" (scheduled at 2026-01-23 04:24:26.633942+01:00)\n", - "2026-01-23 04:24:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:26 CET)\" executed successfully\n", - "2026-01-23 04:24:29,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:32 CET)\" (scheduled at 2026-01-23 04:24:32.132962+01:00)\n", - "2026-01-23 04:24:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:32 CET)\" executed successfully\n", - "2026-01-23 04:24:34,094 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:34 CET)\" (scheduled at 2026-01-23 04:24:34.010875+01:00)\n", - "2026-01-23 04:24:34,284 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.9 | 88.7586 | 9.94402 | 4944.07 |\n", - "| H4 | uptrend | 472.93 | 43.1784 | 3.06303 | 4944.08 |\n", - "| H1 | uptrend | 661.52 | 23.6392 | 2.34566 | 4944.08 |\n", - "| M30 | uptrend | 605.33 | 16.6927 | 1.51569 | 4944.07 |\n", - "| M15 | uptrend | 498.7 | 10.9945 | 0.822444 | 4944.07 |\n", - "| M5 | uptrend | 917.6 | 6.3173 | 0.869508 | 4944.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244934.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:24:39,558 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:49,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:24:59,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:09,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:19,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:26,656 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:26 CET)\" (scheduled at 2026-01-23 04:25:26.633942+01:00)\n", - "2026-01-23 04:25:26,656 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:26 CET)\" executed successfully\n", - "2026-01-23 04:25:29,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:32,521 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:32 CET)\" (scheduled at 2026-01-23 04:25:32.132962+01:00)\n", - "2026-01-23 04:25:32,521 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:32 CET)\" executed successfully\n", - "2026-01-23 04:25:34,087 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:34 CET)\" (scheduled at 2026-01-23 04:25:34.010875+01:00)\n", - "2026-01-23 04:25:34,259 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94421 | 4944.85 |\n", - "| H4 | uptrend | 472.96 | 43.1784 | 3.06322 | 4944.85 |\n", - "| H1 | uptrend | 661.57 | 23.6392 | 2.34584 | 4944.85 |\n", - "| M30 | uptrend | 605.4 | 16.6927 | 1.51587 | 4944.85 |\n", - "| M15 | uptrend | 498.81 | 10.9945 | 0.822628 | 4944.85 |\n", - "| M5 | uptrend | 938.75 | 6.0561 | 0.852766 | 4944.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245800.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:25:39,705 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:49,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:25:59,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:09,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:19,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:26,828 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:26 CET)\" (scheduled at 2026-01-23 04:26:26.633942+01:00)\n", - "2026-01-23 04:26:26,828 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:26 CET)\" executed successfully\n", - "2026-01-23 04:26:29,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:32 CET)\" (scheduled at 2026-01-23 04:26:32.132962+01:00)\n", - "2026-01-23 04:26:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:32 CET)\" executed successfully\n", - "2026-01-23 04:26:34,187 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:34 CET)\" (scheduled at 2026-01-23 04:26:34.010875+01:00)\n", - "2026-01-23 04:26:34,344 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.82 | 88.7586 | 9.94297 | 4939.6 |\n", - "| H4 | uptrend | 471.83 | 43.2634 | 3.06198 | 4939.6 |\n", - "| H1 | uptrend | 658.85 | 23.7242 | 2.3446 | 4939.6 |\n", - "| M30 | uptrend | 601.84 | 16.7777 | 1.51463 | 4939.6 |\n", - "| M15 | uptrend | 494.24 | 11.0795 | 0.821388 | 4939.6 |\n", - "| M5 | uptrend | 883.6 | 6.4246 | 0.851526 | 4939.6 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.82)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 242713.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:26:39,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:49,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:26:59,905 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:27:09,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:27:19,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:27:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:26 CET)\" (scheduled at 2026-01-23 04:27:26.633942+01:00)\n", - "2026-01-23 04:27:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:26 CET)\" executed successfully\n", - "2026-01-23 04:27:29,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:27:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:32 CET)\" (scheduled at 2026-01-23 04:27:32.132962+01:00)\n", - "2026-01-23 04:27:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:32 CET)\" executed successfully\n", - "2026-01-23 04:27:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:34 CET)\" (scheduled at 2026-01-23 04:27:34.010875+01:00)\n", - "2026-01-23 04:27:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94417 | 4944.7 |\n", - "| H4 | uptrend | 472.02 | 43.2634 | 3.06318 | 4944.7 |\n", - "| H1 | uptrend | 659.19 | 23.7242 | 2.34581 | 4944.7 |\n", - "| M30 | uptrend | 602.32 | 16.7777 | 1.51584 | 4944.7 |\n", - "| M15 | uptrend | 494.96 | 11.0795 | 0.82259 | 4944.69 |\n", - "| M5 | uptrend | 884.85 | 6.4246 | 0.852728 | 4944.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 242891.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:27:39,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:27:50,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:00,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:10,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:20,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:26,694 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:26 CET)\" (scheduled at 2026-01-23 04:28:26.633942+01:00)\n", - "2026-01-23 04:28:26,694 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:26 CET)\" executed successfully\n", - "2026-01-23 04:28:30,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:32,170 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:32 CET)\" (scheduled at 2026-01-23 04:28:32.132962+01:00)\n", - "2026-01-23 04:28:32,170 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:32 CET)\" executed successfully\n", - "2026-01-23 04:28:34,266 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:34 CET)\" (scheduled at 2026-01-23 04:28:34.010875+01:00)\n", - "2026-01-23 04:28:34,444 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.94414 | 4944.57 |\n", - "| H4 | uptrend | 472.02 | 43.2634 | 3.06315 | 4944.57 |\n", - "| H1 | uptrend | 659.18 | 23.7242 | 2.34578 | 4944.57 |\n", - "| M30 | uptrend | 602.31 | 16.7777 | 1.51581 | 4944.57 |\n", - "| M15 | uptrend | 494.94 | 11.0795 | 0.822562 | 4944.57 |\n", - "| M5 | uptrend | 884.82 | 6.4246 | 0.8527 | 4944.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 242887.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:28:40,144 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:28:50,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:00,192 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:10,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:20,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:26,655 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:26 CET)\" (scheduled at 2026-01-23 04:29:26.633942+01:00)\n", - "2026-01-23 04:29:26,655 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:26 CET)\" executed successfully\n", - "2026-01-23 04:29:30,270 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:32,171 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:32 CET)\" (scheduled at 2026-01-23 04:29:32.132962+01:00)\n", - "2026-01-23 04:29:32,171 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:32 CET)\" executed successfully\n", - "2026-01-23 04:29:34,064 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:34 CET)\" (scheduled at 2026-01-23 04:29:34.010875+01:00)\n", - "2026-01-23 04:29:34,235 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.88 | 88.7586 | 9.94383 | 4943.27 |\n", - "| H4 | uptrend | 471.97 | 43.2634 | 3.06284 | 4943.27 |\n", - "| H1 | uptrend | 659.09 | 23.7242 | 2.34547 | 4943.27 |\n", - "| M30 | uptrend | 602.19 | 16.7777 | 1.5155 | 4943.28 |\n", - "| M15 | uptrend | 494.76 | 11.0795 | 0.822257 | 4943.28 |\n", - "| M5 | uptrend | 884.51 | 6.4246 | 0.852395 | 4943.28 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.92)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 242842.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:29:40,304 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:29:50,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:00,023 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 05:00:00 CET)\" (scheduled at 2026-01-23 04:30:00+01:00)\n", - "2026-01-23 04:30:00,038 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 05:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 04:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.07 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:30:00,361 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:10,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:20,396 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:26,663 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:26 CET)\" (scheduled at 2026-01-23 04:30:26.633942+01:00)\n", - "2026-01-23 04:30:26,663 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:26 CET)\" executed successfully\n", - "2026-01-23 04:30:30,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:32 CET)\" (scheduled at 2026-01-23 04:30:32.132962+01:00)\n", - "2026-01-23 04:30:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:32 CET)\" executed successfully\n", - "2026-01-23 04:30:34,047 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:34 CET)\" (scheduled at 2026-01-23 04:30:34.010875+01:00)\n", - "2026-01-23 04:30:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.92 | 88.7586 | 9.94427 | 4945.13 |\n", - "| H4 | uptrend | 472.04 | 43.2634 | 3.06328 | 4945.13 |\n", - "| H1 | uptrend | 659.22 | 23.7242 | 2.34591 | 4945.13 |\n", - "| M30 | uptrend | 638.02 | 15.855 | 1.51738 | 4945.13 |\n", - "| M15 | uptrend | 535.57 | 10.5639 | 0.848648 | 4945.13 |\n", - "| M5 | uptrend | 892.75 | 6.2415 | 0.835814 | 4945.13 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248504.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:30:40,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:30:50,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:00,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:10,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:20,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:26 CET)\" (scheduled at 2026-01-23 04:31:26.633942+01:00)\n", - "2026-01-23 04:31:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:26 CET)\" executed successfully\n", - "2026-01-23 04:31:30,581 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:32,427 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:32 CET)\" (scheduled at 2026-01-23 04:31:32.132962+01:00)\n", - "2026-01-23 04:31:32,427 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:32 CET)\" executed successfully\n", - "2026-01-23 04:31:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:34 CET)\" (scheduled at 2026-01-23 04:31:34.010875+01:00)\n", - "2026-01-23 04:31:34,258 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.91 | 88.7586 | 9.9442 | 4944.81 |\n", - "| H4 | uptrend | 472.02 | 43.2634 | 3.06321 | 4944.81 |\n", - "| H1 | uptrend | 659.2 | 23.7242 | 2.34583 | 4944.81 |\n", - "| M30 | uptrend | 636.47 | 15.8929 | 1.5173 | 4944.81 |\n", - "| M15 | uptrend | 533.61 | 10.6017 | 0.848573 | 4944.81 |\n", - "| M5 | uptrend | 887.29 | 6.2793 | 0.835738 | 4944.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.96)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248040.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:31:40,592 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:31:50,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:00,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:10,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:20,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:26 CET)\" (scheduled at 2026-01-23 04:32:26.633942+01:00)\n", - "2026-01-23 04:32:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:26 CET)\" executed successfully\n", - "2026-01-23 04:32:30,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:32,486 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:32 CET)\" (scheduled at 2026-01-23 04:32:32.132962+01:00)\n", - "2026-01-23 04:32:32,486 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:32 CET)\" executed successfully\n", - "2026-01-23 04:32:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:34 CET)\" (scheduled at 2026-01-23 04:32:34.010875+01:00)\n", - "2026-01-23 04:32:34,200 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.93 | 88.7586 | 9.94452 | 4946.16 |\n", - "| H4 | uptrend | 472.07 | 43.2634 | 3.06353 | 4946.16 |\n", - "| H1 | uptrend | 659.29 | 23.7242 | 2.34615 | 4946.16 |\n", - "| M30 | uptrend | 636.6 | 15.8929 | 1.51762 | 4946.16 |\n", - "| M15 | uptrend | 533.81 | 10.6017 | 0.848892 | 4946.16 |\n", - "| M5 | uptrend | 887.63 | 6.2793 | 0.836057 | 4946.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.99)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248089.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:32:40,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:32:50,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:00,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:10,816 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:20,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:26 CET)\" (scheduled at 2026-01-23 04:33:26.633942+01:00)\n", - "2026-01-23 04:33:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:26 CET)\" executed successfully\n", - "2026-01-23 04:33:30,873 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:32,169 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:32 CET)\" (scheduled at 2026-01-23 04:33:32.132962+01:00)\n", - "2026-01-23 04:33:32,169 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:32 CET)\" executed successfully\n", - "2026-01-23 04:33:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:34 CET)\" (scheduled at 2026-01-23 04:33:34.010875+01:00)\n", - "2026-01-23 04:33:34,230 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.96 | 88.7586 | 9.94494 | 4947.93 |\n", - "| H4 | uptrend | 472.14 | 43.2634 | 3.06394 | 4947.93 |\n", - "| H1 | uptrend | 659.4 | 23.7242 | 2.34657 | 4947.93 |\n", - "| M30 | uptrend | 633.33 | 15.9793 | 1.51802 | 4947.84 |\n", - "| M15 | uptrend | 529.74 | 10.6882 | 0.849289 | 4947.84 |\n", - "| M5 | uptrend | 875.99 | 6.3657 | 0.836454 | 4947.84 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.03)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 247133.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:33:40,892 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:33:50,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:00,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:10,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:20,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:26,743 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:26 CET)\" (scheduled at 2026-01-23 04:34:26.633942+01:00)\n", - "2026-01-23 04:34:26,743 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:26 CET)\" executed successfully\n", - "2026-01-23 04:34:31,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:32 CET)\" (scheduled at 2026-01-23 04:34:32.132962+01:00)\n", - "2026-01-23 04:34:32,159 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:32 CET)\" executed successfully\n", - "2026-01-23 04:34:34,040 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:34 CET)\" (scheduled at 2026-01-23 04:34:34.010875+01:00)\n", - "2026-01-23 04:34:34,217 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.98 | 88.7586 | 9.94518 | 4948.96 |\n", - "| H4 | uptrend | 472.18 | 43.2634 | 3.06419 | 4948.96 |\n", - "| H1 | uptrend | 659.47 | 23.7242 | 2.34681 | 4948.96 |\n", - "| M30 | uptrend | 626.35 | 16.16 | 1.51829 | 4948.96 |\n", - "| M15 | uptrend | 521.09 | 10.8689 | 0.849553 | 4948.96 |\n", - "| M5 | uptrend | 852.08 | 6.5465 | 0.836718 | 4948.96 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.06)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245110.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:34:41,038 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:34:51,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:01,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:11,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:21,145 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:26 CET)\" (scheduled at 2026-01-23 04:35:26.633942+01:00)\n", - "2026-01-23 04:35:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:26 CET)\" executed successfully\n", - "2026-01-23 04:35:31,163 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:32 CET)\" (scheduled at 2026-01-23 04:35:32.132962+01:00)\n", - "2026-01-23 04:35:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:32 CET)\" executed successfully\n", - "2026-01-23 04:35:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:34 CET)\" (scheduled at 2026-01-23 04:35:34.010875+01:00)\n", - "2026-01-23 04:35:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94566 | 4951 |\n", - "| H4 | uptrend | 472.25 | 43.2634 | 3.06467 | 4951 |\n", - "| H1 | uptrend | 659.61 | 23.7242 | 2.34729 | 4951 |\n", - "| M30 | uptrend | 625.83 | 16.1786 | 1.51877 | 4951 |\n", - "| M15 | uptrend | 520.5 | 10.8874 | 0.850035 | 4951 |\n", - "| M5 | uptrend | 885.25 | 6.1841 | 0.82117 | 4951 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246378.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:35:41,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:35:51,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:01,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:11,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:21,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:26 CET)\" (scheduled at 2026-01-23 04:36:26.633942+01:00)\n", - "2026-01-23 04:36:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:26 CET)\" executed successfully\n", - "2026-01-23 04:36:31,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:32 CET)\" (scheduled at 2026-01-23 04:36:32.132962+01:00)\n", - "2026-01-23 04:36:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:32 CET)\" executed successfully\n", - "2026-01-23 04:36:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:34 CET)\" (scheduled at 2026-01-23 04:36:34.010875+01:00)\n", - "2026-01-23 04:36:34,153 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94593 | 4952.14 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06494 | 4952.14 |\n", - "| H1 | uptrend | 659.68 | 23.7242 | 2.34756 | 4952.14 |\n", - "| M30 | uptrend | 622.65 | 16.2643 | 1.51904 | 4952.14 |\n", - "| M15 | uptrend | 516.6 | 10.9732 | 0.850305 | 4952.14 |\n", - "| M5 | uptrend | 873.44 | 6.2698 | 0.82144 | 4952.14 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245427.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:36:41,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:36:51,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:01,398 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:11,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:21,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:26 CET)\" (scheduled at 2026-01-23 04:37:26.633942+01:00)\n", - "2026-01-23 04:37:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:26 CET)\" executed successfully\n", - "2026-01-23 04:37:31,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:32 CET)\" (scheduled at 2026-01-23 04:37:32.132962+01:00)\n", - "2026-01-23 04:37:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:32 CET)\" executed successfully\n", - "2026-01-23 04:37:34,076 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:34 CET)\" (scheduled at 2026-01-23 04:37:34.010875+01:00)\n", - "2026-01-23 04:37:34,232 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94597 | 4952.32 |\n", - "| H4 | uptrend | 472.3 | 43.2634 | 3.06498 | 4952.32 |\n", - "| H1 | uptrend | 659.69 | 23.7242 | 2.34761 | 4952.32 |\n", - "| M30 | uptrend | 621.54 | 16.2936 | 1.51908 | 4952.32 |\n", - "| M15 | uptrend | 515.25 | 11.0024 | 0.850347 | 4952.32 |\n", - "| M5 | uptrend | 869.42 | 6.2991 | 0.821482 | 4952.32 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245099.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:37:41,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:37:51,515 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:01,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:11,558 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:21,591 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:26,854 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:26 CET)\" (scheduled at 2026-01-23 04:38:26.633942+01:00)\n", - "2026-01-23 04:38:26,854 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:26 CET)\" executed successfully\n", - "2026-01-23 04:38:31,613 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:32 CET)\" (scheduled at 2026-01-23 04:38:32.132962+01:00)\n", - "2026-01-23 04:38:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:32 CET)\" executed successfully\n", - "2026-01-23 04:38:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:34 CET)\" (scheduled at 2026-01-23 04:38:34.010875+01:00)\n", - "2026-01-23 04:38:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94592 | 4952.11 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06493 | 4952.11 |\n", - "| H1 | uptrend | 659.68 | 23.7242 | 2.34756 | 4952.11 |\n", - "| M30 | uptrend | 619.65 | 16.3429 | 1.51903 | 4952.11 |\n", - "| M15 | uptrend | 512.92 | 11.0517 | 0.850298 | 4952.11 |\n", - "| M5 | uptrend | 862.62 | 6.3484 | 0.821432 | 4952.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244533.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:38:41,640 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:38:51,664 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:01,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:11,710 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:21,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:26 CET)\" (scheduled at 2026-01-23 04:39:26.633942+01:00)\n", - "2026-01-23 04:39:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:26 CET)\" executed successfully\n", - "2026-01-23 04:39:31,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:32 CET)\" (scheduled at 2026-01-23 04:39:32.132962+01:00)\n", - "2026-01-23 04:39:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:32 CET)\" executed successfully\n", - "2026-01-23 04:39:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:34 CET)\" (scheduled at 2026-01-23 04:39:34.010875+01:00)\n", - "2026-01-23 04:39:34,228 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94592 | 4952.08 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06492 | 4952.08 |\n", - "| H1 | uptrend | 659.68 | 23.7242 | 2.34755 | 4952.07 |\n", - "| M30 | uptrend | 619.65 | 16.3429 | 1.51902 | 4952.07 |\n", - "| M15 | uptrend | 512.91 | 11.0517 | 0.850288 | 4952.07 |\n", - "| M5 | uptrend | 862.61 | 6.3484 | 0.821423 | 4952.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 244532.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:39:34,930 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 05:39:34 CET)\" (scheduled at 2026-01-23 04:39:34.806528+01:00)\n", - "2026-01-23 04:39:34,944 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 05:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[04:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 4500.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:39:41,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:39:51,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:01,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:11,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:21,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:26,669 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:26 CET)\" (scheduled at 2026-01-23 04:40:26.633942+01:00)\n", - "2026-01-23 04:40:26,669 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:26 CET)\" executed successfully\n", - "2026-01-23 04:40:31,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:32 CET)\" (scheduled at 2026-01-23 04:40:32.132962+01:00)\n", - "2026-01-23 04:40:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:32 CET)\" executed successfully\n", - "2026-01-23 04:40:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:34 CET)\" (scheduled at 2026-01-23 04:40:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.9457 | 4951.14 |\n", - "| H4 | uptrend | 472.26 | 43.2634 | 3.0647 | 4951.14 |\n", - "| H1 | uptrend | 659.62 | 23.7242 | 2.34733 | 4951.15 |\n", - "| M30 | uptrend | 619.56 | 16.3429 | 1.5188 | 4951.15 |\n", - "| M15 | uptrend | 512.79 | 11.0517 | 0.850087 | 4951.22 |\n", - "| M5 | uptrend | 900.97 | 5.9628 | 0.805844 | 4951.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246044.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:40:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:40:41,954 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:40:51,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:02,006 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:12,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:22,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:26 CET)\" (scheduled at 2026-01-23 04:41:26.633942+01:00)\n", - "2026-01-23 04:41:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:26 CET)\" executed successfully\n", - "2026-01-23 04:41:32,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:32,155 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:32 CET)\" (scheduled at 2026-01-23 04:41:32.132962+01:00)\n", - "2026-01-23 04:41:32,155 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:32 CET)\" executed successfully\n", - "2026-01-23 04:41:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:34 CET)\" (scheduled at 2026-01-23 04:41:34.010875+01:00)\n", - "2026-01-23 04:41:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94541 | 4949.95 |\n", - "| H4 | uptrend | 472.21 | 43.2634 | 3.06442 | 4949.95 |\n", - "| H1 | uptrend | 659.54 | 23.7242 | 2.34705 | 4949.95 |\n", - "| M30 | uptrend | 619.44 | 16.3429 | 1.51852 | 4949.95 |\n", - "| M15 | uptrend | 512.61 | 11.0517 | 0.849787 | 4949.95 |\n", - "| M5 | uptrend | 887.97 | 6.0478 | 0.805539 | 4949.93 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245493.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:41:42,167 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:41:52,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:02,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:12,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:22,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:26,653 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:26 CET)\" (scheduled at 2026-01-23 04:42:26.633942+01:00)\n", - "2026-01-23 04:42:26,653 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:26 CET)\" executed successfully\n", - "2026-01-23 04:42:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:32 CET)\" (scheduled at 2026-01-23 04:42:32.132962+01:00)\n", - "2026-01-23 04:42:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:32 CET)\" executed successfully\n", - "2026-01-23 04:42:32,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:34 CET)\" (scheduled at 2026-01-23 04:42:34.010875+01:00)\n", - "2026-01-23 04:42:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747 | 88.7586 | 9.94545 | 4950.11 |\n", - "| H4 | uptrend | 472.22 | 43.2634 | 3.06446 | 4950.11 |\n", - "| H1 | uptrend | 659.55 | 23.7242 | 2.34708 | 4950.11 |\n", - "| M30 | uptrend | 619.46 | 16.3429 | 1.51856 | 4950.11 |\n", - "| M15 | uptrend | 512.64 | 11.0517 | 0.849825 | 4950.11 |\n", - "| M5 | uptrend | 886.97 | 6.0549 | 0.805582 | 4950.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.09)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245457.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:42:42,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:42:52,332 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:02,361 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:12,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:22,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:26,857 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:26 CET)\" (scheduled at 2026-01-23 04:43:26.633942+01:00)\n", - "2026-01-23 04:43:26,857 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:26 CET)\" executed successfully\n", - "2026-01-23 04:43:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:32 CET)\" (scheduled at 2026-01-23 04:43:32.132962+01:00)\n", - "2026-01-23 04:43:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:32 CET)\" executed successfully\n", - "2026-01-23 04:43:32,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:34,176 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:34 CET)\" (scheduled at 2026-01-23 04:43:34.010875+01:00)\n", - "2026-01-23 04:43:34,405 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.96 | 88.7586 | 9.94487 | 4947.67 |\n", - "| H4 | uptrend | 472.13 | 43.2634 | 3.06388 | 4947.67 |\n", - "| H1 | uptrend | 659.39 | 23.7242 | 2.34651 | 4947.67 |\n", - "| M30 | uptrend | 619.22 | 16.3429 | 1.51797 | 4947.64 |\n", - "| M15 | uptrend | 512.29 | 11.0517 | 0.849251 | 4947.68 |\n", - "| M5 | uptrend | 850.23 | 6.3121 | 0.805008 | 4947.68 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.03)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243925.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:43:42,458 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:43:52,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:02,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:12,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:22,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:26 CET)\" (scheduled at 2026-01-23 04:44:26.633942+01:00)\n", - "2026-01-23 04:44:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:26 CET)\" executed successfully\n", - "2026-01-23 04:44:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:32 CET)\" (scheduled at 2026-01-23 04:44:32.132962+01:00)\n", - "2026-01-23 04:44:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:32 CET)\" executed successfully\n", - "2026-01-23 04:44:32,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:34 CET)\" (scheduled at 2026-01-23 04:44:34.010875+01:00)\n", - "2026-01-23 04:44:34,157 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.97 | 88.7586 | 9.94501 | 4948.22 |\n", - "| H4 | uptrend | 472.15 | 43.2634 | 3.06401 | 4948.23 |\n", - "| H1 | uptrend | 659.42 | 23.7242 | 2.34664 | 4948.23 |\n", - "| M30 | uptrend | 619.28 | 16.3429 | 1.51811 | 4948.23 |\n", - "| M15 | uptrend | 512.37 | 11.0517 | 0.849381 | 4948.23 |\n", - "| M5 | uptrend | 843.5 | 6.3635 | 0.805138 | 4948.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.04)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 243670.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:44:42,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:44:52,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:02,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:12,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:22,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:26 CET)\" (scheduled at 2026-01-23 04:45:26.633942+01:00)\n", - "2026-01-23 04:45:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:26 CET)\" executed successfully\n", - "2026-01-23 04:45:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:32 CET)\" (scheduled at 2026-01-23 04:45:32.132962+01:00)\n", - "2026-01-23 04:45:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:32 CET)\" executed successfully\n", - "2026-01-23 04:45:32,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:34,203 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:34 CET)\" (scheduled at 2026-01-23 04:45:34.010875+01:00)\n", - "2026-01-23 04:45:34,359 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.99 | 88.7586 | 9.94529 | 4949.41 |\n", - "| H4 | uptrend | 472.19 | 43.2634 | 3.06429 | 4949.41 |\n", - "| H1 | uptrend | 659.5 | 23.7242 | 2.34692 | 4949.41 |\n", - "| M30 | uptrend | 619.39 | 16.3429 | 1.51839 | 4949.41 |\n", - "| M15 | uptrend | 564.81 | 10.3616 | 0.87786 | 4949.41 |\n", - "| M5 | uptrend | 876 | 6.0083 | 0.789487 | 4949.41 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.07)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 248137.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:45:42,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:45:52,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:02,813 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:12,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:22,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:26,678 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:26 CET)\" (scheduled at 2026-01-23 04:46:26.633942+01:00)\n", - "2026-01-23 04:46:26,678 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:26 CET)\" executed successfully\n", - "2026-01-23 04:46:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:32 CET)\" (scheduled at 2026-01-23 04:46:32.132962+01:00)\n", - "2026-01-23 04:46:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:32 CET)\" executed successfully\n", - "2026-01-23 04:46:32,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:34 CET)\" (scheduled at 2026-01-23 04:46:34.010875+01:00)\n", - "2026-01-23 04:46:34,202 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94567 | 4951.04 |\n", - "| H4 | uptrend | 472.25 | 43.2634 | 3.06468 | 4951.04 |\n", - "| H1 | uptrend | 659.61 | 23.7242 | 2.3473 | 4951.04 |\n", - "| M30 | uptrend | 619.55 | 16.3429 | 1.51878 | 4951.04 |\n", - "| M15 | uptrend | 555.38 | 10.5424 | 0.878245 | 4951.04 |\n", - "| M5 | uptrend | 850.84 | 6.189 | 0.789872 | 4951.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246592.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:46:42,902 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:46:52,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:02,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:12,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:23,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:27,412 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:26 CET)\" (scheduled at 2026-01-23 04:47:26.633942+01:00)\n", - "2026-01-23 04:47:27,412 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:26 CET)\" executed successfully\n", - "2026-01-23 04:47:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:32 CET)\" (scheduled at 2026-01-23 04:47:32.132962+01:00)\n", - "2026-01-23 04:47:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:32 CET)\" executed successfully\n", - "2026-01-23 04:47:33,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:34 CET)\" (scheduled at 2026-01-23 04:47:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94573 | 4951.3 |\n", - "| H4 | uptrend | 472.26 | 43.2634 | 3.06474 | 4951.3 |\n", - "| H1 | uptrend | 659.63 | 23.7242 | 2.34737 | 4951.33 |\n", - "| M30 | uptrend | 619.58 | 16.3429 | 1.51885 | 4951.35 |\n", - "| M15 | uptrend | 555.42 | 10.5424 | 0.878319 | 4951.35 |\n", - "| M5 | uptrend | 850.92 | 6.189 | 0.789945 | 4951.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246602.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:47:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:47:43,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:47:53,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:03,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:13,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:23,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:26 CET)\" (scheduled at 2026-01-23 04:48:26.633942+01:00)\n", - "2026-01-23 04:48:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:26 CET)\" executed successfully\n", - "2026-01-23 04:48:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:32 CET)\" (scheduled at 2026-01-23 04:48:32.132962+01:00)\n", - "2026-01-23 04:48:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:32 CET)\" executed successfully\n", - "2026-01-23 04:48:33,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:34,112 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:34 CET)\" (scheduled at 2026-01-23 04:48:34.010875+01:00)\n", - "2026-01-23 04:48:34,280 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.9458 | 4951.57 |\n", - "| H4 | uptrend | 472.27 | 43.2634 | 3.0648 | 4951.57 |\n", - "| H1 | uptrend | 659.64 | 23.7242 | 2.34743 | 4951.57 |\n", - "| M30 | uptrend | 619.6 | 16.3429 | 1.5189 | 4951.57 |\n", - "| M15 | uptrend | 555 | 10.5509 | 0.878371 | 4951.57 |\n", - "| M5 | uptrend | 849.8 | 6.1975 | 0.789997 | 4951.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246536.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:48:43,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:48:53,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:03,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:13,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:23,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:26 CET)\" (scheduled at 2026-01-23 04:49:26.633942+01:00)\n", - "2026-01-23 04:49:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:26 CET)\" executed successfully\n", - "2026-01-23 04:49:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:32 CET)\" (scheduled at 2026-01-23 04:49:32.132962+01:00)\n", - "2026-01-23 04:49:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:32 CET)\" executed successfully\n", - "2026-01-23 04:49:33,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:34 CET)\" (scheduled at 2026-01-23 04:49:34.010875+01:00)\n", - "2026-01-23 04:49:34,219 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.9464 | 4954.12 |\n", - "| H4 | uptrend | 472.36 | 43.2634 | 3.06541 | 4954.12 |\n", - "| H1 | uptrend | 659.81 | 23.7242 | 2.34803 | 4954.12 |\n", - "| M30 | uptrend | 617.71 | 16.3993 | 1.5195 | 4954.12 |\n", - "| M15 | uptrend | 548.4 | 10.6852 | 0.878973 | 4954.12 |\n", - "| M5 | uptrend | 832.41 | 6.3318 | 0.7906 | 4954.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245317.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:49:43,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:49:53,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:03,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:13,444 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:23,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:26,736 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:26 CET)\" (scheduled at 2026-01-23 04:50:26.633942+01:00)\n", - "2026-01-23 04:50:26,736 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:26 CET)\" executed successfully\n", - "2026-01-23 04:50:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:32 CET)\" (scheduled at 2026-01-23 04:50:32.132962+01:00)\n", - "2026-01-23 04:50:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:32 CET)\" executed successfully\n", - "2026-01-23 04:50:33,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:34 CET)\" (scheduled at 2026-01-23 04:50:34.010875+01:00)\n", - "2026-01-23 04:50:34,177 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94623 | 4953.42 |\n", - "| H4 | uptrend | 472.34 | 43.2634 | 3.06524 | 4953.42 |\n", - "| H1 | uptrend | 659.77 | 23.7242 | 2.34787 | 4953.42 |\n", - "| M30 | uptrend | 616.7 | 16.4243 | 1.51934 | 4953.42 |\n", - "| M15 | uptrend | 547.02 | 10.7102 | 0.878808 | 4953.42 |\n", - "| M5 | uptrend | 867.18 | 5.9703 | 0.776592 | 4953.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246538.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:50:43,519 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:50:53,553 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:03,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:13,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:23,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:26 CET)\" (scheduled at 2026-01-23 04:51:26.633942+01:00)\n", - "2026-01-23 04:51:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:26 CET)\" executed successfully\n", - "2026-01-23 04:51:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:32 CET)\" (scheduled at 2026-01-23 04:51:32.132962+01:00)\n", - "2026-01-23 04:51:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:32 CET)\" executed successfully\n", - "2026-01-23 04:51:33,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:34 CET)\" (scheduled at 2026-01-23 04:51:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94603 | 4952.55 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06503 | 4952.55 |\n", - "| H1 | uptrend | 659.71 | 23.7242 | 2.34766 | 4952.55 |\n", - "| M30 | uptrend | 616.62 | 16.4243 | 1.51913 | 4952.55 |\n", - "| M15 | uptrend | 546.89 | 10.7102 | 0.878602 | 4952.55 |\n", - "| M5 | uptrend | 852.56 | 6.071 | 0.776387 | 4952.55 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245931.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:51:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:51:43,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:51:53,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:03,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:13,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:23,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:26 CET)\" (scheduled at 2026-01-23 04:52:26.633942+01:00)\n", - "2026-01-23 04:52:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:26 CET)\" executed successfully\n", - "2026-01-23 04:52:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:32 CET)\" (scheduled at 2026-01-23 04:52:32.132962+01:00)\n", - "2026-01-23 04:52:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:32 CET)\" executed successfully\n", - "2026-01-23 04:52:33,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:34,158 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:34 CET)\" (scheduled at 2026-01-23 04:52:34.010875+01:00)\n", - "2026-01-23 04:52:34,343 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94602 | 4952.51 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06503 | 4952.51 |\n", - "| H1 | uptrend | 659.71 | 23.7242 | 2.34765 | 4952.51 |\n", - "| M30 | uptrend | 616.62 | 16.4243 | 1.51912 | 4952.51 |\n", - "| M15 | uptrend | 546.89 | 10.7102 | 0.878593 | 4952.51 |\n", - "| M5 | uptrend | 852.55 | 6.071 | 0.776375 | 4952.5 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245930.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:52:43,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:52:53,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:03,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:13,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:23,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:26,777 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:26 CET)\" (scheduled at 2026-01-23 04:53:26.633942+01:00)\n", - "2026-01-23 04:53:26,777 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:26 CET)\" executed successfully\n", - "2026-01-23 04:53:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:32 CET)\" (scheduled at 2026-01-23 04:53:32.132962+01:00)\n", - "2026-01-23 04:53:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:32 CET)\" executed successfully\n", - "2026-01-23 04:53:33,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:34 CET)\" (scheduled at 2026-01-23 04:53:34.010875+01:00)\n", - "2026-01-23 04:53:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94606 | 4952.69 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06507 | 4952.69 |\n", - "| H1 | uptrend | 659.72 | 23.7242 | 2.34769 | 4952.69 |\n", - "| M30 | uptrend | 616.63 | 16.4243 | 1.51917 | 4952.69 |\n", - "| M15 | uptrend | 546.91 | 10.7102 | 0.878635 | 4952.69 |\n", - "| M5 | uptrend | 852.6 | 6.071 | 0.77642 | 4952.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245936.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:53:43,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:53:54,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:04,053 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:14,065 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:24,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:26,802 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:26 CET)\" (scheduled at 2026-01-23 04:54:26.633942+01:00)\n", - "2026-01-23 04:54:26,802 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:26 CET)\" executed successfully\n", - "2026-01-23 04:54:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:32 CET)\" (scheduled at 2026-01-23 04:54:32.132962+01:00)\n", - "2026-01-23 04:54:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:32 CET)\" executed successfully\n", - "2026-01-23 04:54:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:34 CET)\" (scheduled at 2026-01-23 04:54:34.010875+01:00)\n", - "2026-01-23 04:54:34,158 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94579 | 4951.54 |\n", - "| H4 | uptrend | 472.27 | 43.2634 | 3.0648 | 4951.54 |\n", - "| H1 | uptrend | 659.64 | 23.7242 | 2.34742 | 4951.54 |\n", - "| M30 | uptrend | 616.52 | 16.4243 | 1.51889 | 4951.54 |\n", - "| M15 | uptrend | 546.75 | 10.7102 | 0.878364 | 4951.54 |\n", - "| M5 | uptrend | 843.08 | 6.1374 | 0.776148 | 4951.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 245526.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:54:44,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:54:54,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:55:04,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:55:14,282 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:55:24,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:55:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:26 CET)\" (scheduled at 2026-01-23 04:55:26.633942+01:00)\n", - "2026-01-23 04:55:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:26 CET)\" executed successfully\n", - "2026-01-23 04:55:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:32 CET)\" (scheduled at 2026-01-23 04:55:32.132962+01:00)\n", - "2026-01-23 04:55:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:32 CET)\" executed successfully\n", - "2026-01-23 04:55:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:34 CET)\" (scheduled at 2026-01-23 04:55:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94622 | 4953.37 |\n", - "| H4 | uptrend | 472.34 | 43.2634 | 3.06523 | 4953.37 |\n", - "| H1 | uptrend | 659.76 | 23.7242 | 2.34784 | 4953.29 |\n", - "| M30 | uptrend | 616.69 | 16.4243 | 1.5193 | 4953.27 |\n", - "| M15 | uptrend | 547 | 10.7102 | 0.878772 | 4953.27 |\n", - "| M5 | uptrend | 873.52 | 5.8254 | 0.763293 | 4953.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246788.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:55:34,242 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:56:34 CET)\" executed successfully\n", - "2026-01-23 04:55:34,333 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:55:44,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:55:54,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:04,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:14,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:24,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:26,751 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:26 CET)\" (scheduled at 2026-01-23 04:56:26.633942+01:00)\n", - "2026-01-23 04:56:26,751 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:26 CET)\" executed successfully\n", - "2026-01-23 04:56:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:32 CET)\" (scheduled at 2026-01-23 04:56:32.132962+01:00)\n", - "2026-01-23 04:56:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:32 CET)\" executed successfully\n", - "2026-01-23 04:56:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:34 CET)\" (scheduled at 2026-01-23 04:56:34.010875+01:00)\n", - "2026-01-23 04:56:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94621 | 4953.33 |\n", - "| H4 | uptrend | 472.33 | 43.2634 | 3.06522 | 4953.33 |\n", - "| H1 | uptrend | 659.76 | 23.7242 | 2.34784 | 4953.33 |\n", - "| M30 | uptrend | 616.69 | 16.4243 | 1.51932 | 4953.33 |\n", - "| M15 | uptrend | 547.01 | 10.7102 | 0.878787 | 4953.33 |\n", - "| M5 | uptrend | 871.71 | 5.8376 | 0.763301 | 4953.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246717.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:56:34,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:44,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:56:54,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:04,564 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:14,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:24,605 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:26 CET)\" (scheduled at 2026-01-23 04:57:26.633942+01:00)\n", - "2026-01-23 04:57:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:26 CET)\" executed successfully\n", - "2026-01-23 04:57:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:32 CET)\" (scheduled at 2026-01-23 04:57:32.132962+01:00)\n", - "2026-01-23 04:57:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:32 CET)\" executed successfully\n", - "2026-01-23 04:57:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:34 CET)\" (scheduled at 2026-01-23 04:57:34.010875+01:00)\n", - "2026-01-23 04:57:34,172 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94608 | 4952.77 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06509 | 4952.77 |\n", - "| H1 | uptrend | 659.72 | 23.7242 | 2.34771 | 4952.77 |\n", - "| M30 | uptrend | 616.64 | 16.4243 | 1.51919 | 4952.77 |\n", - "| M15 | uptrend | 546.93 | 10.7102 | 0.878654 | 4952.77 |\n", - "| M5 | uptrend | 871.57 | 5.8376 | 0.763175 | 4952.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246697.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:57:34,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:44,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:57:54,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:04,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:14,803 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:24,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:26,690 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:26 CET)\" (scheduled at 2026-01-23 04:58:26.633942+01:00)\n", - "2026-01-23 04:58:26,715 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:26 CET)\" executed successfully\n", - "2026-01-23 04:58:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:32 CET)\" (scheduled at 2026-01-23 04:58:32.132962+01:00)\n", - "2026-01-23 04:58:32,151 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:32 CET)\" executed successfully\n", - "2026-01-23 04:58:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:34 CET)\" (scheduled at 2026-01-23 04:58:34.010875+01:00)\n", - "2026-01-23 04:58:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 04:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.946 | 4952.42 |\n", - "| H4 | uptrend | 472.3 | 43.2634 | 3.06501 | 4952.42 |\n", - "| H1 | uptrend | 659.7 | 23.7242 | 2.34763 | 4952.42 |\n", - "| M30 | uptrend | 616.61 | 16.4243 | 1.5191 | 4952.42 |\n", - "| M15 | uptrend | 546.87 | 10.7102 | 0.878572 | 4952.42 |\n", - "| M5 | uptrend | 871.47 | 5.8376 | 0.763093 | 4952.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246684.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:58:34,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:44,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:58:54,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:04,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:14,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:24,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:27,013 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:26 CET)\" (scheduled at 2026-01-23 04:59:26.633942+01:00)\n", - "2026-01-23 04:59:27,013 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:26 CET)\" executed successfully\n", - "2026-01-23 04:59:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:32 CET)\" (scheduled at 2026-01-23 04:59:32.132962+01:00)\n", - "2026-01-23 04:59:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:32 CET)\" executed successfully\n", - "2026-01-23 04:59:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:34 CET)\" (scheduled at 2026-01-23 04:59:34.010875+01:00)\n", - "2026-01-23 04:59:34,173 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94592 | 4952.11 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06493 | 4952.11 |\n", - "| H1 | uptrend | 659.68 | 23.7242 | 2.34756 | 4952.11 |\n", - "| M30 | uptrend | 616.58 | 16.4243 | 1.51903 | 4952.11 |\n", - "| M15 | uptrend | 546.83 | 10.7102 | 0.878498 | 4952.11 |\n", - "| M5 | uptrend | 871.39 | 5.8376 | 0.763019 | 4952.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 246673.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 60.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 70.5%\n", - " πŸ”€ HYBRID (60/40): 88.2%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 04:59:34,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:45,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 04:59:55,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:00,009 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 05:30:00 CET)\" (scheduled at 2026-01-23 05:00:00+01:00)\n", - "2026-01-23 05:00:00,024 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 05:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 05:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 24.07 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:00:05,064 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:15,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:25,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:26,695 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:26 CET)\" (scheduled at 2026-01-23 05:00:26.633942+01:00)\n", - "2026-01-23 05:00:26,695 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:26 CET)\" executed successfully\n", - "2026-01-23 05:00:32,162 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:32 CET)\" (scheduled at 2026-01-23 05:00:32.132962+01:00)\n", - "2026-01-23 05:00:32,162 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:32 CET)\" executed successfully\n", - "2026-01-23 05:00:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:34 CET)\" (scheduled at 2026-01-23 05:00:34.010875+01:00)\n", - "2026-01-23 05:00:34,215 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94594 | 4952.19 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06495 | 4952.19 |\n", - "| H1 | uptrend | 719.51 | 22.1089 | 2.38612 | 4952.19 |\n", - "| M30 | uptrend | 661.31 | 15.3304 | 1.52073 | 4952.19 |\n", - "| M15 | uptrend | 603.72 | 10.0245 | 0.907798 | 4952.19 |\n", - "| M5 | uptrend | 912.17 | 5.4999 | 0.752521 | 4952.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261279.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:00:35,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:45,165 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:00:55,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:05,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:15,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:25,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:26,781 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:26 CET)\" (scheduled at 2026-01-23 05:01:26.633942+01:00)\n", - "2026-01-23 05:01:26,797 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:26 CET)\" executed successfully\n", - "2026-01-23 05:01:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:32 CET)\" (scheduled at 2026-01-23 05:01:32.132962+01:00)\n", - "2026-01-23 05:01:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:32 CET)\" executed successfully\n", - "2026-01-23 05:01:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:34 CET)\" (scheduled at 2026-01-23 05:01:34.010875+01:00)\n", - "2026-01-23 05:01:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.9459 | 4952.02 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06491 | 4952.02 |\n", - "| H1 | uptrend | 718.31 | 22.1453 | 2.38608 | 4952.02 |\n", - "| M30 | uptrend | 659.73 | 15.3669 | 1.52069 | 4952.02 |\n", - "| M15 | uptrend | 601.51 | 10.0609 | 0.907757 | 4952.02 |\n", - "| M5 | uptrend | 906.12 | 5.5363 | 0.75248 | 4952.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260657.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:01:35,278 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:45,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:01:55,334 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:05,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:15,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:25,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:26 CET)\" (scheduled at 2026-01-23 05:02:26.633942+01:00)\n", - "2026-01-23 05:02:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:26 CET)\" executed successfully\n", - "2026-01-23 05:02:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:32 CET)\" (scheduled at 2026-01-23 05:02:32.132962+01:00)\n", - "2026-01-23 05:02:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:32 CET)\" executed successfully\n", - "2026-01-23 05:02:34,037 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:34 CET)\" (scheduled at 2026-01-23 05:02:34.010875+01:00)\n", - "2026-01-23 05:02:34,228 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94584 | 4951.77 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06485 | 4951.77 |\n", - "| H1 | uptrend | 717.58 | 22.1674 | 2.38602 | 4951.77 |\n", - "| M30 | uptrend | 658.75 | 15.389 | 1.52062 | 4951.76 |\n", - "| M15 | uptrend | 600.14 | 10.0831 | 0.907696 | 4951.76 |\n", - "| M5 | uptrend | 902.43 | 5.5585 | 0.752419 | 4951.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260276.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:02:35,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:45,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:02:55,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:05,504 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:15,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:25,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:26,719 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:26 CET)\" (scheduled at 2026-01-23 05:03:26.633942+01:00)\n", - "2026-01-23 05:03:26,719 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:26 CET)\" executed successfully\n", - "2026-01-23 05:03:32,186 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:32 CET)\" (scheduled at 2026-01-23 05:03:32.132962+01:00)\n", - "2026-01-23 05:03:32,186 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:32 CET)\" executed successfully\n", - "2026-01-23 05:03:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:34 CET)\" (scheduled at 2026-01-23 05:03:34.010875+01:00)\n", - "2026-01-23 05:03:34,161 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.9462 | 4953.29 |\n", - "| H4 | uptrend | 472.33 | 43.2634 | 3.06521 | 4953.29 |\n", - "| H1 | uptrend | 717.13 | 22.1846 | 2.38638 | 4953.29 |\n", - "| M30 | uptrend | 658.17 | 15.4061 | 1.52099 | 4953.29 |\n", - "| M15 | uptrend | 599.36 | 10.1002 | 0.908057 | 4953.29 |\n", - "| M5 | uptrend | 900.09 | 5.5756 | 0.75278 | 4953.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260049.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:03:35,584 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:45,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:03:55,639 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:05,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:15,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:25,717 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:26 CET)\" (scheduled at 2026-01-23 05:04:26.633942+01:00)\n", - "2026-01-23 05:04:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:26 CET)\" executed successfully\n", - "2026-01-23 05:04:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:32 CET)\" (scheduled at 2026-01-23 05:04:32.132962+01:00)\n", - "2026-01-23 05:04:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:32 CET)\" executed successfully\n", - "2026-01-23 05:04:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:34 CET)\" (scheduled at 2026-01-23 05:04:34.010875+01:00)\n", - "2026-01-23 05:04:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94614 | 4953.04 |\n", - "| H4 | uptrend | 472.32 | 43.2634 | 3.06515 | 4953.04 |\n", - "| H1 | uptrend | 717.11 | 22.1846 | 2.38632 | 4953.04 |\n", - "| M30 | uptrend | 658.15 | 15.4061 | 1.52093 | 4953.04 |\n", - "| M15 | uptrend | 599.33 | 10.1002 | 0.907998 | 4953.04 |\n", - "| M5 | uptrend | 900.02 | 5.5756 | 0.752721 | 4953.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260039.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:04:35,730 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:45,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:04:55,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:05,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:15,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:25,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:26 CET)\" (scheduled at 2026-01-23 05:05:26.633942+01:00)\n", - "2026-01-23 05:05:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:26 CET)\" executed successfully\n", - "2026-01-23 05:05:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:32 CET)\" (scheduled at 2026-01-23 05:05:32.132962+01:00)\n", - "2026-01-23 05:05:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:32 CET)\" executed successfully\n", - "2026-01-23 05:05:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:34 CET)\" (scheduled at 2026-01-23 05:05:34.010875+01:00)\n", - "2026-01-23 05:05:34,217 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94617 | 4953.15 |\n", - "| H4 | uptrend | 472.33 | 43.2634 | 3.06518 | 4953.15 |\n", - "| H1 | uptrend | 717.12 | 22.1846 | 2.38635 | 4953.15 |\n", - "| M30 | uptrend | 658.16 | 15.4061 | 1.52095 | 4953.15 |\n", - "| M15 | uptrend | 599.34 | 10.1002 | 0.908024 | 4953.15 |\n", - "| M5 | uptrend | 950.21 | 5.2066 | 0.742111 | 4953.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 262050.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:05:36,018 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:46,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:05:56,064 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:06,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:16,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:26,141 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:26 CET)\" (scheduled at 2026-01-23 05:06:26.633942+01:00)\n", - "2026-01-23 05:06:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:26 CET)\" executed successfully\n", - "2026-01-23 05:06:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:32 CET)\" (scheduled at 2026-01-23 05:06:32.132962+01:00)\n", - "2026-01-23 05:06:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:32 CET)\" executed successfully\n", - "2026-01-23 05:06:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:34 CET)\" (scheduled at 2026-01-23 05:06:34.010875+01:00)\n", - "2026-01-23 05:06:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.946 | 4952.43 |\n", - "| H4 | uptrend | 472.3 | 43.2634 | 3.06501 | 4952.43 |\n", - "| H1 | uptrend | 716.98 | 22.1874 | 2.38618 | 4952.43 |\n", - "| M30 | uptrend | 657.96 | 15.409 | 1.52078 | 4952.43 |\n", - "| M15 | uptrend | 599.06 | 10.1031 | 0.907852 | 4952.42 |\n", - "| M5 | uptrend | 938.92 | 5.2681 | 0.741938 | 4952.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261549.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:06:36,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:46,186 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:06:56,210 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:06,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:16,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:26,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:26,759 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:26 CET)\" (scheduled at 2026-01-23 05:07:26.633942+01:00)\n", - "2026-01-23 05:07:26,761 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:26 CET)\" executed successfully\n", - "2026-01-23 05:07:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:32 CET)\" (scheduled at 2026-01-23 05:07:32.132962+01:00)\n", - "2026-01-23 05:07:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:32 CET)\" executed successfully\n", - "2026-01-23 05:07:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:34 CET)\" (scheduled at 2026-01-23 05:07:34.010875+01:00)\n", - "2026-01-23 05:07:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94562 | 4950.84 |\n", - "| H4 | uptrend | 472.24 | 43.2634 | 3.06463 | 4950.85 |\n", - "| H1 | uptrend | 715.76 | 22.2217 | 2.38581 | 4950.85 |\n", - "| M30 | uptrend | 656.34 | 15.4433 | 1.52041 | 4950.85 |\n", - "| M15 | uptrend | 596.79 | 10.1374 | 0.907481 | 4950.85 |\n", - "| M5 | uptrend | 920.72 | 5.3695 | 0.741567 | 4950.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.11)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260430.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:07:36,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:46,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:07:56,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:06,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:16,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:26,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:26 CET)\" (scheduled at 2026-01-23 05:08:26.633942+01:00)\n", - "2026-01-23 05:08:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:26 CET)\" executed successfully\n", - "2026-01-23 05:08:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:32 CET)\" (scheduled at 2026-01-23 05:08:32.132962+01:00)\n", - "2026-01-23 05:08:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:32 CET)\" executed successfully\n", - "2026-01-23 05:08:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:34 CET)\" (scheduled at 2026-01-23 05:08:34.010875+01:00)\n", - "2026-01-23 05:08:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94587 | 4951.88 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06488 | 4951.88 |\n", - "| H1 | uptrend | 715.56 | 22.2303 | 2.38605 | 4951.88 |\n", - "| M30 | uptrend | 656.08 | 15.4519 | 1.52065 | 4951.88 |\n", - "| M15 | uptrend | 596.45 | 10.1459 | 0.907724 | 4951.88 |\n", - "| M5 | uptrend | 919.55 | 5.3781 | 0.741811 | 4951.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260324.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:08:36,451 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:46,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:08:56,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:06,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:16,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:26,585 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:27,038 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:26 CET)\" (scheduled at 2026-01-23 05:09:26.633942+01:00)\n", - "2026-01-23 05:09:27,039 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:26 CET)\" executed successfully\n", - "2026-01-23 05:09:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:32 CET)\" (scheduled at 2026-01-23 05:09:32.132962+01:00)\n", - "2026-01-23 05:09:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:32 CET)\" executed successfully\n", - "2026-01-23 05:09:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:34 CET)\" (scheduled at 2026-01-23 05:09:34.010875+01:00)\n", - "2026-01-23 05:09:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94585 | 4951.78 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06485 | 4951.78 |\n", - "| H1 | uptrend | 715.55 | 22.2303 | 2.38603 | 4951.78 |\n", - "| M30 | uptrend | 656.07 | 15.4519 | 1.52063 | 4951.78 |\n", - "| M15 | uptrend | 596.43 | 10.1459 | 0.907701 | 4951.78 |\n", - "| M5 | uptrend | 919.52 | 5.3781 | 0.741787 | 4951.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 260320.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:09:36,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:46,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:09:56,651 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:06,673 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:16,706 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:26 CET)\" (scheduled at 2026-01-23 05:10:26.633942+01:00)\n", - "2026-01-23 05:10:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:26 CET)\" executed successfully\n", - "2026-01-23 05:10:26,731 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:32 CET)\" (scheduled at 2026-01-23 05:10:32.132962+01:00)\n", - "2026-01-23 05:10:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:32 CET)\" executed successfully\n", - "2026-01-23 05:10:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:34 CET)\" (scheduled at 2026-01-23 05:10:34.010875+01:00)\n", - "2026-01-23 05:10:34,228 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94605 | 4952.64 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06506 | 4952.64 |\n", - "| H1 | uptrend | 715.61 | 22.2303 | 2.38623 | 4952.66 |\n", - "| M30 | uptrend | 656.16 | 15.4519 | 1.52084 | 4952.66 |\n", - "| M15 | uptrend | 596.56 | 10.1459 | 0.907906 | 4952.65 |\n", - "| M5 | uptrend | 965.48 | 5.0468 | 0.730881 | 4952.65 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 262182.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:10:36,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:46,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:10:56,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:06,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:16,842 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:26,734 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:26 CET)\" (scheduled at 2026-01-23 05:11:26.633942+01:00)\n", - "2026-01-23 05:11:26,734 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:26 CET)\" executed successfully\n", - "2026-01-23 05:11:26,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:32 CET)\" (scheduled at 2026-01-23 05:11:32.132962+01:00)\n", - "2026-01-23 05:11:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:32 CET)\" executed successfully\n", - "2026-01-23 05:11:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:34 CET)\" (scheduled at 2026-01-23 05:11:34.010875+01:00)\n", - "2026-01-23 05:11:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94606 | 4952.67 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06506 | 4952.67 |\n", - "| H1 | uptrend | 715.61 | 22.2303 | 2.38624 | 4952.67 |\n", - "| M30 | uptrend | 656.16 | 15.4519 | 1.52084 | 4952.67 |\n", - "| M15 | uptrend | 596.57 | 10.1459 | 0.907911 | 4952.67 |\n", - "| M5 | uptrend | 957.62 | 5.0882 | 0.730885 | 4952.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261868.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:11:36,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:46,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:11:56,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:06,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:16,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:26 CET)\" (scheduled at 2026-01-23 05:12:26.633942+01:00)\n", - "2026-01-23 05:12:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:26 CET)\" executed successfully\n", - "2026-01-23 05:12:27,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:32 CET)\" (scheduled at 2026-01-23 05:12:32.132962+01:00)\n", - "2026-01-23 05:12:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:32 CET)\" executed successfully\n", - "2026-01-23 05:12:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:34 CET)\" (scheduled at 2026-01-23 05:12:34.010875+01:00)\n", - "2026-01-23 05:12:34,176 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94599 | 4952.39 |\n", - "| H4 | uptrend | 472.3 | 43.2634 | 3.065 | 4952.39 |\n", - "| H1 | uptrend | 715.59 | 22.2303 | 2.38617 | 4952.39 |\n", - "| M30 | uptrend | 656.13 | 15.4519 | 1.52077 | 4952.39 |\n", - "| M15 | uptrend | 596.52 | 10.1459 | 0.907845 | 4952.39 |\n", - "| M5 | uptrend | 957.54 | 5.0882 | 0.730819 | 4952.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261857.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:12:37,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:47,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:12:57,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:07,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:17,147 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:26,718 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:26 CET)\" (scheduled at 2026-01-23 05:13:26.633942+01:00)\n", - "2026-01-23 05:13:26,718 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:26 CET)\" executed successfully\n", - "2026-01-23 05:13:27,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:32 CET)\" (scheduled at 2026-01-23 05:13:32.132962+01:00)\n", - "2026-01-23 05:13:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:32 CET)\" executed successfully\n", - "2026-01-23 05:13:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:34 CET)\" (scheduled at 2026-01-23 05:13:34.010875+01:00)\n", - "2026-01-23 05:13:34,158 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94595 | 4952.22 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06496 | 4952.22 |\n", - "| H1 | uptrend | 715.58 | 22.2303 | 2.38613 | 4952.22 |\n", - "| M30 | uptrend | 656.12 | 15.4519 | 1.52073 | 4952.22 |\n", - "| M15 | uptrend | 596.5 | 10.1459 | 0.907805 | 4952.22 |\n", - "| M5 | uptrend | 954.27 | 5.1053 | 0.730779 | 4952.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261722.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:13:37,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:47,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:13:57,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:07,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:17,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:26 CET)\" (scheduled at 2026-01-23 05:14:26.633942+01:00)\n", - "2026-01-23 05:14:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:26 CET)\" executed successfully\n", - "2026-01-23 05:14:27,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:32 CET)\" (scheduled at 2026-01-23 05:14:32.132962+01:00)\n", - "2026-01-23 05:14:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:32 CET)\" executed successfully\n", - "2026-01-23 05:14:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:34 CET)\" (scheduled at 2026-01-23 05:14:34.010875+01:00)\n", - "2026-01-23 05:14:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94585 | 4951.82 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06486 | 4951.82 |\n", - "| H1 | uptrend | 715.55 | 22.2303 | 2.38604 | 4951.82 |\n", - "| M30 | uptrend | 656.08 | 15.4519 | 1.52064 | 4951.82 |\n", - "| M15 | uptrend | 596.44 | 10.1459 | 0.90771 | 4951.82 |\n", - "| M5 | uptrend | 954.14 | 5.1053 | 0.730682 | 4951.81 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 261706.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:14:37,425 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:47,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:14:57,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:07,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:17,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:26,653 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:26 CET)\" (scheduled at 2026-01-23 05:15:26.633942+01:00)\n", - "2026-01-23 05:15:26,653 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:26 CET)\" executed successfully\n", - "2026-01-23 05:15:27,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:32 CET)\" (scheduled at 2026-01-23 05:15:32.132962+01:00)\n", - "2026-01-23 05:15:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:32 CET)\" executed successfully\n", - "2026-01-23 05:15:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:34 CET)\" (scheduled at 2026-01-23 05:15:34.010875+01:00)\n", - "2026-01-23 05:15:34,150 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94589 | 4951.97 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.0649 | 4951.97 |\n", - "| H1 | uptrend | 715.56 | 22.2303 | 2.38607 | 4951.97 |\n", - "| M30 | uptrend | 656.09 | 15.4519 | 1.52067 | 4951.97 |\n", - "| M15 | uptrend | 659.74 | 9.472 | 0.937351 | 4951.97 |\n", - "| M5 | uptrend | 998.46 | 4.7914 | 0.717602 | 4951.97 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267279.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:15:37,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:47,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:15:57,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:07,644 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:17,676 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:26 CET)\" (scheduled at 2026-01-23 05:16:26.633942+01:00)\n", - "2026-01-23 05:16:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:26 CET)\" executed successfully\n", - "2026-01-23 05:16:27,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:32 CET)\" (scheduled at 2026-01-23 05:16:32.132962+01:00)\n", - "2026-01-23 05:16:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:32 CET)\" executed successfully\n", - "2026-01-23 05:16:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:34 CET)\" (scheduled at 2026-01-23 05:16:34.010875+01:00)\n", - "2026-01-23 05:16:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.9458 | 4951.57 |\n", - "| H4 | uptrend | 472.27 | 43.2634 | 3.0648 | 4951.57 |\n", - "| H1 | uptrend | 715.53 | 22.2303 | 2.38598 | 4951.57 |\n", - "| M30 | uptrend | 656.05 | 15.4519 | 1.52058 | 4951.57 |\n", - "| M15 | uptrend | 658.18 | 9.4934 | 0.937256 | 4951.57 |\n", - "| M5 | uptrend | 993.88 | 4.8128 | 0.717507 | 4951.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266996.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:16:37,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:47,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:16:57,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:07,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:17,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:26 CET)\" (scheduled at 2026-01-23 05:17:26.633942+01:00)\n", - "2026-01-23 05:17:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:26 CET)\" executed successfully\n", - "2026-01-23 05:17:27,847 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:32 CET)\" (scheduled at 2026-01-23 05:17:32.132962+01:00)\n", - "2026-01-23 05:17:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:32 CET)\" executed successfully\n", - "2026-01-23 05:17:34,033 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:34 CET)\" (scheduled at 2026-01-23 05:17:34.010875+01:00)\n", - "2026-01-23 05:17:34,218 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94596 | 4952.28 |\n", - "| H4 | uptrend | 472.3 | 43.2634 | 3.06497 | 4952.28 |\n", - "| H1 | uptrend | 715.58 | 22.2303 | 2.38614 | 4952.27 |\n", - "| M30 | uptrend | 656.12 | 15.4519 | 1.52074 | 4952.25 |\n", - "| M15 | uptrend | 658.29 | 9.4934 | 0.937417 | 4952.25 |\n", - "| M5 | uptrend | 994.08 | 4.8128 | 0.717646 | 4952.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267023.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:17:37,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:47,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:17:57,925 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:07,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:17,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:26 CET)\" (scheduled at 2026-01-23 05:18:26.633942+01:00)\n", - "2026-01-23 05:18:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:26 CET)\" executed successfully\n", - "2026-01-23 05:18:27,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:32 CET)\" (scheduled at 2026-01-23 05:18:32.132962+01:00)\n", - "2026-01-23 05:18:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:32 CET)\" executed successfully\n", - "2026-01-23 05:18:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:34 CET)\" (scheduled at 2026-01-23 05:18:34.010875+01:00)\n", - "2026-01-23 05:18:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94618 | 4953.2 |\n", - "| H4 | uptrend | 472.33 | 43.2634 | 3.06519 | 4953.2 |\n", - "| H1 | uptrend | 715.65 | 22.2303 | 2.38636 | 4953.2 |\n", - "| M30 | uptrend | 656.22 | 15.4519 | 1.52096 | 4953.2 |\n", - "| M15 | uptrend | 654.66 | 9.5484 | 0.937641 | 4953.2 |\n", - "| M5 | uptrend | 983.18 | 4.8678 | 0.717892 | 4953.2 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266385.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:18:38,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:48,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:18:58,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:08,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:18,115 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:26 CET)\" (scheduled at 2026-01-23 05:19:26.633942+01:00)\n", - "2026-01-23 05:19:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:26 CET)\" executed successfully\n", - "2026-01-23 05:19:28,145 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:32 CET)\" (scheduled at 2026-01-23 05:19:32.132962+01:00)\n", - "2026-01-23 05:19:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:32 CET)\" executed successfully\n", - "2026-01-23 05:19:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:34 CET)\" (scheduled at 2026-01-23 05:19:34.010875+01:00)\n", - "2026-01-23 05:19:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94608 | 4952.78 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06509 | 4952.78 |\n", - "| H1 | uptrend | 715.62 | 22.2303 | 2.38626 | 4952.78 |\n", - "| M30 | uptrend | 656.17 | 15.4519 | 1.52086 | 4952.78 |\n", - "| M15 | uptrend | 654 | 9.557 | 0.937542 | 4952.78 |\n", - "| M5 | uptrend | 981.32 | 4.8764 | 0.717793 | 4952.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266264.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:19:38,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:48,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:19:58,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:08,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:18,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:26 CET)\" (scheduled at 2026-01-23 05:20:26.633942+01:00)\n", - "2026-01-23 05:20:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:26 CET)\" executed successfully\n", - "2026-01-23 05:20:28,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:32 CET)\" (scheduled at 2026-01-23 05:20:32.132962+01:00)\n", - "2026-01-23 05:20:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:32 CET)\" executed successfully\n", - "2026-01-23 05:20:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:34 CET)\" (scheduled at 2026-01-23 05:20:34.010875+01:00)\n", - "2026-01-23 05:20:34,208 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.9458 | 4951.57 |\n", - "| H4 | uptrend | 472.27 | 43.2634 | 3.0648 | 4951.57 |\n", - "| H1 | uptrend | 715.53 | 22.2303 | 2.38598 | 4951.57 |\n", - "| M30 | uptrend | 656.05 | 15.4519 | 1.52058 | 4951.57 |\n", - "| M15 | uptrend | 653.8 | 9.557 | 0.937256 | 4951.57 |\n", - "| M5 | uptrend | 1023.23 | 4.5888 | 0.704306 | 4951.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267907.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:20:38,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:48,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:20:58,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:08,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:18,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:26,729 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:26 CET)\" (scheduled at 2026-01-23 05:21:26.633942+01:00)\n", - "2026-01-23 05:21:26,729 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:26 CET)\" executed successfully\n", - "2026-01-23 05:21:28,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:32 CET)\" (scheduled at 2026-01-23 05:21:32.132962+01:00)\n", - "2026-01-23 05:21:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:32 CET)\" executed successfully\n", - "2026-01-23 05:21:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:34 CET)\" (scheduled at 2026-01-23 05:21:34.010875+01:00)\n", - "2026-01-23 05:21:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94573 | 4951.28 |\n", - "| H4 | uptrend | 472.26 | 43.2634 | 3.06473 | 4951.26 |\n", - "| H1 | uptrend | 714.36 | 22.266 | 2.3859 | 4951.26 |\n", - "| M30 | uptrend | 654.51 | 15.4876 | 1.52051 | 4951.26 |\n", - "| M15 | uptrend | 647.84 | 9.6441 | 0.937183 | 4951.26 |\n", - "| M5 | uptrend | 1004.06 | 4.6759 | 0.704233 | 4951.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266541.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:21:38,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:48,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:21:58,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:08,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:18,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:26 CET)\" (scheduled at 2026-01-23 05:22:26.633942+01:00)\n", - "2026-01-23 05:22:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:26 CET)\" executed successfully\n", - "2026-01-23 05:22:28,581 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:32 CET)\" (scheduled at 2026-01-23 05:22:32.132962+01:00)\n", - "2026-01-23 05:22:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:32 CET)\" executed successfully\n", - "2026-01-23 05:22:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:34 CET)\" (scheduled at 2026-01-23 05:22:34.010875+01:00)\n", - "2026-01-23 05:22:34,162 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94579 | 4951.53 |\n", - "| H4 | uptrend | 472.27 | 43.2634 | 3.06479 | 4951.53 |\n", - "| H1 | uptrend | 714.38 | 22.266 | 2.38597 | 4951.53 |\n", - "| M30 | uptrend | 654.53 | 15.4876 | 1.52057 | 4951.53 |\n", - "| M15 | uptrend | 647.89 | 9.6441 | 0.937247 | 4951.53 |\n", - "| M5 | uptrend | 1004.15 | 4.6759 | 0.704297 | 4951.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266552.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:22:38,601 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:48,625 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:22:58,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:08,675 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:18,692 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:26 CET)\" (scheduled at 2026-01-23 05:23:26.633942+01:00)\n", - "2026-01-23 05:23:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:26 CET)\" executed successfully\n", - "2026-01-23 05:23:28,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:32,537 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:32 CET)\" (scheduled at 2026-01-23 05:23:32.132962+01:00)\n", - "2026-01-23 05:23:32,537 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:32 CET)\" executed successfully\n", - "2026-01-23 05:23:34,155 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:34 CET)\" (scheduled at 2026-01-23 05:23:34.010875+01:00)\n", - "2026-01-23 05:23:34,358 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94605 | 4952.65 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06506 | 4952.65 |\n", - "| H1 | uptrend | 714.46 | 22.266 | 2.38623 | 4952.65 |\n", - "| M30 | uptrend | 654.65 | 15.4876 | 1.52083 | 4952.65 |\n", - "| M15 | uptrend | 648.07 | 9.6441 | 0.937511 | 4952.65 |\n", - "| M5 | uptrend | 995.7 | 4.7173 | 0.704562 | 4952.65 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266245.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:23:38,735 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:48,777 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:23:58,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:08,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:18,843 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:26,733 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:26 CET)\" (scheduled at 2026-01-23 05:24:26.633942+01:00)\n", - "2026-01-23 05:24:26,733 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:26 CET)\" executed successfully\n", - "2026-01-23 05:24:28,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:32 CET)\" (scheduled at 2026-01-23 05:24:32.132962+01:00)\n", - "2026-01-23 05:24:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:32 CET)\" executed successfully\n", - "2026-01-23 05:24:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:34 CET)\" (scheduled at 2026-01-23 05:24:34.010875+01:00)\n", - "2026-01-23 05:24:34,201 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94582 | 4951.69 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06483 | 4951.69 |\n", - "| H1 | uptrend | 714.39 | 22.266 | 2.386 | 4951.68 |\n", - "| M30 | uptrend | 654.55 | 15.4876 | 1.5206 | 4951.67 |\n", - "| M15 | uptrend | 647.91 | 9.6441 | 0.93728 | 4951.67 |\n", - "| M5 | uptrend | 995.38 | 4.7173 | 0.70433 | 4951.67 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266205.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:24:38,895 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:48,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:24:58,940 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:08,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:18,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:26,709 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:26 CET)\" (scheduled at 2026-01-23 05:25:26.633942+01:00)\n", - "2026-01-23 05:25:26,709 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:26 CET)\" executed successfully\n", - "2026-01-23 05:25:29,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:32 CET)\" (scheduled at 2026-01-23 05:25:32.132962+01:00)\n", - "2026-01-23 05:25:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:32 CET)\" executed successfully\n", - "2026-01-23 05:25:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:34 CET)\" (scheduled at 2026-01-23 05:25:34.010875+01:00)\n", - "2026-01-23 05:25:34,233 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.9457 | 4951.15 |\n", - "| H4 | uptrend | 472.26 | 43.2634 | 3.06471 | 4951.15 |\n", - "| H1 | uptrend | 714.36 | 22.266 | 2.38588 | 4951.15 |\n", - "| M30 | uptrend | 654.49 | 15.4876 | 1.52048 | 4951.15 |\n", - "| M15 | uptrend | 647.82 | 9.6441 | 0.937143 | 4951.09 |\n", - "| M5 | uptrend | 1029.64 | 4.454 | 0.687893 | 4951.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267561.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:25:39,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:49,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:25:59,084 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:09,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:19,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:26 CET)\" (scheduled at 2026-01-23 05:26:26.633942+01:00)\n", - "2026-01-23 05:26:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:26 CET)\" executed successfully\n", - "2026-01-23 05:26:29,146 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:32 CET)\" (scheduled at 2026-01-23 05:26:32.132962+01:00)\n", - "2026-01-23 05:26:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:32 CET)\" executed successfully\n", - "2026-01-23 05:26:34,283 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:34 CET)\" (scheduled at 2026-01-23 05:26:34.010875+01:00)\n", - "2026-01-23 05:26:34,439 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.02 | 88.7586 | 9.94572 | 4951.24 |\n", - "| H4 | uptrend | 472.26 | 43.2634 | 3.06473 | 4951.24 |\n", - "| H1 | uptrend | 714.36 | 22.266 | 2.3859 | 4951.24 |\n", - "| M30 | uptrend | 654.5 | 15.4876 | 1.5205 | 4951.24 |\n", - "| M15 | uptrend | 647.84 | 9.6441 | 0.937178 | 4951.24 |\n", - "| M5 | uptrend | 1029.67 | 4.454 | 0.687912 | 4951.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.12)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267565.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:26:39,177 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:49,195 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:26:59,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:09,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:19,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:26,807 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:26 CET)\" (scheduled at 2026-01-23 05:27:26.633942+01:00)\n", - "2026-01-23 05:27:26,807 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:26 CET)\" executed successfully\n", - "2026-01-23 05:27:29,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:32 CET)\" (scheduled at 2026-01-23 05:27:32.132962+01:00)\n", - "2026-01-23 05:27:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:32 CET)\" executed successfully\n", - "2026-01-23 05:27:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:34 CET)\" (scheduled at 2026-01-23 05:27:34.010875+01:00)\n", - "2026-01-23 05:27:34,198 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94591 | 4952.04 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06492 | 4952.04 |\n", - "| H1 | uptrend | 714.42 | 22.266 | 2.38609 | 4952.04 |\n", - "| M30 | uptrend | 654.59 | 15.4876 | 1.52069 | 4952.04 |\n", - "| M15 | uptrend | 647.97 | 9.6441 | 0.937367 | 4952.04 |\n", - "| M5 | uptrend | 1021.43 | 4.4911 | 0.688101 | 4952.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267258.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:27:39,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:49,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:27:59,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:09,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:19,427 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:26 CET)\" (scheduled at 2026-01-23 05:28:26.633942+01:00)\n", - "2026-01-23 05:28:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:26 CET)\" executed successfully\n", - "2026-01-23 05:28:29,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:32 CET)\" (scheduled at 2026-01-23 05:28:32.132962+01:00)\n", - "2026-01-23 05:28:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:32 CET)\" executed successfully\n", - "2026-01-23 05:28:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:34 CET)\" (scheduled at 2026-01-23 05:28:34.010875+01:00)\n", - "2026-01-23 05:28:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94584 | 4951.75 |\n", - "| H4 | uptrend | 472.28 | 43.2634 | 3.06485 | 4951.75 |\n", - "| H1 | uptrend | 714.4 | 22.266 | 2.38602 | 4951.75 |\n", - "| M30 | uptrend | 654.56 | 15.4876 | 1.52062 | 4951.75 |\n", - "| M15 | uptrend | 647.92 | 9.6441 | 0.937299 | 4951.75 |\n", - "| M5 | uptrend | 1021.33 | 4.4911 | 0.688032 | 4951.75 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.13)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 267245.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:28:39,476 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:49,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:28:59,537 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:09,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:19,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:26 CET)\" (scheduled at 2026-01-23 05:29:26.633942+01:00)\n", - "2026-01-23 05:29:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:26 CET)\" executed successfully\n", - "2026-01-23 05:29:29,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:32 CET)\" (scheduled at 2026-01-23 05:29:32.132962+01:00)\n", - "2026-01-23 05:29:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:32 CET)\" executed successfully\n", - "2026-01-23 05:29:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:34 CET)\" (scheduled at 2026-01-23 05:29:34.010875+01:00)\n", - "2026-01-23 05:29:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.9461 | 4952.84 |\n", - "| H4 | uptrend | 472.32 | 43.2634 | 3.0651 | 4952.84 |\n", - "| H1 | uptrend | 714.47 | 22.266 | 2.38627 | 4952.83 |\n", - "| M30 | uptrend | 654.67 | 15.4876 | 1.52088 | 4952.83 |\n", - "| M15 | uptrend | 648.1 | 9.6441 | 0.937554 | 4952.83 |\n", - "| M5 | uptrend | 1013.17 | 4.529 | 0.688288 | 4952.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.16)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 266949.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:29:39,638 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:49,660 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:29:59,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:00,001 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 06:00:00 CET)\" (scheduled at 2026-01-23 05:30:00+01:00)\n", - "2026-01-23 05:30:00,009 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 06:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 05:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 22.41 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:30:09,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:19,739 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:26 CET)\" (scheduled at 2026-01-23 05:30:26.633942+01:00)\n", - "2026-01-23 05:30:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:26 CET)\" executed successfully\n", - "2026-01-23 05:30:29,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:32 CET)\" (scheduled at 2026-01-23 05:30:32.132962+01:00)\n", - "2026-01-23 05:30:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:32 CET)\" executed successfully\n", - "2026-01-23 05:30:34,142 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:34 CET)\" (scheduled at 2026-01-23 05:30:34.010875+01:00)\n", - "2026-01-23 05:30:34,267 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94604 | 4952.58 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06504 | 4952.58 |\n", - "| H1 | uptrend | 714.46 | 22.266 | 2.38621 | 4952.58 |\n", - "| M30 | uptrend | 702.78 | 14.422 | 1.52032 | 4952.58 |\n", - "| M15 | uptrend | 716.66 | 8.996 | 0.967058 | 4952.58 |\n", - "| M5 | uptrend | 1053.97 | 4.2508 | 0.672035 | 4952.58 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276541.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:30:39,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:49,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:30:59,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:31:09,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:31:19,986 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:31:26,809 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:26 CET)\" (scheduled at 2026-01-23 05:31:26.633942+01:00)\n", - "2026-01-23 05:31:26,809 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:26 CET)\" executed successfully\n", - "2026-01-23 05:31:30,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:31:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:32 CET)\" (scheduled at 2026-01-23 05:31:32.132962+01:00)\n", - "2026-01-23 05:31:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:32 CET)\" executed successfully\n", - "2026-01-23 05:31:34,108 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:34 CET)\" (scheduled at 2026-01-23 05:31:34.010875+01:00)\n", - "2026-01-23 05:31:34,258 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94626 | 4953.51 |\n", - "| H4 | uptrend | 472.34 | 43.2634 | 3.06526 | 4953.51 |\n", - "| H1 | uptrend | 713.79 | 22.2889 | 2.38644 | 4953.51 |\n", - "| M30 | uptrend | 699.79 | 14.4856 | 1.52054 | 4953.51 |\n", - "| M15 | uptrend | 711.79 | 9.0596 | 0.967277 | 4953.51 |\n", - "| M5 | uptrend | 1038.78 | 4.3144 | 0.672254 | 4953.51 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.17)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275338.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:31:40,035 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:31:50,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:00,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:10,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:20,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:26,807 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:26 CET)\" (scheduled at 2026-01-23 05:32:26.633942+01:00)\n", - "2026-01-23 05:32:26,807 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:26 CET)\" executed successfully\n", - "2026-01-23 05:32:30,171 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:32,279 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:32 CET)\" (scheduled at 2026-01-23 05:32:32.132962+01:00)\n", - "2026-01-23 05:32:32,279 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:32 CET)\" executed successfully\n", - "2026-01-23 05:32:34,043 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:34 CET)\" (scheduled at 2026-01-23 05:32:34.010875+01:00)\n", - "2026-01-23 05:32:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94592 | 4952.08 |\n", - "| H4 | uptrend | 472.29 | 43.2634 | 3.06492 | 4952.08 |\n", - "| H1 | uptrend | 713.69 | 22.2889 | 2.3861 | 4952.08 |\n", - "| M30 | uptrend | 698.12 | 14.517 | 1.5202 | 4952.08 |\n", - "| M15 | uptrend | 709.08 | 9.091 | 0.96694 | 4952.08 |\n", - "| M5 | uptrend | 1030.75 | 4.3458 | 0.671917 | 4952.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.14)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 274707.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:32:40,195 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:32:50,209 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:00,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:10,264 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:20,289 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:26 CET)\" (scheduled at 2026-01-23 05:33:26.633942+01:00)\n", - "2026-01-23 05:33:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:26 CET)\" executed successfully\n", - "2026-01-23 05:33:30,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:32 CET)\" (scheduled at 2026-01-23 05:33:32.132962+01:00)\n", - "2026-01-23 05:33:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:32 CET)\" executed successfully\n", - "2026-01-23 05:33:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:34 CET)\" (scheduled at 2026-01-23 05:33:34.010875+01:00)\n", - "2026-01-23 05:33:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94602 | 4952.53 |\n", - "| H4 | uptrend | 472.31 | 43.2634 | 3.06503 | 4952.53 |\n", - "| H1 | uptrend | 713.72 | 22.2889 | 2.3862 | 4952.53 |\n", - "| M30 | uptrend | 698.17 | 14.517 | 1.5203 | 4952.53 |\n", - "| M15 | uptrend | 709.16 | 9.091 | 0.967046 | 4952.53 |\n", - "| M5 | uptrend | 1030.91 | 4.3458 | 0.672023 | 4952.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 274726.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:33:40,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:33:50,355 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:00,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:10,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:20,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:26,697 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:26 CET)\" (scheduled at 2026-01-23 05:34:26.633942+01:00)\n", - "2026-01-23 05:34:26,705 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:26 CET)\" executed successfully\n", - "2026-01-23 05:34:30,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:32 CET)\" (scheduled at 2026-01-23 05:34:32.132962+01:00)\n", - "2026-01-23 05:34:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:32 CET)\" executed successfully\n", - "2026-01-23 05:34:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:34 CET)\" (scheduled at 2026-01-23 05:34:34.010875+01:00)\n", - "2026-01-23 05:34:34,226 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94629 | 4953.66 |\n", - "| H4 | uptrend | 472.35 | 43.2634 | 3.0653 | 4953.66 |\n", - "| H1 | uptrend | 713.8 | 22.2889 | 2.38646 | 4953.64 |\n", - "| M30 | uptrend | 698.29 | 14.517 | 1.52057 | 4953.64 |\n", - "| M15 | uptrend | 709.35 | 9.091 | 0.967308 | 4953.64 |\n", - "| M5 | uptrend | 1031.32 | 4.3458 | 0.672285 | 4953.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.18)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 274774.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:34:40,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:34:50,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:00,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:10,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:20,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:26 CET)\" (scheduled at 2026-01-23 05:35:26.633942+01:00)\n", - "2026-01-23 05:35:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:26 CET)\" executed successfully\n", - "2026-01-23 05:35:30,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:32 CET)\" (scheduled at 2026-01-23 05:35:32.132962+01:00)\n", - "2026-01-23 05:35:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:32 CET)\" executed successfully\n", - "2026-01-23 05:35:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:34 CET)\" (scheduled at 2026-01-23 05:35:34.010875+01:00)\n", - "2026-01-23 05:35:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94643 | 4954.26 |\n", - "| H4 | uptrend | 472.37 | 43.2634 | 3.06544 | 4954.26 |\n", - "| H1 | uptrend | 712.88 | 22.3189 | 2.38661 | 4954.26 |\n", - "| M30 | uptrend | 696.92 | 14.547 | 1.52071 | 4954.26 |\n", - "| M15 | uptrend | 707.13 | 9.121 | 0.967455 | 4954.26 |\n", - "| M5 | uptrend | 1061.88 | 4.1202 | 0.656273 | 4954.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.19)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275664.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:35:40,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:35:50,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:00,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:10,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:20,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:26 CET)\" (scheduled at 2026-01-23 05:36:26.633942+01:00)\n", - "2026-01-23 05:36:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:26 CET)\" executed successfully\n", - "2026-01-23 05:36:30,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:32,243 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:32 CET)\" (scheduled at 2026-01-23 05:36:32.132962+01:00)\n", - "2026-01-23 05:36:32,243 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:32 CET)\" executed successfully\n", - "2026-01-23 05:36:34,134 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:34 CET)\" (scheduled at 2026-01-23 05:36:34.010875+01:00)\n", - "2026-01-23 05:36:34,288 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94675 | 4955.62 |\n", - "| H4 | uptrend | 472.42 | 43.2634 | 3.06576 | 4955.62 |\n", - "| H1 | uptrend | 709.71 | 22.4217 | 2.38693 | 4955.62 |\n", - "| M30 | uptrend | 692.17 | 14.6499 | 1.52103 | 4955.62 |\n", - "| M15 | uptrend | 699.47 | 9.2239 | 0.967776 | 4955.62 |\n", - "| M5 | uptrend | 1036.53 | 4.223 | 0.656595 | 4955.62 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 273496.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:36:40,779 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:36:50,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:00,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:10,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:20,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:26 CET)\" (scheduled at 2026-01-23 05:37:26.633942+01:00)\n", - "2026-01-23 05:37:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:26 CET)\" executed successfully\n", - "2026-01-23 05:37:30,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:32 CET)\" (scheduled at 2026-01-23 05:37:32.132962+01:00)\n", - "2026-01-23 05:37:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:32 CET)\" executed successfully\n", - "2026-01-23 05:37:34,430 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:34 CET)\" (scheduled at 2026-01-23 05:37:34.010875+01:00)\n", - "2026-01-23 05:37:34,571 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94646 | 4954.4 |\n", - "| H4 | uptrend | 472.37 | 43.2634 | 3.06547 | 4954.4 |\n", - "| H1 | uptrend | 709.51 | 22.4253 | 2.38665 | 4954.4 |\n", - "| M30 | uptrend | 691.87 | 14.6535 | 1.52075 | 4954.4 |\n", - "| M15 | uptrend | 698.99 | 9.2274 | 0.967488 | 4954.4 |\n", - "| M5 | uptrend | 1035.2 | 4.2266 | 0.656307 | 4954.4 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 273367.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:37:40,919 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:37:50,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:00,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:10,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:21,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:26,826 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:26 CET)\" (scheduled at 2026-01-23 05:38:26.633942+01:00)\n", - "2026-01-23 05:38:26,826 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:26 CET)\" executed successfully\n", - "2026-01-23 05:38:31,042 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:32 CET)\" (scheduled at 2026-01-23 05:38:32.132962+01:00)\n", - "2026-01-23 05:38:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:32 CET)\" executed successfully\n", - "2026-01-23 05:38:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:34 CET)\" (scheduled at 2026-01-23 05:38:34.010875+01:00)\n", - "2026-01-23 05:38:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94645 | 4954.35 |\n", - "| H4 | uptrend | 472.37 | 43.2634 | 3.06546 | 4954.35 |\n", - "| H1 | uptrend | 709.51 | 22.4253 | 2.38663 | 4954.35 |\n", - "| M30 | uptrend | 691.87 | 14.6535 | 1.52073 | 4954.35 |\n", - "| M15 | uptrend | 698.99 | 9.2274 | 0.967476 | 4954.35 |\n", - "| M5 | uptrend | 1035.18 | 4.2266 | 0.656295 | 4954.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.20)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 273365.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:38:41,065 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:38:51,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:01,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:11,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:21,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:26 CET)\" (scheduled at 2026-01-23 05:39:26.633942+01:00)\n", - "2026-01-23 05:39:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:26 CET)\" executed successfully\n", - "2026-01-23 05:39:31,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:32 CET)\" (scheduled at 2026-01-23 05:39:32.132962+01:00)\n", - "2026-01-23 05:39:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:32 CET)\" executed successfully\n", - "2026-01-23 05:39:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:34 CET)\" (scheduled at 2026-01-23 05:39:34.010875+01:00)\n", - "2026-01-23 05:39:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94679 | 4955.76 |\n", - "| H4 | uptrend | 472.42 | 43.2634 | 3.06579 | 4955.76 |\n", - "| H1 | uptrend | 709.61 | 22.4253 | 2.38697 | 4955.76 |\n", - "| M30 | uptrend | 692.02 | 14.6535 | 1.52107 | 4955.76 |\n", - "| M15 | uptrend | 699.23 | 9.2274 | 0.967809 | 4955.76 |\n", - "| M5 | uptrend | 1035.7 | 4.2266 | 0.656628 | 4955.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 273426.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:39:34,807 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 06:39:34 CET)\" (scheduled at 2026-01-23 05:39:34.806528+01:00)\n", - "2026-01-23 05:39:34,822 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 06:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[05:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:39:41,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:39:51,237 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:01,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:11,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:21,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:26 CET)\" (scheduled at 2026-01-23 05:40:26.633942+01:00)\n", - "2026-01-23 05:40:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:26 CET)\" executed successfully\n", - "2026-01-23 05:40:31,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:32 CET)\" (scheduled at 2026-01-23 05:40:32.132962+01:00)\n", - "2026-01-23 05:40:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:32 CET)\" executed successfully\n", - "2026-01-23 05:40:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:34 CET)\" (scheduled at 2026-01-23 05:40:34.010875+01:00)\n", - "2026-01-23 05:40:34,161 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94696 | 4956.48 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06596 | 4956.48 |\n", - "| H1 | uptrend | 705.7 | 22.551 | 2.38714 | 4956.48 |\n", - "| M30 | uptrend | 686.21 | 14.7792 | 1.52124 | 4956.48 |\n", - "| M15 | uptrend | 689.95 | 9.3531 | 0.967979 | 4956.48 |\n", - "| M5 | uptrend | 1045.97 | 4.0944 | 0.642388 | 4956.48 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 272427.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:40:41,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:40:51,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:01,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:11,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:21,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:27,130 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:26 CET)\" (scheduled at 2026-01-23 05:41:26.633942+01:00)\n", - "2026-01-23 05:41:27,130 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:26 CET)\" executed successfully\n", - "2026-01-23 05:41:31,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:32,165 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:32 CET)\" (scheduled at 2026-01-23 05:41:32.132962+01:00)\n", - "2026-01-23 05:41:32,165 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:32 CET)\" executed successfully\n", - "2026-01-23 05:41:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:34 CET)\" (scheduled at 2026-01-23 05:41:34.010875+01:00)\n", - "2026-01-23 05:41:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94693 | 4956.35 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06593 | 4956.35 |\n", - "| H1 | uptrend | 704.58 | 22.5867 | 2.38711 | 4956.35 |\n", - "| M30 | uptrend | 684.54 | 14.8149 | 1.52121 | 4956.35 |\n", - "| M15 | uptrend | 687.3 | 9.3889 | 0.967948 | 4956.35 |\n", - "| M5 | uptrend | 1036.88 | 4.1301 | 0.642357 | 4956.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 271658.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:41:41,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:41:51,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:01,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:11,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:21,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:26,654 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:26 CET)\" (scheduled at 2026-01-23 05:42:26.633942+01:00)\n", - "2026-01-23 05:42:26,654 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:26 CET)\" executed successfully\n", - "2026-01-23 05:42:31,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:32 CET)\" (scheduled at 2026-01-23 05:42:32.132962+01:00)\n", - "2026-01-23 05:42:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:32 CET)\" executed successfully\n", - "2026-01-23 05:42:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:34 CET)\" (scheduled at 2026-01-23 05:42:34.010875+01:00)\n", - "2026-01-23 05:42:34,260 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94722 | 4957.61 |\n", - "| H4 | uptrend | 472.49 | 43.2634 | 3.06623 | 4957.61 |\n", - "| H1 | uptrend | 704.66 | 22.5867 | 2.3874 | 4957.61 |\n", - "| M30 | uptrend | 684.67 | 14.8149 | 1.5215 | 4957.61 |\n", - "| M15 | uptrend | 687.51 | 9.3889 | 0.968246 | 4957.61 |\n", - "| M5 | uptrend | 1037.36 | 4.1301 | 0.642655 | 4957.61 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 271713.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:42:41,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:42:51,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:01,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:11,754 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:21,780 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:26,668 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:26 CET)\" (scheduled at 2026-01-23 05:43:26.633942+01:00)\n", - "2026-01-23 05:43:26,668 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:26 CET)\" executed successfully\n", - "2026-01-23 05:43:31,799 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:32 CET)\" (scheduled at 2026-01-23 05:43:32.132962+01:00)\n", - "2026-01-23 05:43:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:32 CET)\" executed successfully\n", - "2026-01-23 05:43:34,046 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:34 CET)\" (scheduled at 2026-01-23 05:43:34.010875+01:00)\n", - "2026-01-23 05:43:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94685 | 4956.05 |\n", - "| H4 | uptrend | 472.43 | 43.2634 | 3.06586 | 4956.05 |\n", - "| H1 | uptrend | 704.55 | 22.5867 | 2.38704 | 4956.05 |\n", - "| M30 | uptrend | 684.51 | 14.8149 | 1.52114 | 4956.05 |\n", - "| M15 | uptrend | 687.25 | 9.3889 | 0.967878 | 4956.05 |\n", - "| M5 | uptrend | 1036.23 | 4.1322 | 0.642286 | 4956.05 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 271624.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:43:41,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:43:51,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:01,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:11,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:21,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:26 CET)\" (scheduled at 2026-01-23 05:44:26.633942+01:00)\n", - "2026-01-23 05:44:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:26 CET)\" executed successfully\n", - "2026-01-23 05:44:31,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:32,151 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:32 CET)\" (scheduled at 2026-01-23 05:44:32.132962+01:00)\n", - "2026-01-23 05:44:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:32 CET)\" executed successfully\n", - "2026-01-23 05:44:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:34 CET)\" (scheduled at 2026-01-23 05:44:34.010875+01:00)\n", - "2026-01-23 05:44:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94707 | 4956.94 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06607 | 4956.94 |\n", - "| H1 | uptrend | 704.62 | 22.5867 | 2.38725 | 4956.94 |\n", - "| M30 | uptrend | 684.6 | 14.8149 | 1.52135 | 4956.94 |\n", - "| M15 | uptrend | 687.4 | 9.3889 | 0.968088 | 4956.94 |\n", - "| M5 | uptrend | 1034.06 | 4.1422 | 0.642496 | 4956.94 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 271562.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:44:41,970 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:44:51,999 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:02,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:12,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:22,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:26 CET)\" (scheduled at 2026-01-23 05:45:26.633942+01:00)\n", - "2026-01-23 05:45:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:26 CET)\" executed successfully\n", - "2026-01-23 05:45:32,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:32,162 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:32 CET)\" (scheduled at 2026-01-23 05:45:32.132962+01:00)\n", - "2026-01-23 05:45:32,165 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:32 CET)\" executed successfully\n", - "2026-01-23 05:45:34,042 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:34 CET)\" (scheduled at 2026-01-23 05:45:34.010875+01:00)\n", - "2026-01-23 05:45:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94709 | 4957.04 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.0661 | 4957.04 |\n", - "| H1 | uptrend | 704.62 | 22.5867 | 2.38727 | 4957.04 |\n", - "| M30 | uptrend | 684.61 | 14.8149 | 1.52137 | 4957.04 |\n", - "| M15 | uptrend | 758.25 | 8.7847 | 0.999142 | 4957.04 |\n", - "| M5 | uptrend | 1070.86 | 3.9128 | 0.628506 | 4957.04 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 277286.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:45:42,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:45:52,141 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:02,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:12,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:22,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:26 CET)\" (scheduled at 2026-01-23 05:46:26.633942+01:00)\n", - "2026-01-23 05:46:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:26 CET)\" executed successfully\n", - "2026-01-23 05:46:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:32 CET)\" (scheduled at 2026-01-23 05:46:32.132962+01:00)\n", - "2026-01-23 05:46:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:32 CET)\" executed successfully\n", - "2026-01-23 05:46:32,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:34 CET)\" (scheduled at 2026-01-23 05:46:34.010875+01:00)\n", - "2026-01-23 05:46:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94669 | 4955.35 |\n", - "| H4 | uptrend | 472.41 | 43.2634 | 3.0657 | 4955.35 |\n", - "| H1 | uptrend | 704.51 | 22.5867 | 2.38687 | 4955.35 |\n", - "| M30 | uptrend | 684.43 | 14.8149 | 1.52097 | 4955.35 |\n", - "| M15 | uptrend | 749.95 | 8.8783 | 0.998742 | 4955.35 |\n", - "| M5 | uptrend | 1045.18 | 4.0064 | 0.628107 | 4955.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.22)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275732.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:46:42,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:46:52,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:02,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:12,324 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:22,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:26 CET)\" (scheduled at 2026-01-23 05:47:26.633942+01:00)\n", - "2026-01-23 05:47:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:26 CET)\" executed successfully\n", - "2026-01-23 05:47:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:32 CET)\" (scheduled at 2026-01-23 05:47:32.132962+01:00)\n", - "2026-01-23 05:47:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:32 CET)\" executed successfully\n", - "2026-01-23 05:47:32,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:34 CET)\" (scheduled at 2026-01-23 05:47:34.010875+01:00)\n", - "2026-01-23 05:47:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94692 | 4956.33 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06593 | 4956.33 |\n", - "| H1 | uptrend | 704.57 | 22.5867 | 2.3871 | 4956.33 |\n", - "| M30 | uptrend | 684.54 | 14.8149 | 1.5212 | 4956.33 |\n", - "| M15 | uptrend | 750.13 | 8.8783 | 0.998974 | 4956.33 |\n", - "| M5 | uptrend | 1045.57 | 4.0064 | 0.628339 | 4956.33 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275775.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:47:42,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:47:52,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:02,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:12,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:22,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:26 CET)\" (scheduled at 2026-01-23 05:48:26.633942+01:00)\n", - "2026-01-23 05:48:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:26 CET)\" executed successfully\n", - "2026-01-23 05:48:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:32 CET)\" (scheduled at 2026-01-23 05:48:32.132962+01:00)\n", - "2026-01-23 05:48:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:32 CET)\" executed successfully\n", - "2026-01-23 05:48:32,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:34,039 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:34 CET)\" (scheduled at 2026-01-23 05:48:34.010875+01:00)\n", - "2026-01-23 05:48:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.9471 | 4957.08 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06611 | 4957.08 |\n", - "| H1 | uptrend | 704.63 | 22.5867 | 2.38728 | 4957.08 |\n", - "| M30 | uptrend | 684.62 | 14.8149 | 1.52138 | 4957.08 |\n", - "| M15 | uptrend | 746 | 8.929 | 0.999151 | 4957.08 |\n", - "| M5 | uptrend | 1032.79 | 4.0571 | 0.628516 | 4957.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275030.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:48:42,809 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:48:52,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:02,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:12,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:22,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:26 CET)\" (scheduled at 2026-01-23 05:49:26.633942+01:00)\n", - "2026-01-23 05:49:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:26 CET)\" executed successfully\n", - "2026-01-23 05:49:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:32 CET)\" (scheduled at 2026-01-23 05:49:32.132962+01:00)\n", - "2026-01-23 05:49:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:32 CET)\" executed successfully\n", - "2026-01-23 05:49:32,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:34 CET)\" (scheduled at 2026-01-23 05:49:34.010875+01:00)\n", - "2026-01-23 05:49:34,199 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94724 | 4957.68 |\n", - "| H4 | uptrend | 472.49 | 43.2634 | 3.06624 | 4957.67 |\n", - "| H1 | uptrend | 704.67 | 22.5867 | 2.38742 | 4957.67 |\n", - "| M30 | uptrend | 684.68 | 14.8149 | 1.52152 | 4957.67 |\n", - "| M15 | uptrend | 746.1 | 8.929 | 0.999291 | 4957.67 |\n", - "| M5 | uptrend | 1033.02 | 4.0571 | 0.628655 | 4957.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 275056.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:49:42,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:49:52,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:03,001 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:13,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:23,048 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:26 CET)\" (scheduled at 2026-01-23 05:50:26.633942+01:00)\n", - "2026-01-23 05:50:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:26 CET)\" executed successfully\n", - "2026-01-23 05:50:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:32 CET)\" (scheduled at 2026-01-23 05:50:32.132962+01:00)\n", - "2026-01-23 05:50:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:32 CET)\" executed successfully\n", - "2026-01-23 05:50:33,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:34 CET)\" (scheduled at 2026-01-23 05:50:34.010875+01:00)\n", - "2026-01-23 05:50:34,194 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.9473 | 4957.95 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06631 | 4957.95 |\n", - "| H1 | uptrend | 704.69 | 22.5867 | 2.38748 | 4957.95 |\n", - "| M30 | uptrend | 684.71 | 14.8149 | 1.52158 | 4957.95 |\n", - "| M15 | uptrend | 745.74 | 8.934 | 0.999357 | 4957.95 |\n", - "| M5 | uptrend | 1081.51 | 3.7915 | 0.615088 | 4957.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276978.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:50:43,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:50:53,121 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:03,147 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:13,168 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:23,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:26 CET)\" (scheduled at 2026-01-23 05:51:26.633942+01:00)\n", - "2026-01-23 05:51:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:26 CET)\" executed successfully\n", - "2026-01-23 05:51:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:32 CET)\" (scheduled at 2026-01-23 05:51:32.132962+01:00)\n", - "2026-01-23 05:51:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:32 CET)\" executed successfully\n", - "2026-01-23 05:51:33,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:34,029 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:34 CET)\" (scheduled at 2026-01-23 05:51:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:51:34,578 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94727 | 4957.83 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06629 | 4957.85 |\n", - "| H1 | uptrend | 704.28 | 22.5996 | 2.38746 | 4957.85 |\n", - "| M30 | uptrend | 684.11 | 14.8277 | 1.52156 | 4957.85 |\n", - "| M15 | uptrend | 744.65 | 8.9468 | 0.999333 | 4957.85 |\n", - "| M5 | uptrend | 1077.81 | 3.8044 | 0.615064 | 4957.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276676.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:51:43,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:51:53,268 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:03,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:13,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:23,338 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:26 CET)\" (scheduled at 2026-01-23 05:52:26.633942+01:00)\n", - "2026-01-23 05:52:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:26 CET)\" executed successfully\n", - "2026-01-23 05:52:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:32 CET)\" (scheduled at 2026-01-23 05:52:32.132962+01:00)\n", - "2026-01-23 05:52:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:32 CET)\" executed successfully\n", - "2026-01-23 05:52:33,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:34,155 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:34 CET)\" (scheduled at 2026-01-23 05:52:34.010875+01:00)\n", - "2026-01-23 05:52:34,352 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94728 | 4957.86 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06629 | 4957.86 |\n", - "| H1 | uptrend | 704.15 | 22.6039 | 2.38747 | 4957.88 |\n", - "| M30 | uptrend | 683.91 | 14.832 | 1.52157 | 4957.88 |\n", - "| M15 | uptrend | 744.3 | 8.9511 | 0.99934 | 4957.88 |\n", - "| M5 | uptrend | 1076.62 | 3.8087 | 0.615074 | 4957.89 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276578.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:52:43,404 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:52:53,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:03,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:13,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:23,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:26 CET)\" (scheduled at 2026-01-23 05:53:26.633942+01:00)\n", - "2026-01-23 05:53:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:26 CET)\" executed successfully\n", - "2026-01-23 05:53:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:32 CET)\" (scheduled at 2026-01-23 05:53:32.132962+01:00)\n", - "2026-01-23 05:53:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:32 CET)\" executed successfully\n", - "2026-01-23 05:53:33,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:34,161 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:34 CET)\" (scheduled at 2026-01-23 05:53:34.010875+01:00)\n", - "2026-01-23 05:53:34,329 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94723 | 4957.62 |\n", - "| H4 | uptrend | 472.49 | 43.2634 | 3.06623 | 4957.62 |\n", - "| H1 | uptrend | 704.13 | 22.6039 | 2.38741 | 4957.62 |\n", - "| M30 | uptrend | 683.88 | 14.832 | 1.52151 | 4957.62 |\n", - "| M15 | uptrend | 744.25 | 8.9511 | 0.999279 | 4957.62 |\n", - "| M5 | uptrend | 1074.09 | 3.8173 | 0.61501 | 4957.62 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276469.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:53:43,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:53:53,568 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:03,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:13,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:23,641 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:26 CET)\" (scheduled at 2026-01-23 05:54:26.633942+01:00)\n", - "2026-01-23 05:54:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:26 CET)\" executed successfully\n", - "2026-01-23 05:54:32,153 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:32 CET)\" (scheduled at 2026-01-23 05:54:32.132962+01:00)\n", - "2026-01-23 05:54:32,153 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:32 CET)\" executed successfully\n", - "2026-01-23 05:54:33,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:34,092 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:34 CET)\" (scheduled at 2026-01-23 05:54:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:54:34,345 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94732 | 4958.01 |\n", - "| H4 | uptrend | 472.51 | 43.2634 | 3.06632 | 4958.01 |\n", - "| H1 | uptrend | 704.16 | 22.6039 | 2.3875 | 4958.01 |\n", - "| M30 | uptrend | 683.93 | 14.832 | 1.5216 | 4958.01 |\n", - "| M15 | uptrend | 744.32 | 8.9511 | 0.999371 | 4958.01 |\n", - "| M5 | uptrend | 1068.25 | 3.8387 | 0.615102 | 4958.01 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276247.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:54:43,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:54:53,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:03,736 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:13,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:23,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:26,694 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:26 CET)\" (scheduled at 2026-01-23 05:55:26.633942+01:00)\n", - "2026-01-23 05:55:26,694 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:26 CET)\" executed successfully\n", - "2026-01-23 05:55:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:32 CET)\" (scheduled at 2026-01-23 05:55:32.132962+01:00)\n", - "2026-01-23 05:55:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:32 CET)\" executed successfully\n", - "2026-01-23 05:55:33,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:34,180 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:34 CET)\" (scheduled at 2026-01-23 05:55:34.010875+01:00)\n", - "2026-01-23 05:55:34,342 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94713 | 4957.21 |\n", - "| H4 | uptrend | 472.48 | 43.2634 | 3.06614 | 4957.21 |\n", - "| H1 | uptrend | 703.83 | 22.6124 | 2.38731 | 4957.21 |\n", - "| M30 | uptrend | 683.45 | 14.8406 | 1.52141 | 4957.21 |\n", - "| M15 | uptrend | 743.47 | 8.9597 | 0.999182 | 4957.21 |\n", - "| M5 | uptrend | 1109.58 | 3.6289 | 0.603976 | 4957.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 277776.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:55:43,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:55:53,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:03,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:13,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:23,939 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:26,811 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:26 CET)\" (scheduled at 2026-01-23 05:56:26.633942+01:00)\n", - "2026-01-23 05:56:26,811 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:26 CET)\" executed successfully\n", - "2026-01-23 05:56:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:32 CET)\" (scheduled at 2026-01-23 05:56:32.132962+01:00)\n", - "2026-01-23 05:56:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:32 CET)\" executed successfully\n", - "2026-01-23 05:56:33,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:34,072 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:34 CET)\" (scheduled at 2026-01-23 05:56:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:56:34,284 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94686 | 4956.09 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06587 | 4956.09 |\n", - "| H1 | uptrend | 703.76 | 22.6124 | 2.38704 | 4956.09 |\n", - "| M30 | uptrend | 683.33 | 14.8406 | 1.52114 | 4956.09 |\n", - "| M15 | uptrend | 743.27 | 8.9597 | 0.998917 | 4956.09 |\n", - "| M5 | uptrend | 1082.04 | 3.7196 | 0.603712 | 4956.09 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276643.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:56:43,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:56:54,016 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:57:04,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:57:14,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:57:24,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:57:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:26 CET)\" (scheduled at 2026-01-23 05:57:26.633942+01:00)\n", - "2026-01-23 05:57:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:26 CET)\" executed successfully\n", - "2026-01-23 05:57:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:32 CET)\" (scheduled at 2026-01-23 05:57:32.132962+01:00)\n", - "2026-01-23 05:57:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:32 CET)\" executed successfully\n", - "2026-01-23 05:57:34,061 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:34 CET)\" (scheduled at 2026-01-23 05:57:34.010875+01:00)\n", - "2026-01-23 05:57:34,113 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94692 | 4956.33 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06593 | 4956.33 |\n", - "| H1 | uptrend | 703.77 | 22.6124 | 2.3871 | 4956.33 |\n", - "| M30 | uptrend | 683.35 | 14.8406 | 1.5212 | 4956.33 |\n", - "| M15 | uptrend | 743.31 | 8.9597 | 0.998974 | 4956.33 |\n", - "| M5 | uptrend | 1082.14 | 3.7196 | 0.603769 | 4956.33 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276654.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:57:34,274 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:57:44,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:57:54,159 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:04,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:14,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:24,231 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:26,831 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:26 CET)\" (scheduled at 2026-01-23 05:58:26.633942+01:00)\n", - "2026-01-23 05:58:26,831 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:26 CET)\" executed successfully\n", - "2026-01-23 05:58:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:32 CET)\" (scheduled at 2026-01-23 05:58:32.132962+01:00)\n", - "2026-01-23 05:58:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:32 CET)\" executed successfully\n", - "2026-01-23 05:58:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:34 CET)\" (scheduled at 2026-01-23 05:58:34.010875+01:00)\n", - "2026-01-23 05:58:34,200 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 05:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94702 | 4956.75 |\n", - "| H4 | uptrend | 472.46 | 43.2634 | 3.06603 | 4956.75 |\n", - "| H1 | uptrend | 703.8 | 22.6124 | 2.3872 | 4956.75 |\n", - "| M30 | uptrend | 683.4 | 14.8406 | 1.5213 | 4956.75 |\n", - "| M15 | uptrend | 743.38 | 8.9597 | 0.999068 | 4956.73 |\n", - "| M5 | uptrend | 1082.31 | 3.7196 | 0.603863 | 4956.73 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276673.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:58:34,267 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:44,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:58:54,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:04,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:14,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:24,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:26 CET)\" (scheduled at 2026-01-23 05:59:26.633942+01:00)\n", - "2026-01-23 05:59:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:26 CET)\" executed successfully\n", - "2026-01-23 05:59:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:32 CET)\" (scheduled at 2026-01-23 05:59:32.132962+01:00)\n", - "2026-01-23 05:59:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:32 CET)\" executed successfully\n", - "2026-01-23 05:59:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:34 CET)\" (scheduled at 2026-01-23 05:59:34.010875+01:00)\n", - "2026-01-23 05:59:34,189 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94698 | 4956.57 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06598 | 4956.57 |\n", - "| H1 | uptrend | 703.79 | 22.6124 | 2.38716 | 4956.57 |\n", - "| M30 | uptrend | 683.38 | 14.8406 | 1.52126 | 4956.57 |\n", - "| M15 | uptrend | 743.35 | 8.9597 | 0.999031 | 4956.57 |\n", - "| M5 | uptrend | 1082.25 | 3.7196 | 0.603825 | 4956.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 276665.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 05:59:34,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:44,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 05:59:54,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:00,024 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 06:30:00 CET)\" (scheduled at 2026-01-23 06:00:00+01:00)\n", - "2026-01-23 06:00:00,039 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 06:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 06:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 22.75 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:00:04,483 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:14,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:24,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:26,659 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:26 CET)\" (scheduled at 2026-01-23 06:00:26.633942+01:00)\n", - "2026-01-23 06:00:26,659 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:26 CET)\" executed successfully\n", - "2026-01-23 06:00:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:32 CET)\" (scheduled at 2026-01-23 06:00:32.132962+01:00)\n", - "2026-01-23 06:00:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:32 CET)\" executed successfully\n", - "2026-01-23 06:00:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:34 CET)\" (scheduled at 2026-01-23 06:00:34.010875+01:00)\n", - "2026-01-23 06:00:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94689 | 4956.22 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.0659 | 4956.22 |\n", - "| H1 | uptrend | 765.91 | 21.0772 | 2.42149 | 4956.22 |\n", - "| M30 | uptrend | 731.23 | 13.8606 | 1.52029 | 4956.22 |\n", - "| M15 | uptrend | 818.44 | 8.3997 | 1.0312 | 4956.22 |\n", - "| M5 | uptrend | 1120.82 | 3.5339 | 0.594128 | 4956.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292752.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:00:34,574 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:44,599 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:00:54,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:04,643 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:14,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:24,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:26,731 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:26 CET)\" (scheduled at 2026-01-23 06:01:26.633942+01:00)\n", - "2026-01-23 06:01:26,731 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:26 CET)\" executed successfully\n", - "2026-01-23 06:01:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:32 CET)\" (scheduled at 2026-01-23 06:01:32.132962+01:00)\n", - "2026-01-23 06:01:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:32 CET)\" executed successfully\n", - "2026-01-23 06:01:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:34 CET)\" (scheduled at 2026-01-23 06:01:34.010875+01:00)\n", - "2026-01-23 06:01:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94708 | 4956.99 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06608 | 4956.99 |\n", - "| H1 | uptrend | 762.02 | 21.1865 | 2.42167 | 4956.99 |\n", - "| M30 | uptrend | 725.6 | 13.9699 | 1.52047 | 4956.99 |\n", - "| M15 | uptrend | 808.07 | 8.509 | 1.03138 | 4956.99 |\n", - "| M5 | uptrend | 1087.53 | 3.6432 | 0.59431 | 4956.99 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289960.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:01:34,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:44,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:01:54,772 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:04,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:14,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:24,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:26 CET)\" (scheduled at 2026-01-23 06:02:26.633942+01:00)\n", - "2026-01-23 06:02:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:26 CET)\" executed successfully\n", - "2026-01-23 06:02:32,501 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:32 CET)\" (scheduled at 2026-01-23 06:02:32.132962+01:00)\n", - "2026-01-23 06:02:32,501 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:32 CET)\" executed successfully\n", - "2026-01-23 06:02:34,189 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:34 CET)\" (scheduled at 2026-01-23 06:02:34.010875+01:00)\n", - "2026-01-23 06:02:34,345 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94707 | 4956.98 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06608 | 4956.98 |\n", - "| H1 | uptrend | 761.84 | 21.1915 | 2.42167 | 4956.98 |\n", - "| M30 | uptrend | 725.34 | 13.9749 | 1.52047 | 4956.98 |\n", - "| M15 | uptrend | 807.59 | 8.514 | 1.03138 | 4956.98 |\n", - "| M5 | uptrend | 1086.03 | 3.6482 | 0.594307 | 4956.98 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.26)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289833.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:02:34,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:44,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:02:54,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:04,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:14,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:25,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:26,730 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:26 CET)\" (scheduled at 2026-01-23 06:03:26.633942+01:00)\n", - "2026-01-23 06:03:26,730 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:26 CET)\" executed successfully\n", - "2026-01-23 06:03:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:32 CET)\" (scheduled at 2026-01-23 06:03:32.132962+01:00)\n", - "2026-01-23 06:03:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:32 CET)\" executed successfully\n", - "2026-01-23 06:03:34,055 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:34 CET)\" (scheduled at 2026-01-23 06:03:34.010875+01:00)\n", - "2026-01-23 06:03:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94692 | 4956.32 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06593 | 4956.32 |\n", - "| H1 | uptrend | 761.79 | 21.1915 | 2.42151 | 4956.32 |\n", - "| M30 | uptrend | 725.26 | 13.9749 | 1.52031 | 4956.32 |\n", - "| M15 | uptrend | 807.47 | 8.514 | 1.03122 | 4956.32 |\n", - "| M5 | uptrend | 1085.75 | 3.6482 | 0.594152 | 4956.32 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289802.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:03:35,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:45,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:03:55,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:05,361 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:15,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:25,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:27,053 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:26 CET)\" (scheduled at 2026-01-23 06:04:26.633942+01:00)\n", - "2026-01-23 06:04:27,053 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:26 CET)\" executed successfully\n", - "2026-01-23 06:04:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:32 CET)\" (scheduled at 2026-01-23 06:04:32.132962+01:00)\n", - "2026-01-23 06:04:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:32 CET)\" executed successfully\n", - "2026-01-23 06:04:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:34 CET)\" (scheduled at 2026-01-23 06:04:34.010875+01:00)\n", - "2026-01-23 06:04:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94687 | 4956.13 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06588 | 4956.13 |\n", - "| H1 | uptrend | 761.77 | 21.1915 | 2.42147 | 4956.13 |\n", - "| M30 | uptrend | 725.24 | 13.9749 | 1.52027 | 4956.13 |\n", - "| M15 | uptrend | 807.44 | 8.514 | 1.03118 | 4956.13 |\n", - "| M5 | uptrend | 1085.67 | 3.6482 | 0.594107 | 4956.13 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289793.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:04:35,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:46,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:04:56,241 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:06,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:16,272 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:26,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:26,729 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:26 CET)\" (scheduled at 2026-01-23 06:05:26.633942+01:00)\n", - "2026-01-23 06:05:26,731 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:26 CET)\" executed successfully\n", - "2026-01-23 06:05:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:32 CET)\" (scheduled at 2026-01-23 06:05:32.132962+01:00)\n", - "2026-01-23 06:05:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:32 CET)\" executed successfully\n", - "2026-01-23 06:05:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:34 CET)\" (scheduled at 2026-01-23 06:05:34.010875+01:00)\n", - "2026-01-23 06:05:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94695 | 4956.45 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06596 | 4956.45 |\n", - "| H1 | uptrend | 761.8 | 21.1915 | 2.42154 | 4956.45 |\n", - "| M30 | uptrend | 725.28 | 13.9749 | 1.52035 | 4956.45 |\n", - "| M15 | uptrend | 807.49 | 8.514 | 1.03125 | 4956.45 |\n", - "| M5 | uptrend | 1127.02 | 3.4547 | 0.584033 | 4956.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291457.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:05:36,317 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:46,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:05:56,354 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:06,375 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:16,402 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:26,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:26 CET)\" (scheduled at 2026-01-23 06:06:26.633942+01:00)\n", - "2026-01-23 06:06:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:26 CET)\" executed successfully\n", - "2026-01-23 06:06:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:32 CET)\" (scheduled at 2026-01-23 06:06:32.132962+01:00)\n", - "2026-01-23 06:06:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:32 CET)\" executed successfully\n", - "2026-01-23 06:06:34,266 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:34 CET)\" (scheduled at 2026-01-23 06:06:34.010875+01:00)\n", - "2026-01-23 06:06:34,446 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94689 | 4956.22 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.0659 | 4956.22 |\n", - "| H1 | uptrend | 761.78 | 21.1915 | 2.42149 | 4956.22 |\n", - "| M30 | uptrend | 725.25 | 13.9749 | 1.52029 | 4956.22 |\n", - "| M15 | uptrend | 807.45 | 8.514 | 1.0312 | 4956.22 |\n", - "| M5 | uptrend | 1115.61 | 3.4897 | 0.583979 | 4956.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 290993.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:06:36,448 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:46,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:06:56,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:06,519 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:16,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:26,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:26 CET)\" (scheduled at 2026-01-23 06:07:26.633942+01:00)\n", - "2026-01-23 06:07:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:26 CET)\" executed successfully\n", - "2026-01-23 06:07:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:32 CET)\" (scheduled at 2026-01-23 06:07:32.132962+01:00)\n", - "2026-01-23 06:07:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:32 CET)\" executed successfully\n", - "2026-01-23 06:07:34,041 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:34 CET)\" (scheduled at 2026-01-23 06:07:34.010875+01:00)\n", - "2026-01-23 06:07:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94717 | 4957.37 |\n", - "| H4 | uptrend | 472.48 | 43.2634 | 3.06617 | 4957.37 |\n", - "| H1 | uptrend | 761.4 | 21.2044 | 2.42176 | 4957.37 |\n", - "| M30 | uptrend | 724.71 | 13.9877 | 1.52056 | 4957.37 |\n", - "| M15 | uptrend | 806.45 | 8.5269 | 1.03147 | 4957.37 |\n", - "| M5 | uptrend | 1105.72 | 3.5226 | 0.58425 | 4957.37 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 290460.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:07:36,583 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:46,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:07:56,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:06,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:16,676 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:26,673 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:26 CET)\" (scheduled at 2026-01-23 06:08:26.633942+01:00)\n", - "2026-01-23 06:08:26,673 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:26 CET)\" executed successfully\n", - "2026-01-23 06:08:26,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:32 CET)\" (scheduled at 2026-01-23 06:08:32.132962+01:00)\n", - "2026-01-23 06:08:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:32 CET)\" executed successfully\n", - "2026-01-23 06:08:34,037 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:34 CET)\" (scheduled at 2026-01-23 06:08:34.010875+01:00)\n", - "2026-01-23 06:08:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94696 | 4956.51 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06597 | 4956.51 |\n", - "| H1 | uptrend | 761.34 | 21.2044 | 2.42156 | 4956.51 |\n", - "| M30 | uptrend | 724.62 | 13.9877 | 1.52036 | 4956.51 |\n", - "| M15 | uptrend | 806.29 | 8.5269 | 1.03127 | 4956.51 |\n", - "| M5 | uptrend | 1105.33 | 3.5226 | 0.584047 | 4956.51 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 290418.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:08:36,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:46,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:08:56,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:06,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:16,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:26,800 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:26 CET)\" (scheduled at 2026-01-23 06:09:26.633942+01:00)\n", - "2026-01-23 06:09:26,800 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:26 CET)\" executed successfully\n", - "2026-01-23 06:09:26,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:32 CET)\" (scheduled at 2026-01-23 06:09:32.132962+01:00)\n", - "2026-01-23 06:09:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:32 CET)\" executed successfully\n", - "2026-01-23 06:09:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:34 CET)\" (scheduled at 2026-01-23 06:09:34.010875+01:00)\n", - "2026-01-23 06:09:34,175 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94712 | 4957.15 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06612 | 4957.15 |\n", - "| H1 | uptrend | 761.39 | 21.2044 | 2.42171 | 4957.15 |\n", - "| M30 | uptrend | 724.69 | 13.9877 | 1.52051 | 4957.15 |\n", - "| M15 | uptrend | 806.41 | 8.5269 | 1.03142 | 4957.15 |\n", - "| M5 | uptrend | 1105.62 | 3.5226 | 0.584198 | 4957.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 290449.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:09:36,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:46,866 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:09:56,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:06,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:16,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:26 CET)\" (scheduled at 2026-01-23 06:10:26.633942+01:00)\n", - "2026-01-23 06:10:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:26 CET)\" executed successfully\n", - "2026-01-23 06:10:26,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:32 CET)\" (scheduled at 2026-01-23 06:10:32.132962+01:00)\n", - "2026-01-23 06:10:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:32 CET)\" executed successfully\n", - "2026-01-23 06:10:34,040 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:34 CET)\" (scheduled at 2026-01-23 06:10:34.010875+01:00)\n", - "2026-01-23 06:10:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94685 | 4956.03 |\n", - "| H4 | uptrend | 472.43 | 43.2634 | 3.06586 | 4956.03 |\n", - "| H1 | uptrend | 761.04 | 21.2115 | 2.42143 | 4955.99 |\n", - "| M30 | uptrend | 724.19 | 13.9949 | 1.52024 | 4956 |\n", - "| M15 | uptrend | 805.52 | 8.534 | 1.03115 | 4956 |\n", - "| M5 | uptrend | 1143.05 | 3.3476 | 0.573974 | 4955.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291816.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:10:36,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:46,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:10:57,019 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:07,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:17,054 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:26 CET)\" (scheduled at 2026-01-23 06:11:26.633942+01:00)\n", - "2026-01-23 06:11:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:26 CET)\" executed successfully\n", - "2026-01-23 06:11:27,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:32 CET)\" (scheduled at 2026-01-23 06:11:32.132962+01:00)\n", - "2026-01-23 06:11:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:32 CET)\" executed successfully\n", - "2026-01-23 06:11:34,037 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:34 CET)\" (scheduled at 2026-01-23 06:11:34.010875+01:00)\n", - "2026-01-23 06:11:34,180 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94679 | 4955.76 |\n", - "| H4 | uptrend | 472.42 | 43.2634 | 3.06579 | 4955.76 |\n", - "| H1 | uptrend | 761.03 | 21.2115 | 2.42138 | 4955.76 |\n", - "| M30 | uptrend | 724.16 | 13.9949 | 1.52018 | 4955.76 |\n", - "| M15 | uptrend | 805.47 | 8.534 | 1.03109 | 4955.76 |\n", - "| M5 | uptrend | 1130.16 | 3.3855 | 0.573919 | 4955.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291293.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:11:37,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:47,109 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:11:57,131 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:07,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:17,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:26 CET)\" (scheduled at 2026-01-23 06:12:26.633942+01:00)\n", - "2026-01-23 06:12:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:26 CET)\" executed successfully\n", - "2026-01-23 06:12:27,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:32 CET)\" (scheduled at 2026-01-23 06:12:32.132962+01:00)\n", - "2026-01-23 06:12:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:32 CET)\" executed successfully\n", - "2026-01-23 06:12:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:34 CET)\" (scheduled at 2026-01-23 06:12:34.010875+01:00)\n", - "2026-01-23 06:12:34,158 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94674 | 4955.55 |\n", - "| H4 | uptrend | 472.42 | 43.2634 | 3.06574 | 4955.55 |\n", - "| H1 | uptrend | 761.01 | 21.2115 | 2.42133 | 4955.55 |\n", - "| M30 | uptrend | 724.14 | 13.9949 | 1.52013 | 4955.55 |\n", - "| M15 | uptrend | 805.44 | 8.534 | 1.03104 | 4955.55 |\n", - "| M5 | uptrend | 1130.06 | 3.3855 | 0.57387 | 4955.55 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.23)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291283.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:12:37,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:47,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:12:57,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:07,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:17,304 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:26 CET)\" (scheduled at 2026-01-23 06:13:26.633942+01:00)\n", - "2026-01-23 06:13:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:26 CET)\" executed successfully\n", - "2026-01-23 06:13:27,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:32 CET)\" (scheduled at 2026-01-23 06:13:32.132962+01:00)\n", - "2026-01-23 06:13:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:32 CET)\" executed successfully\n", - "2026-01-23 06:13:34,038 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:34 CET)\" (scheduled at 2026-01-23 06:13:34.010875+01:00)\n", - "2026-01-23 06:13:34,188 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94696 | 4956.5 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06597 | 4956.52 |\n", - "| H1 | uptrend | 761.08 | 21.2115 | 2.42156 | 4956.52 |\n", - "| M30 | uptrend | 724.25 | 13.9949 | 1.52036 | 4956.52 |\n", - "| M15 | uptrend | 805.61 | 8.534 | 1.03127 | 4956.52 |\n", - "| M5 | uptrend | 1130.51 | 3.3855 | 0.574099 | 4956.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291330.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:13:37,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:47,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:13:57,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:07,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:17,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:26 CET)\" (scheduled at 2026-01-23 06:14:26.633942+01:00)\n", - "2026-01-23 06:14:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:26 CET)\" executed successfully\n", - "2026-01-23 06:14:27,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:32 CET)\" (scheduled at 2026-01-23 06:14:32.132962+01:00)\n", - "2026-01-23 06:14:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:32 CET)\" executed successfully\n", - "2026-01-23 06:14:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:34 CET)\" (scheduled at 2026-01-23 06:14:34.010875+01:00)\n", - "2026-01-23 06:14:34,158 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94699 | 4956.61 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.066 | 4956.61 |\n", - "| H1 | uptrend | 761.09 | 21.2115 | 2.42158 | 4956.61 |\n", - "| M30 | uptrend | 724.26 | 13.9949 | 1.52038 | 4956.61 |\n", - "| M15 | uptrend | 805.63 | 8.534 | 1.03129 | 4956.61 |\n", - "| M5 | uptrend | 1130.56 | 3.3855 | 0.57412 | 4956.61 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291335.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:14:37,472 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:47,497 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:14:57,528 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:07,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:17,576 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:26 CET)\" (scheduled at 2026-01-23 06:15:26.633942+01:00)\n", - "2026-01-23 06:15:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:26 CET)\" executed successfully\n", - "2026-01-23 06:15:27,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:32 CET)\" (scheduled at 2026-01-23 06:15:32.132962+01:00)\n", - "2026-01-23 06:15:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:32 CET)\" executed successfully\n", - "2026-01-23 06:15:34,272 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:34 CET)\" (scheduled at 2026-01-23 06:15:34.010875+01:00)\n", - "2026-01-23 06:15:34,397 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94691 | 4956.28 |\n", - "| H4 | uptrend | 472.44 | 43.2634 | 3.06592 | 4956.28 |\n", - "| H1 | uptrend | 761.07 | 21.2115 | 2.4215 | 4956.28 |\n", - "| M30 | uptrend | 724.22 | 13.9949 | 1.52031 | 4956.28 |\n", - "| M15 | uptrend | 887.47 | 7.9872 | 1.06326 | 4956.28 |\n", - "| M5 | uptrend | 1171.27 | 3.2065 | 0.56335 | 4956.28 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297867.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:15:37,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:47,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:15:57,679 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:07,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:17,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:26 CET)\" (scheduled at 2026-01-23 06:16:26.633942+01:00)\n", - "2026-01-23 06:16:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:26 CET)\" executed successfully\n", - "2026-01-23 06:16:27,763 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:32 CET)\" (scheduled at 2026-01-23 06:16:32.132962+01:00)\n", - "2026-01-23 06:16:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:32 CET)\" executed successfully\n", - "2026-01-23 06:16:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:34 CET)\" (scheduled at 2026-01-23 06:16:34.010875+01:00)\n", - "2026-01-23 06:16:34,216 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94695 | 4956.44 |\n", - "| H4 | uptrend | 472.45 | 43.2634 | 3.06595 | 4956.44 |\n", - "| H1 | uptrend | 761.08 | 21.2115 | 2.42154 | 4956.44 |\n", - "| M30 | uptrend | 724.24 | 13.9949 | 1.52035 | 4956.46 |\n", - "| M15 | uptrend | 885.29 | 8.0072 | 1.06331 | 4956.46 |\n", - "| M5 | uptrend | 1164.08 | 3.2265 | 0.563383 | 4956.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297452.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:16:37,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:47,813 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:16:57,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:07,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:17,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:26,707 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:26 CET)\" (scheduled at 2026-01-23 06:17:26.633942+01:00)\n", - "2026-01-23 06:17:26,707 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:26 CET)\" executed successfully\n", - "2026-01-23 06:17:27,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:32 CET)\" (scheduled at 2026-01-23 06:17:32.132962+01:00)\n", - "2026-01-23 06:17:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:32 CET)\" executed successfully\n", - "2026-01-23 06:17:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:34 CET)\" (scheduled at 2026-01-23 06:17:34.010875+01:00)\n", - "2026-01-23 06:17:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94712 | 4957.19 |\n", - "| H4 | uptrend | 472.48 | 43.2634 | 3.06613 | 4957.19 |\n", - "| H1 | uptrend | 761.13 | 21.2115 | 2.42172 | 4957.19 |\n", - "| M30 | uptrend | 724.32 | 13.9949 | 1.52052 | 4957.19 |\n", - "| M15 | uptrend | 881.18 | 8.0458 | 1.06348 | 4957.19 |\n", - "| M5 | uptrend | 1150.7 | 3.2651 | 0.563565 | 4957.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 296684.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:17:37,923 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:47,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:17:57,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:07,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:18,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:26 CET)\" (scheduled at 2026-01-23 06:18:26.633942+01:00)\n", - "2026-01-23 06:18:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:26 CET)\" executed successfully\n", - "2026-01-23 06:18:28,035 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:32 CET)\" (scheduled at 2026-01-23 06:18:32.132962+01:00)\n", - "2026-01-23 06:18:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:32 CET)\" executed successfully\n", - "2026-01-23 06:18:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:34 CET)\" (scheduled at 2026-01-23 06:18:34.010875+01:00)\n", - "2026-01-23 06:18:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94721 | 4957.57 |\n", - "| H4 | uptrend | 472.49 | 43.2634 | 3.06622 | 4957.57 |\n", - "| H1 | uptrend | 761.01 | 21.2158 | 2.42181 | 4957.57 |\n", - "| M30 | uptrend | 724.14 | 13.9991 | 1.52061 | 4957.57 |\n", - "| M15 | uptrend | 878.14 | 8.0744 | 1.06357 | 4957.57 |\n", - "| M5 | uptrend | 1140.9 | 3.2936 | 0.563655 | 4957.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 296084.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:18:38,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:48,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:18:58,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:08,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:18,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:26 CET)\" (scheduled at 2026-01-23 06:19:26.633942+01:00)\n", - "2026-01-23 06:19:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:26 CET)\" executed successfully\n", - "2026-01-23 06:19:28,165 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:32 CET)\" (scheduled at 2026-01-23 06:19:32.132962+01:00)\n", - "2026-01-23 06:19:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:32 CET)\" executed successfully\n", - "2026-01-23 06:19:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:34 CET)\" (scheduled at 2026-01-23 06:19:34.010875+01:00)\n", - "2026-01-23 06:19:34,183 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94727 | 4957.83 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06628 | 4957.83 |\n", - "| H1 | uptrend | 760.31 | 21.2358 | 2.42187 | 4957.83 |\n", - "| M30 | uptrend | 723.14 | 14.0191 | 1.52067 | 4957.83 |\n", - "| M15 | uptrend | 876.02 | 8.0944 | 1.06363 | 4957.83 |\n", - "| M5 | uptrend | 1134.13 | 3.3136 | 0.563716 | 4957.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295537.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:19:38,191 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:48,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:19:58,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:08,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:18,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:26,638 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:26 CET)\" (scheduled at 2026-01-23 06:20:26.633942+01:00)\n", - "2026-01-23 06:20:26,638 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:26 CET)\" executed successfully\n", - "2026-01-23 06:20:28,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:32 CET)\" (scheduled at 2026-01-23 06:20:32.132962+01:00)\n", - "2026-01-23 06:20:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:32 CET)\" executed successfully\n", - "2026-01-23 06:20:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:34 CET)\" (scheduled at 2026-01-23 06:20:34.010875+01:00)\n", - "2026-01-23 06:20:34,214 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94712 | 4957.16 |\n", - "| H4 | uptrend | 472.47 | 43.2634 | 3.06612 | 4957.16 |\n", - "| H1 | uptrend | 760.26 | 21.2358 | 2.42171 | 4957.16 |\n", - "| M30 | uptrend | 723.06 | 14.0191 | 1.52051 | 4957.16 |\n", - "| M15 | uptrend | 875.89 | 8.0944 | 1.06347 | 4957.16 |\n", - "| M5 | uptrend | 1193.51 | 3.0977 | 0.554563 | 4957.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297891.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:20:38,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:48,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:20:58,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:08,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:18,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:26 CET)\" (scheduled at 2026-01-23 06:21:26.633942+01:00)\n", - "2026-01-23 06:21:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:26 CET)\" executed successfully\n", - "2026-01-23 06:21:28,482 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:32 CET)\" (scheduled at 2026-01-23 06:21:32.132962+01:00)\n", - "2026-01-23 06:21:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:32 CET)\" executed successfully\n", - "2026-01-23 06:21:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:34 CET)\" (scheduled at 2026-01-23 06:21:34.010875+01:00)\n", - "2026-01-23 06:21:34,147 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94738 | 4958.26 |\n", - "| H4 | uptrend | 472.51 | 43.2634 | 3.06638 | 4958.26 |\n", - "| H1 | uptrend | 758.76 | 21.2801 | 2.42197 | 4958.26 |\n", - "| M30 | uptrend | 720.91 | 14.0634 | 1.52077 | 4958.26 |\n", - "| M15 | uptrend | 871.34 | 8.1387 | 1.06373 | 4958.26 |\n", - "| M5 | uptrend | 1162.96 | 3.1805 | 0.554823 | 4958.26 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 296077.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:21:38,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:48,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:21:58,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:08,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:18,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:26 CET)\" (scheduled at 2026-01-23 06:22:26.633942+01:00)\n", - "2026-01-23 06:22:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:26 CET)\" executed successfully\n", - "2026-01-23 06:22:28,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:32 CET)\" (scheduled at 2026-01-23 06:22:32.132962+01:00)\n", - "2026-01-23 06:22:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:32 CET)\" executed successfully\n", - "2026-01-23 06:22:34,069 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:34 CET)\" (scheduled at 2026-01-23 06:22:34.010875+01:00)\n", - "2026-01-23 06:22:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94756 | 4959.05 |\n", - "| H4 | uptrend | 472.54 | 43.2634 | 3.06657 | 4959.05 |\n", - "| H1 | uptrend | 757.42 | 21.3194 | 2.42216 | 4959.05 |\n", - "| M30 | uptrend | 718.99 | 14.1027 | 1.52096 | 4959.05 |\n", - "| M15 | uptrend | 867.3 | 8.178 | 1.06392 | 4959.05 |\n", - "| M5 | uptrend | 1149.16 | 3.2198 | 0.55501 | 4959.05 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294997.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:22:38,675 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:48,694 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:22:58,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:08,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:18,777 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:26,826 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:26 CET)\" (scheduled at 2026-01-23 06:23:26.633942+01:00)\n", - "2026-01-23 06:23:26,826 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:26 CET)\" executed successfully\n", - "2026-01-23 06:23:28,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:32 CET)\" (scheduled at 2026-01-23 06:23:32.132962+01:00)\n", - "2026-01-23 06:23:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:32 CET)\" executed successfully\n", - "2026-01-23 06:23:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:34 CET)\" (scheduled at 2026-01-23 06:23:34.010875+01:00)\n", - "2026-01-23 06:23:34,160 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94755 | 4959.01 |\n", - "| H4 | uptrend | 472.54 | 43.2634 | 3.06656 | 4959.01 |\n", - "| H1 | uptrend | 754.76 | 21.3944 | 2.42215 | 4959.01 |\n", - "| M30 | uptrend | 715.18 | 14.1777 | 1.52095 | 4959.01 |\n", - "| M15 | uptrend | 859.42 | 8.253 | 1.06391 | 4959.01 |\n", - "| M5 | uptrend | 1122.98 | 3.2948 | 0.555 | 4959.01 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292906.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:23:38,827 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:48,851 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:23:58,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:08,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:18,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:27,021 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:26 CET)\" (scheduled at 2026-01-23 06:24:26.633942+01:00)\n", - "2026-01-23 06:24:27,021 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:26 CET)\" executed successfully\n", - "2026-01-23 06:24:28,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:32 CET)\" (scheduled at 2026-01-23 06:24:32.132962+01:00)\n", - "2026-01-23 06:24:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:32 CET)\" executed successfully\n", - "2026-01-23 06:24:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:34 CET)\" (scheduled at 2026-01-23 06:24:34.010875+01:00)\n", - "2026-01-23 06:24:34,212 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94733 | 4958.07 |\n", - "| H4 | uptrend | 472.51 | 43.2634 | 3.06634 | 4958.07 |\n", - "| H1 | uptrend | 754.69 | 21.3944 | 2.42193 | 4958.07 |\n", - "| M30 | uptrend | 715.08 | 14.1777 | 1.52073 | 4958.06 |\n", - "| M15 | uptrend | 859.23 | 8.253 | 1.06368 | 4958.06 |\n", - "| M5 | uptrend | 1122.52 | 3.2948 | 0.554776 | 4958.06 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292859.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:24:38,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:48,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:24:59,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:09,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:19,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:26 CET)\" (scheduled at 2026-01-23 06:25:26.633942+01:00)\n", - "2026-01-23 06:25:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:26 CET)\" executed successfully\n", - "2026-01-23 06:25:29,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:32,443 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:32 CET)\" (scheduled at 2026-01-23 06:25:32.132962+01:00)\n", - "2026-01-23 06:25:32,443 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:32 CET)\" executed successfully\n", - "2026-01-23 06:25:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:34 CET)\" (scheduled at 2026-01-23 06:25:34.010875+01:00)\n", - "2026-01-23 06:25:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94745 | 4958.59 |\n", - "| H4 | uptrend | 472.53 | 43.2634 | 3.06646 | 4958.59 |\n", - "| H1 | uptrend | 754.73 | 21.3944 | 2.42205 | 4958.59 |\n", - "| M30 | uptrend | 715.14 | 14.1777 | 1.52085 | 4958.59 |\n", - "| M15 | uptrend | 859.33 | 8.253 | 1.06381 | 4958.59 |\n", - "| M5 | uptrend | 1174.79 | 3.0988 | 0.546059 | 4958.59 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294966.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:25:39,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:49,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:25:59,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:09,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:19,220 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:27,025 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:26 CET)\" (scheduled at 2026-01-23 06:26:26.633942+01:00)\n", - "2026-01-23 06:26:27,025 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:26 CET)\" executed successfully\n", - "2026-01-23 06:26:29,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:32 CET)\" (scheduled at 2026-01-23 06:26:32.132962+01:00)\n", - "2026-01-23 06:26:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:32 CET)\" executed successfully\n", - "2026-01-23 06:26:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:34 CET)\" (scheduled at 2026-01-23 06:26:34.010875+01:00)\n", - "2026-01-23 06:26:34,182 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94718 | 4957.44 |\n", - "| H4 | uptrend | 472.48 | 43.2634 | 3.06619 | 4957.44 |\n", - "| H1 | uptrend | 754.65 | 21.3944 | 2.42178 | 4957.44 |\n", - "| M30 | uptrend | 715.01 | 14.1777 | 1.52058 | 4957.44 |\n", - "| M15 | uptrend | 859.12 | 8.253 | 1.06354 | 4957.44 |\n", - "| M5 | uptrend | 1156.09 | 3.1473 | 0.545788 | 4957.44 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294183.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:26:39,268 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:49,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:26:59,324 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:09,355 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:19,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:26 CET)\" (scheduled at 2026-01-23 06:27:26.633942+01:00)\n", - "2026-01-23 06:27:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:26 CET)\" executed successfully\n", - "2026-01-23 06:27:29,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:32 CET)\" (scheduled at 2026-01-23 06:27:32.132962+01:00)\n", - "2026-01-23 06:27:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:32 CET)\" executed successfully\n", - "2026-01-23 06:27:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:34 CET)\" (scheduled at 2026-01-23 06:27:34.010875+01:00)\n", - "2026-01-23 06:27:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94724 | 4957.67 |\n", - "| H4 | uptrend | 472.49 | 43.2634 | 3.06624 | 4957.67 |\n", - "| H1 | uptrend | 754.66 | 21.3944 | 2.42183 | 4957.67 |\n", - "| M30 | uptrend | 715.03 | 14.1777 | 1.52063 | 4957.67 |\n", - "| M15 | uptrend | 859.16 | 8.253 | 1.06359 | 4957.67 |\n", - "| M5 | uptrend | 1135.84 | 3.2038 | 0.545842 | 4957.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293380.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:27:39,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:49,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:27:59,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:09,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:19,538 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:27,108 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:26 CET)\" (scheduled at 2026-01-23 06:28:26.633942+01:00)\n", - "2026-01-23 06:28:27,108 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:26 CET)\" executed successfully\n", - "2026-01-23 06:28:29,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:32 CET)\" (scheduled at 2026-01-23 06:28:32.132962+01:00)\n", - "2026-01-23 06:28:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:32 CET)\" executed successfully\n", - "2026-01-23 06:28:34,236 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:34 CET)\" (scheduled at 2026-01-23 06:28:34.010875+01:00)\n", - "2026-01-23 06:28:34,407 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94715 | 4957.3 |\n", - "| H4 | uptrend | 472.48 | 43.2634 | 3.06616 | 4957.3 |\n", - "| H1 | uptrend | 754.64 | 21.3944 | 2.42174 | 4957.3 |\n", - "| M30 | uptrend | 714.99 | 14.1777 | 1.52055 | 4957.3 |\n", - "| M15 | uptrend | 859.09 | 8.253 | 1.0635 | 4957.3 |\n", - "| M5 | uptrend | 1135.66 | 3.2038 | 0.545755 | 4957.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.27)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293361.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:28:39,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:49,607 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:28:59,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:09,669 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:19,693 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:26,665 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:26 CET)\" (scheduled at 2026-01-23 06:29:26.633942+01:00)\n", - "2026-01-23 06:29:26,665 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:26 CET)\" executed successfully\n", - "2026-01-23 06:29:29,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:32 CET)\" (scheduled at 2026-01-23 06:29:32.132962+01:00)\n", - "2026-01-23 06:29:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:32 CET)\" executed successfully\n", - "2026-01-23 06:29:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:34 CET)\" (scheduled at 2026-01-23 06:29:34.010875+01:00)\n", - "2026-01-23 06:29:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94727 | 4957.8 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06628 | 4957.8 |\n", - "| H1 | uptrend | 754.67 | 21.3944 | 2.42186 | 4957.8 |\n", - "| M30 | uptrend | 715.05 | 14.1777 | 1.52066 | 4957.8 |\n", - "| M15 | uptrend | 859.18 | 8.253 | 1.06362 | 4957.8 |\n", - "| M5 | uptrend | 1135.9 | 3.2038 | 0.545873 | 4957.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293386.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:29:39,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:49,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:29:59,797 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:00,234 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 07:00:00 CET)\" (scheduled at 2026-01-23 06:30:00+01:00)\n", - "2026-01-23 06:30:00,251 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 07:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 06:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 21.53 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:30:09,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:19,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:26,734 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:26 CET)\" (scheduled at 2026-01-23 06:30:26.633942+01:00)\n", - "2026-01-23 06:30:26,734 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:26 CET)\" executed successfully\n", - "2026-01-23 06:30:29,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:32 CET)\" (scheduled at 2026-01-23 06:30:32.132962+01:00)\n", - "2026-01-23 06:30:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:32 CET)\" executed successfully\n", - "2026-01-23 06:30:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:34 CET)\" (scheduled at 2026-01-23 06:30:34.010875+01:00)\n", - "2026-01-23 06:30:34,147 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94774 | 4959.8 |\n", - "| H4 | uptrend | 472.57 | 43.2634 | 3.06675 | 4959.8 |\n", - "| H1 | uptrend | 754.82 | 21.3944 | 2.42233 | 4959.8 |\n", - "| M30 | uptrend | 758.54 | 13.3536 | 1.51939 | 4959.8 |\n", - "| M15 | uptrend | 923.13 | 7.852 | 1.08727 | 4959.8 |\n", - "| M5 | uptrend | 1131.95 | 3.1635 | 0.537137 | 4959.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 300564.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:30:39,889 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:49,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:30:59,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:31:09,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:31:19,998 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:31:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:26 CET)\" (scheduled at 2026-01-23 06:31:26.633942+01:00)\n", - "2026-01-23 06:31:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:26 CET)\" executed successfully\n", - "2026-01-23 06:31:30,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:31:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:32 CET)\" (scheduled at 2026-01-23 06:31:32.132962+01:00)\n", - "2026-01-23 06:31:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:32 CET)\" executed successfully\n", - "2026-01-23 06:31:34,237 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:34 CET)\" (scheduled at 2026-01-23 06:31:34.010875+01:00)\n", - "2026-01-23 06:31:34,397 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94746 | 4958.63 |\n", - "| H4 | uptrend | 472.53 | 43.2634 | 3.06647 | 4958.63 |\n", - "| H1 | uptrend | 753.68 | 21.4244 | 2.42206 | 4958.63 |\n", - "| M30 | uptrend | 756.58 | 13.3857 | 1.51911 | 4958.63 |\n", - "| M15 | uptrend | 919.14 | 7.8842 | 1.08699 | 4958.63 |\n", - "| M5 | uptrend | 1119.99 | 3.1956 | 0.536863 | 4958.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299572.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:31:40,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:31:50,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:00,107 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:10,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:20,156 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:26 CET)\" (scheduled at 2026-01-23 06:32:26.633942+01:00)\n", - "2026-01-23 06:32:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:26 CET)\" executed successfully\n", - "2026-01-23 06:32:30,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:32 CET)\" (scheduled at 2026-01-23 06:32:32.132962+01:00)\n", - "2026-01-23 06:32:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:32 CET)\" executed successfully\n", - "2026-01-23 06:32:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:34 CET)\" (scheduled at 2026-01-23 06:32:34.010875+01:00)\n", - "2026-01-23 06:32:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94783 | 4960.17 |\n", - "| H4 | uptrend | 472.58 | 43.2634 | 3.06684 | 4960.17 |\n", - "| H1 | uptrend | 753.79 | 21.4244 | 2.42242 | 4960.17 |\n", - "| M30 | uptrend | 756.76 | 13.3857 | 1.51948 | 4960.17 |\n", - "| M15 | uptrend | 919.44 | 7.8842 | 1.08736 | 4960.17 |\n", - "| M5 | uptrend | 1120.75 | 3.1956 | 0.537225 | 4960.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.34)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299650.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:32:40,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:32:50,238 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:00,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:10,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:20,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:26 CET)\" (scheduled at 2026-01-23 06:33:26.633942+01:00)\n", - "2026-01-23 06:33:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:26 CET)\" executed successfully\n", - "2026-01-23 06:33:30,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:32 CET)\" (scheduled at 2026-01-23 06:33:32.132962+01:00)\n", - "2026-01-23 06:33:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:32 CET)\" executed successfully\n", - "2026-01-23 06:33:34,055 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:34 CET)\" (scheduled at 2026-01-23 06:33:34.010875+01:00)\n", - "2026-01-23 06:33:34,251 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.9477 | 4959.63 |\n", - "| H4 | uptrend | 472.56 | 43.2634 | 3.06671 | 4959.63 |\n", - "| H1 | uptrend | 753.75 | 21.4244 | 2.4223 | 4959.63 |\n", - "| M30 | uptrend | 756.7 | 13.3857 | 1.51935 | 4959.63 |\n", - "| M15 | uptrend | 919.34 | 7.8842 | 1.08723 | 4959.63 |\n", - "| M5 | uptrend | 1120.48 | 3.1956 | 0.537097 | 4959.63 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299623.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:33:40,355 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:33:50,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:00,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:10,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:20,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:26,738 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:26 CET)\" (scheduled at 2026-01-23 06:34:26.633942+01:00)\n", - "2026-01-23 06:34:26,738 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:26 CET)\" executed successfully\n", - "2026-01-23 06:34:30,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:32,229 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:32 CET)\" (scheduled at 2026-01-23 06:34:32.132962+01:00)\n", - "2026-01-23 06:34:32,229 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:32 CET)\" executed successfully\n", - "2026-01-23 06:34:34,056 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:34 CET)\" (scheduled at 2026-01-23 06:34:34.010875+01:00)\n", - "2026-01-23 06:34:34,230 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94745 | 4958.57 |\n", - "| H4 | uptrend | 472.53 | 43.2634 | 3.06646 | 4958.57 |\n", - "| H1 | uptrend | 753.67 | 21.4244 | 2.42204 | 4958.53 |\n", - "| M30 | uptrend | 756.57 | 13.3857 | 1.51909 | 4958.53 |\n", - "| M15 | uptrend | 919.12 | 7.8842 | 1.08697 | 4958.53 |\n", - "| M5 | uptrend | 1119.93 | 3.1956 | 0.536833 | 4958.51 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.30)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299567.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:34:40,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:34:50,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:00,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:10,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:20,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:26 CET)\" (scheduled at 2026-01-23 06:35:26.633942+01:00)\n", - "2026-01-23 06:35:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:26 CET)\" executed successfully\n", - "2026-01-23 06:35:30,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:32,226 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:32 CET)\" (scheduled at 2026-01-23 06:35:32.132962+01:00)\n", - "2026-01-23 06:35:32,226 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:32 CET)\" executed successfully\n", - "2026-01-23 06:35:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:34 CET)\" (scheduled at 2026-01-23 06:35:34.010875+01:00)\n", - "2026-01-23 06:35:34,163 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.947 | 4956.68 |\n", - "| H4 | uptrend | 472.46 | 43.2634 | 3.06601 | 4956.68 |\n", - "| H1 | uptrend | 753.53 | 21.4244 | 2.4216 | 4956.68 |\n", - "| M30 | uptrend | 753.26 | 13.4407 | 1.51865 | 4956.68 |\n", - "| M15 | uptrend | 912.38 | 7.9392 | 1.08653 | 4956.68 |\n", - "| M5 | uptrend | 1125.29 | 3.1223 | 0.527028 | 4956.68 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.25)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299093.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:35:40,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:35:50,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:00,737 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:10,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:20,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:26 CET)\" (scheduled at 2026-01-23 06:36:26.633942+01:00)\n", - "2026-01-23 06:36:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:26 CET)\" executed successfully\n", - "2026-01-23 06:36:30,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:32,260 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:32 CET)\" (scheduled at 2026-01-23 06:36:32.132962+01:00)\n", - "2026-01-23 06:36:32,260 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:32 CET)\" executed successfully\n", - "2026-01-23 06:36:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:34 CET)\" (scheduled at 2026-01-23 06:36:34.010875+01:00)\n", - "2026-01-23 06:36:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94725 | 4957.73 |\n", - "| H4 | uptrend | 472.5 | 43.2634 | 3.06626 | 4957.73 |\n", - "| H1 | uptrend | 753.61 | 21.4244 | 2.42185 | 4957.73 |\n", - "| M30 | uptrend | 752.78 | 13.4515 | 1.5189 | 4957.73 |\n", - "| M15 | uptrend | 911.36 | 7.9499 | 1.08678 | 4957.73 |\n", - "| M5 | uptrend | 1121.97 | 3.133 | 0.527276 | 4957.73 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298871.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:36:40,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:36:50,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:00,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:10,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:20,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:26,708 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:26 CET)\" (scheduled at 2026-01-23 06:37:26.633942+01:00)\n", - "2026-01-23 06:37:26,708 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:26 CET)\" executed successfully\n", - "2026-01-23 06:37:30,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:32 CET)\" (scheduled at 2026-01-23 06:37:32.132962+01:00)\n", - "2026-01-23 06:37:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:32 CET)\" executed successfully\n", - "2026-01-23 06:37:34,526 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:34 CET)\" (scheduled at 2026-01-23 06:37:34.010875+01:00)\n", - "2026-01-23 06:37:34,673 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94737 | 4958.24 |\n", - "| H4 | uptrend | 472.51 | 43.2634 | 3.06638 | 4958.24 |\n", - "| H1 | uptrend | 753.65 | 21.4244 | 2.42197 | 4958.24 |\n", - "| M30 | uptrend | 752.84 | 13.4515 | 1.51902 | 4958.24 |\n", - "| M15 | uptrend | 911.46 | 7.9499 | 1.0869 | 4958.24 |\n", - "| M5 | uptrend | 1122.22 | 3.133 | 0.527396 | 4958.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298898.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:37:40,968 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:37:50,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:01,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:11,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:21,131 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:26,645 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:26 CET)\" (scheduled at 2026-01-23 06:38:26.633942+01:00)\n", - "2026-01-23 06:38:26,645 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:26 CET)\" executed successfully\n", - "2026-01-23 06:38:31,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:32,221 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:32 CET)\" (scheduled at 2026-01-23 06:38:32.132962+01:00)\n", - "2026-01-23 06:38:32,221 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:32 CET)\" executed successfully\n", - "2026-01-23 06:38:34,051 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:34 CET)\" (scheduled at 2026-01-23 06:38:34.010875+01:00)\n", - "2026-01-23 06:38:34,219 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94737 | 4958.22 |\n", - "| H4 | uptrend | 472.51 | 43.2634 | 3.06637 | 4958.22 |\n", - "| H1 | uptrend | 753.65 | 21.4244 | 2.42196 | 4958.22 |\n", - "| M30 | uptrend | 752.84 | 13.4515 | 1.51902 | 4958.22 |\n", - "| M15 | uptrend | 911.46 | 7.9499 | 1.0869 | 4958.22 |\n", - "| M5 | uptrend | 1118.39 | 3.1438 | 0.527392 | 4958.22 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.29)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298744.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:38:41,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:38:51,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:01,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:11,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:21,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:26,658 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:26 CET)\" (scheduled at 2026-01-23 06:39:26.633942+01:00)\n", - "2026-01-23 06:39:26,658 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:26 CET)\" executed successfully\n", - "2026-01-23 06:39:31,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:32 CET)\" (scheduled at 2026-01-23 06:39:32.132962+01:00)\n", - "2026-01-23 06:39:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:32 CET)\" executed successfully\n", - "2026-01-23 06:39:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:34 CET)\" (scheduled at 2026-01-23 06:39:34.010875+01:00)\n", - "2026-01-23 06:39:34,159 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94762 | 4959.29 |\n", - "| H4 | uptrend | 472.55 | 43.2634 | 3.06663 | 4959.29 |\n", - "| H1 | uptrend | 753.73 | 21.4244 | 2.42221 | 4959.29 |\n", - "| M30 | uptrend | 752.96 | 13.4515 | 1.51927 | 4959.29 |\n", - "| M15 | uptrend | 911.67 | 7.9499 | 1.08715 | 4959.29 |\n", - "| M5 | uptrend | 1094.8 | 3.213 | 0.527645 | 4959.29 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297833.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:39:34,807 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 07:39:34 CET)\" (scheduled at 2026-01-23 06:39:34.806528+01:00)\n", - "2026-01-23 06:39:34,821 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 07:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[06:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:39:41,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:39:51,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:01,365 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:11,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:21,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:26,674 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:26 CET)\" (scheduled at 2026-01-23 06:40:26.633942+01:00)\n", - "2026-01-23 06:40:26,674 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:26 CET)\" executed successfully\n", - "2026-01-23 06:40:31,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:32,149 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:32 CET)\" (scheduled at 2026-01-23 06:40:32.132962+01:00)\n", - "2026-01-23 06:40:32,149 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:32 CET)\" executed successfully\n", - "2026-01-23 06:40:34,014 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:34 CET)\" (scheduled at 2026-01-23 06:40:34.010875+01:00)\n", - "2026-01-23 06:40:34,150 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.17 | 88.7586 | 9.94766 | 4959.44 |\n", - "| H4 | uptrend | 472.56 | 43.2634 | 3.06666 | 4959.44 |\n", - "| H1 | uptrend | 753.74 | 21.4244 | 2.42225 | 4959.44 |\n", - "| M30 | uptrend | 752.98 | 13.4515 | 1.5193 | 4959.44 |\n", - "| M15 | uptrend | 911.7 | 7.9499 | 1.08719 | 4959.44 |\n", - "| M5 | uptrend | 1140.69 | 3.0335 | 0.519051 | 4959.44 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 299674.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:40:41,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:40:51,482 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:01,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:11,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:21,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:26 CET)\" (scheduled at 2026-01-23 06:41:26.633942+01:00)\n", - "2026-01-23 06:41:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:26 CET)\" executed successfully\n", - "2026-01-23 06:41:31,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:32 CET)\" (scheduled at 2026-01-23 06:41:32.132962+01:00)\n", - "2026-01-23 06:41:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:32 CET)\" executed successfully\n", - "2026-01-23 06:41:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:34 CET)\" (scheduled at 2026-01-23 06:41:34.010875+01:00)\n", - "2026-01-23 06:41:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94784 | 4960.22 |\n", - "| H4 | uptrend | 472.59 | 43.2634 | 3.06685 | 4960.22 |\n", - "| H1 | uptrend | 753.19 | 21.4415 | 2.42243 | 4960.2 |\n", - "| M30 | uptrend | 752.11 | 13.4686 | 1.51948 | 4960.17 |\n", - "| M15 | uptrend | 909.88 | 7.967 | 1.08735 | 4960.15 |\n", - "| M5 | uptrend | 1113.55 | 3.1085 | 0.519228 | 4960.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.34)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298356.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:41:41,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:41:51,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:01,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:11,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:21,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:26 CET)\" (scheduled at 2026-01-23 06:42:26.633942+01:00)\n", - "2026-01-23 06:42:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:26 CET)\" executed successfully\n", - "2026-01-23 06:42:31,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:32 CET)\" (scheduled at 2026-01-23 06:42:32.132962+01:00)\n", - "2026-01-23 06:42:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:32 CET)\" executed successfully\n", - "2026-01-23 06:42:34,127 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:34 CET)\" (scheduled at 2026-01-23 06:42:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.19 | 88.7586 | 9.94789 | 4960.45 |\n", - "| H4 | uptrend | 472.59 | 43.2634 | 3.0669 | 4960.45 |\n", - "| H1 | uptrend | 753.21 | 21.4415 | 2.42249 | 4960.45 |\n", - "| M30 | uptrend | 752.14 | 13.4686 | 1.51954 | 4960.45 |\n", - "| M15 | uptrend | 909.94 | 7.967 | 1.08742 | 4960.44 |\n", - "| M5 | uptrend | 1113.68 | 3.1085 | 0.519287 | 4960.44 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.35)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298370.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:42:34,331 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:42:41,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:42:51,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:01,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:11,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:21,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:26,762 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:26 CET)\" (scheduled at 2026-01-23 06:43:26.633942+01:00)\n", - "2026-01-23 06:43:26,762 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:26 CET)\" executed successfully\n", - "2026-01-23 06:43:31,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:32 CET)\" (scheduled at 2026-01-23 06:43:32.132962+01:00)\n", - "2026-01-23 06:43:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:32 CET)\" executed successfully\n", - "2026-01-23 06:43:34,044 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:34 CET)\" (scheduled at 2026-01-23 06:43:34.010875+01:00)\n", - "2026-01-23 06:43:34,256 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.18 | 88.7586 | 9.94779 | 4960.02 |\n", - "| H4 | uptrend | 472.58 | 43.2634 | 3.0668 | 4960.02 |\n", - "| H1 | uptrend | 751.62 | 21.4858 | 2.42239 | 4960.02 |\n", - "| M30 | uptrend | 749.62 | 13.5129 | 1.51944 | 4960 |\n", - "| M15 | uptrend | 904.82 | 8.0113 | 1.08732 | 4959.99 |\n", - "| M5 | uptrend | 1097.81 | 3.1528 | 0.519181 | 4959.99 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.34)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297067.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:43:41,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:43:51,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:01,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:11,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:21,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:26,760 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:26 CET)\" (scheduled at 2026-01-23 06:44:26.633942+01:00)\n", - "2026-01-23 06:44:26,760 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:26 CET)\" executed successfully\n", - "2026-01-23 06:44:31,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:32 CET)\" (scheduled at 2026-01-23 06:44:32.132962+01:00)\n", - "2026-01-23 06:44:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:32 CET)\" executed successfully\n", - "2026-01-23 06:44:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:34 CET)\" (scheduled at 2026-01-23 06:44:34.010875+01:00)\n", - "2026-01-23 06:44:34,270 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.19 | 88.7586 | 9.94795 | 4960.67 |\n", - "| H4 | uptrend | 472.6 | 43.2634 | 3.06695 | 4960.67 |\n", - "| H1 | uptrend | 751.67 | 21.4858 | 2.42254 | 4960.67 |\n", - "| M30 | uptrend | 749.7 | 13.5129 | 1.51959 | 4960.67 |\n", - "| M15 | uptrend | 904.95 | 8.0113 | 1.08748 | 4960.67 |\n", - "| M5 | uptrend | 1098.16 | 3.1528 | 0.519349 | 4960.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.36)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 297102.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:44:41,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:44:52,021 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:02,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:12,063 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:22,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:26,653 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:26 CET)\" (scheduled at 2026-01-23 06:45:26.633942+01:00)\n", - "2026-01-23 06:45:26,653 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:26 CET)\" executed successfully\n", - "2026-01-23 06:45:32,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:32 CET)\" (scheduled at 2026-01-23 06:45:32.132962+01:00)\n", - "2026-01-23 06:45:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:32 CET)\" executed successfully\n", - "2026-01-23 06:45:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:34 CET)\" (scheduled at 2026-01-23 06:45:34.010875+01:00)\n", - "2026-01-23 06:45:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.22 | 88.7586 | 9.94835 | 4962.36 |\n", - "| H4 | uptrend | 472.48 | 43.2798 | 3.06736 | 4962.37 |\n", - "| H1 | uptrend | 749.33 | 21.5565 | 2.42294 | 4962.37 |\n", - "| M30 | uptrend | 746 | 13.5836 | 1.52 | 4962.37 |\n", - "| M15 | uptrend | 986.94 | 7.5376 | 1.11588 | 4962.37 |\n", - "| M5 | uptrend | 1128.96 | 3.0262 | 0.512471 | 4962.37 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.33)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 302720.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:45:42,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:45:52,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:02,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:12,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:22,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:26 CET)\" (scheduled at 2026-01-23 06:46:26.633942+01:00)\n", - "2026-01-23 06:46:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:26 CET)\" executed successfully\n", - "2026-01-23 06:46:32,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:32,364 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:32 CET)\" (scheduled at 2026-01-23 06:46:32.132962+01:00)\n", - "2026-01-23 06:46:32,366 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:32 CET)\" executed successfully\n", - "2026-01-23 06:46:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:34 CET)\" (scheduled at 2026-01-23 06:46:34.010875+01:00)\n", - "2026-01-23 06:46:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.22 | 88.7586 | 9.94831 | 4962.23 |\n", - "| H4 | uptrend | 472.36 | 43.2905 | 3.06732 | 4962.23 |\n", - "| H1 | uptrend | 748.95 | 21.5672 | 2.42291 | 4962.23 |\n", - "| M30 | uptrend | 745.39 | 13.5943 | 1.51996 | 4962.23 |\n", - "| M15 | uptrend | 982.82 | 7.5691 | 1.11586 | 4962.27 |\n", - "| M5 | uptrend | 1117.31 | 3.0576 | 0.512447 | 4962.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 637.28)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 301915.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:46:42,270 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:46:52,299 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:02,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:12,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:22,367 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:26 CET)\" (scheduled at 2026-01-23 06:47:26.633942+01:00)\n", - "2026-01-23 06:47:26,639 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:26 CET)\" executed successfully\n", - "2026-01-23 06:47:32,186 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:32 CET)\" (scheduled at 2026-01-23 06:47:32.132962+01:00)\n", - "2026-01-23 06:47:32,186 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:32 CET)\" executed successfully\n", - "2026-01-23 06:47:32,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:34,227 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:34 CET)\" (scheduled at 2026-01-23 06:47:34.010875+01:00)\n", - "2026-01-23 06:47:34,381 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.25 | 88.7586 | 9.94875 | 4964.08 |\n", - "| H4 | uptrend | 471.22 | 43.4019 | 3.06776 | 4964.08 |\n", - "| H1 | uptrend | 745.23 | 21.6787 | 2.42335 | 4964.08 |\n", - "| M30 | uptrend | 739.54 | 13.7057 | 1.5204 | 4964.08 |\n", - "| M15 | uptrend | 968.94 | 7.6805 | 1.11629 | 4964.08 |\n", - "| M5 | uptrend | 1078.92 | 3.1691 | 0.512875 | 4964.08 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.84)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298663.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:47:42,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:47:52,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:02,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:12,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:22,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:26,897 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:26 CET)\" (scheduled at 2026-01-23 06:48:26.633942+01:00)\n", - "2026-01-23 06:48:26,897 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:26 CET)\" executed successfully\n", - "2026-01-23 06:48:32,133 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:32 CET)\" (scheduled at 2026-01-23 06:48:32.132962+01:00)\n", - "2026-01-23 06:48:32,133 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:32 CET)\" executed successfully\n", - "2026-01-23 06:48:32,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:34,434 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:34 CET)\" (scheduled at 2026-01-23 06:48:34.010875+01:00)\n", - "2026-01-23 06:48:34,572 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.28 | 88.7586 | 9.94916 | 4965.82 |\n", - "| H4 | uptrend | 469.86 | 43.5334 | 3.06817 | 4965.82 |\n", - "| H1 | uptrend | 740.87 | 21.8101 | 2.42376 | 4965.82 |\n", - "| M30 | uptrend | 732.72 | 13.8372 | 1.52081 | 4965.82 |\n", - "| M15 | uptrend | 952.99 | 7.8119 | 1.1167 | 4965.82 |\n", - "| M5 | uptrend | 1036.79 | 3.3005 | 0.513286 | 4965.82 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.31)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294986.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:48:42,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:48:52,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:02,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:12,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:22,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:26,801 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:26 CET)\" (scheduled at 2026-01-23 06:49:26.633942+01:00)\n", - "2026-01-23 06:49:26,801 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:26 CET)\" executed successfully\n", - "2026-01-23 06:49:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:32 CET)\" (scheduled at 2026-01-23 06:49:32.132962+01:00)\n", - "2026-01-23 06:49:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:32 CET)\" executed successfully\n", - "2026-01-23 06:49:32,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:34,158 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:34 CET)\" (scheduled at 2026-01-23 06:49:34.010875+01:00)\n", - "2026-01-23 06:49:34,330 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.29 | 88.7586 | 9.94931 | 4966.42 |\n", - "| H4 | uptrend | 469.45 | 43.5734 | 3.06831 | 4966.42 |\n", - "| H1 | uptrend | 739.55 | 21.8501 | 2.4239 | 4966.42 |\n", - "| M30 | uptrend | 730.67 | 13.8772 | 1.52095 | 4966.42 |\n", - "| M15 | uptrend | 948.25 | 7.8519 | 1.11684 | 4966.42 |\n", - "| M5 | uptrend | 1024.66 | 3.3405 | 0.513428 | 4966.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.15)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293906.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:49:42,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:49:52,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:02,752 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:12,772 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:22,800 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:27,038 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:26 CET)\" (scheduled at 2026-01-23 06:50:26.633942+01:00)\n", - "2026-01-23 06:50:27,038 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:26 CET)\" executed successfully\n", - "2026-01-23 06:50:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:32 CET)\" (scheduled at 2026-01-23 06:50:32.132962+01:00)\n", - "2026-01-23 06:50:32,144 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:32 CET)\" executed successfully\n", - "2026-01-23 06:50:32,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:34 CET)\" (scheduled at 2026-01-23 06:50:34.010875+01:00)\n", - "2026-01-23 06:50:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.3 | 88.7586 | 9.94941 | 4966.85 |\n", - "| H4 | uptrend | 469.1 | 43.6069 | 3.06841 | 4966.85 |\n", - "| H1 | uptrend | 738.45 | 21.8837 | 2.424 | 4966.85 |\n", - "| M30 | uptrend | 728.96 | 13.9107 | 1.52105 | 4966.85 |\n", - "| M15 | uptrend | 944.3 | 7.8855 | 1.11694 | 4966.85 |\n", - "| M5 | uptrend | 1077.11 | 3.1429 | 0.507787 | 4966.85 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 636.02)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295506.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:50:42,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:50:52,858 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:02,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:12,912 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:22,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:26 CET)\" (scheduled at 2026-01-23 06:51:26.633942+01:00)\n", - "2026-01-23 06:51:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:26 CET)\" executed successfully\n", - "2026-01-23 06:51:32,369 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:32 CET)\" (scheduled at 2026-01-23 06:51:32.132962+01:00)\n", - "2026-01-23 06:51:32,369 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:32 CET)\" executed successfully\n", - "2026-01-23 06:51:32,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:34,018 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:34 CET)\" (scheduled at 2026-01-23 06:51:34.010875+01:00)\n", - "2026-01-23 06:51:34,178 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.3 | 88.7586 | 9.94936 | 4966.63 |\n", - "| H4 | uptrend | 468.92 | 43.6234 | 3.06836 | 4966.63 |\n", - "| H1 | uptrend | 737.88 | 21.9001 | 2.42395 | 4966.63 |\n", - "| M30 | uptrend | 728.07 | 13.9272 | 1.521 | 4966.63 |\n", - "| M15 | uptrend | 942.29 | 7.9019 | 1.11689 | 4966.63 |\n", - "| M5 | uptrend | 1070.91 | 3.1608 | 0.507735 | 4966.63 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295002.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:51:42,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:51:52,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:03,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:13,050 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:23,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:26,713 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:26 CET)\" (scheduled at 2026-01-23 06:52:26.633942+01:00)\n", - "2026-01-23 06:52:26,713 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:26 CET)\" executed successfully\n", - "2026-01-23 06:52:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:32 CET)\" (scheduled at 2026-01-23 06:52:32.132962+01:00)\n", - "2026-01-23 06:52:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:32 CET)\" executed successfully\n", - "2026-01-23 06:52:33,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:34,071 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:34 CET)\" (scheduled at 2026-01-23 06:52:34.010875+01:00)\n", - "2026-01-23 06:52:34,238 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.29 | 88.7586 | 9.94926 | 4966.24 |\n", - "| H4 | uptrend | 468.9 | 43.6234 | 3.06827 | 4966.24 |\n", - "| H1 | uptrend | 737.85 | 21.9001 | 2.42386 | 4966.24 |\n", - "| M30 | uptrend | 728.03 | 13.9272 | 1.52091 | 4966.23 |\n", - "| M15 | uptrend | 942.21 | 7.9019 | 1.1168 | 4966.23 |\n", - "| M5 | uptrend | 1061.09 | 3.1893 | 0.507627 | 4966.17 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.94)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294597.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:52:43,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:52:53,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:03,163 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:13,179 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:23,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:26,634 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:54:26 CET)\" (scheduled at 2026-01-23 06:53:26.633942+01:00)\n", - "2026-01-23 06:53:26,634 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:54:26 CET)\" executed successfully\n", - "2026-01-23 06:53:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:54:32 CET)\" (scheduled at 2026-01-23 06:53:32.132962+01:00)\n", - "2026-01-23 06:53:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:54:32 CET)\" executed successfully\n", - "2026-01-23 06:53:33,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:34,040 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:53:34 CET)\" (scheduled at 2026-01-23 06:53:34.010875+01:00)\n", - "2026-01-23 06:53:34,202 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.3 | 88.7586 | 9.9494 | 4966.83 |\n", - "| H4 | uptrend | 468.92 | 43.6234 | 3.06841 | 4966.83 |\n", - "| H1 | uptrend | 737.9 | 21.9001 | 2.424 | 4966.83 |\n", - "| M30 | uptrend | 728.1 | 13.9272 | 1.52105 | 4966.83 |\n", - "| M15 | uptrend | 942.33 | 7.9019 | 1.11694 | 4966.83 |\n", - "| M5 | uptrend | 1049.2 | 3.2265 | 0.507783 | 4966.83 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.95)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294140.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:53:43,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:53:53,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:03,304 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:13,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:23,338 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:26 CET)\" (scheduled at 2026-01-23 06:54:26.633942+01:00)\n", - "2026-01-23 06:54:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:26 CET)\" executed successfully\n", - "2026-01-23 06:54:32,139 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:32 CET)\" (scheduled at 2026-01-23 06:54:32.132962+01:00)\n", - "2026-01-23 06:54:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:32 CET)\" executed successfully\n", - "2026-01-23 06:54:33,373 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:34,398 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:34 CET)\" (scheduled at 2026-01-23 06:54:34.010875+01:00)\n", - "2026-01-23 06:54:34,594 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.26 | 88.7586 | 9.94882 | 4964.35 |\n", - "| H4 | uptrend | 468.83 | 43.6234 | 3.06782 | 4964.35 |\n", - "| H1 | uptrend | 737.72 | 21.9001 | 2.42341 | 4964.35 |\n", - "| M30 | uptrend | 727.82 | 13.9272 | 1.52046 | 4964.35 |\n", - "| M15 | uptrend | 941.84 | 7.9019 | 1.11635 | 4964.35 |\n", - "| M5 | uptrend | 1018.67 | 3.3193 | 0.507197 | 4964.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.89)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292842.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:54:43,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:54:53,489 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:03,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:13,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:23,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:26,651 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:26 CET)\" (scheduled at 2026-01-23 06:55:26.633942+01:00)\n", - "2026-01-23 06:55:26,651 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:26 CET)\" executed successfully\n", - "2026-01-23 06:55:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:32 CET)\" (scheduled at 2026-01-23 06:55:32.132962+01:00)\n", - "2026-01-23 06:55:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:32 CET)\" executed successfully\n", - "2026-01-23 06:55:33,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:34,070 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:34 CET)\" (scheduled at 2026-01-23 06:55:34.010875+01:00)\n", - "2026-01-23 06:55:34,231 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.26 | 88.7586 | 9.94892 | 4964.79 |\n", - "| H4 | uptrend | 468.85 | 43.6234 | 3.06793 | 4964.79 |\n", - "| H1 | uptrend | 737.75 | 21.9001 | 2.42351 | 4964.79 |\n", - "| M30 | uptrend | 727.87 | 13.9272 | 1.52057 | 4964.79 |\n", - "| M15 | uptrend | 941.93 | 7.9019 | 1.11645 | 4964.79 |\n", - "| M5 | uptrend | 1022.66 | 3.2598 | 0.500044 | 4964.79 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.90)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293016.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:55:43,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:55:53,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:03,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:13,692 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:23,710 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:26,875 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:26 CET)\" (scheduled at 2026-01-23 06:56:26.633942+01:00)\n", - "2026-01-23 06:56:26,875 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:26 CET)\" executed successfully\n", - "2026-01-23 06:56:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:32 CET)\" (scheduled at 2026-01-23 06:56:32.132962+01:00)\n", - "2026-01-23 06:56:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:32 CET)\" executed successfully\n", - "2026-01-23 06:56:33,736 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:34 CET)\" (scheduled at 2026-01-23 06:56:34.010875+01:00)\n", - "2026-01-23 06:56:34,166 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.26 | 88.7586 | 9.94881 | 4964.32 |\n", - "| H4 | uptrend | 468.83 | 43.6234 | 3.06782 | 4964.32 |\n", - "| H1 | uptrend | 737.71 | 21.9001 | 2.4234 | 4964.32 |\n", - "| M30 | uptrend | 727.81 | 13.9272 | 1.52046 | 4964.32 |\n", - "| M15 | uptrend | 941.83 | 7.9019 | 1.11634 | 4964.32 |\n", - "| M5 | uptrend | 1022.43 | 3.2598 | 0.499933 | 4964.32 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.89)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292992.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:56:43,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:56:53,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:03,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:13,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:23,847 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:26 CET)\" (scheduled at 2026-01-23 06:57:26.633942+01:00)\n", - "2026-01-23 06:57:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:26 CET)\" executed successfully\n", - "2026-01-23 06:57:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:32 CET)\" (scheduled at 2026-01-23 06:57:32.132962+01:00)\n", - "2026-01-23 06:57:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:32 CET)\" executed successfully\n", - "2026-01-23 06:57:33,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:34,194 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:34 CET)\" (scheduled at 2026-01-23 06:57:34.010875+01:00)\n", - "2026-01-23 06:57:34,367 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.22 | 88.7586 | 9.94831 | 4962.2 |\n", - "| H4 | uptrend | 468.76 | 43.6234 | 3.06731 | 4962.2 |\n", - "| H1 | uptrend | 737.56 | 21.9001 | 2.4229 | 4962.2 |\n", - "| M30 | uptrend | 727.57 | 13.9272 | 1.51995 | 4962.2 |\n", - "| M15 | uptrend | 941.41 | 7.9019 | 1.11585 | 4962.21 |\n", - "| M5 | uptrend | 981.83 | 3.3912 | 0.499434 | 4962.21 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291303.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:57:43,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:57:53,920 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:03,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:13,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:24,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:26 CET)\" (scheduled at 2026-01-23 06:58:26.633942+01:00)\n", - "2026-01-23 06:58:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:26 CET)\" executed successfully\n", - "2026-01-23 06:58:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:32 CET)\" (scheduled at 2026-01-23 06:58:32.132962+01:00)\n", - "2026-01-23 06:58:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:32 CET)\" executed successfully\n", - "2026-01-23 06:58:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:34 CET)\" (scheduled at 2026-01-23 06:58:34.010875+01:00)\n", - "2026-01-23 06:58:34,031 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:34,196 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 06:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.2 | 88.7586 | 9.94806 | 4961.15 |\n", - "| H4 | uptrend | 468.72 | 43.6234 | 3.06707 | 4961.15 |\n", - "| H1 | uptrend | 737.49 | 21.9001 | 2.42265 | 4961.15 |\n", - "| M30 | uptrend | 727.45 | 13.9272 | 1.51971 | 4961.15 |\n", - "| M15 | uptrend | 941.2 | 7.9019 | 1.11559 | 4961.15 |\n", - "| M5 | uptrend | 956.75 | 3.4783 | 0.499184 | 4961.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.81)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 290267.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:58:44,048 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:58:54,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:59:04,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:59:14,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:59:24,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:59:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:26 CET)\" (scheduled at 2026-01-23 06:59:26.633942+01:00)\n", - "2026-01-23 06:59:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:26 CET)\" executed successfully\n", - "2026-01-23 06:59:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:32 CET)\" (scheduled at 2026-01-23 06:59:32.132962+01:00)\n", - "2026-01-23 06:59:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:32 CET)\" executed successfully\n", - "2026-01-23 06:59:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:34 CET)\" (scheduled at 2026-01-23 06:59:34.010875+01:00)\n", - "2026-01-23 06:59:34,164 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:00:34 CET)\" executed successfully\n", - "2026-01-23 06:59:34,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 26%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.22 | 88.7586 | 9.94829 | 4962.12 |\n", - "| H4 | uptrend | 468.75 | 43.6234 | 3.0673 | 4962.12 |\n", - "| H1 | uptrend | 737.56 | 21.9001 | 2.42288 | 4962.12 |\n", - "| M30 | uptrend | 727.56 | 13.9272 | 1.51994 | 4962.12 |\n", - "| M15 | uptrend | 938.85 | 7.9234 | 1.11583 | 4962.12 |\n", - "| M5 | uptrend | 949.78 | 3.5055 | 0.499413 | 4962.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 635.83)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289866.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 06:59:44,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 06:59:54,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:00,001 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 07:30:00 CET)\" (scheduled at 2026-01-23 07:00:00+01:00)\n", - "2026-01-23 07:00:00,001 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 07:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 07:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 22.04 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:00:04,236 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:14,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:24,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:26 CET)\" (scheduled at 2026-01-23 07:00:26.633942+01:00)\n", - "2026-01-23 07:00:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:26 CET)\" executed successfully\n", - "2026-01-23 07:00:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:32 CET)\" (scheduled at 2026-01-23 07:00:32.132962+01:00)\n", - "2026-01-23 07:00:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:32 CET)\" executed successfully\n", - "2026-01-23 07:00:34,310 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:34 CET)\" (scheduled at 2026-01-23 07:00:34.010875+01:00)\n", - "2026-01-23 07:00:34,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:34,502 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.19 | 88.7586 | 9.94787 | 4960.36 |\n", - "| H4 | uptrend | 515.02 | 40.6002 | 3.13651 | 4960.36 |\n", - "| H1 | uptrend | 802.28 | 20.4287 | 2.45844 | 4960.36 |\n", - "| M30 | uptrend | 776.18 | 13.0252 | 1.51648 | 4960.36 |\n", - "| M15 | uptrend | 1022.47 | 7.4503 | 1.14265 | 4960.36 |\n", - "| M5 | uptrend | 978.09 | 3.3479 | 0.491188 | 4960.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 654.32)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 308226.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:00:44,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:00:54,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:04,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:14,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:24,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:26,654 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:26 CET)\" (scheduled at 2026-01-23 07:01:26.633942+01:00)\n", - "2026-01-23 07:01:26,654 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:26 CET)\" executed successfully\n", - "2026-01-23 07:01:32,187 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:32 CET)\" (scheduled at 2026-01-23 07:01:32.132962+01:00)\n", - "2026-01-23 07:01:32,187 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:32 CET)\" executed successfully\n", - "2026-01-23 07:01:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:34 CET)\" (scheduled at 2026-01-23 07:01:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94814 | 4961.47 |\n", - "| H4 | uptrend | 514.22 | 40.6674 | 3.13677 | 4961.47 |\n", - "| H1 | uptrend | 799.74 | 20.4958 | 2.4587 | 4961.47 |\n", - "| M30 | uptrend | 772.33 | 13.0924 | 1.51675 | 4961.47 |\n", - "| M15 | uptrend | 1013.57 | 7.5174 | 1.14291 | 4961.47 |\n", - "| M5 | uptrend | 959.38 | 3.4151 | 0.491451 | 4961.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 654.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 306350.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:01:34,243 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:01:34,483 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:44,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:01:54,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:04,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:14,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:24,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:26 CET)\" (scheduled at 2026-01-23 07:02:26.633942+01:00)\n", - "2026-01-23 07:02:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:26 CET)\" executed successfully\n", - "2026-01-23 07:02:32,138 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:32 CET)\" (scheduled at 2026-01-23 07:02:32.132962+01:00)\n", - "2026-01-23 07:02:32,138 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:32 CET)\" executed successfully\n", - "2026-01-23 07:02:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:34 CET)\" (scheduled at 2026-01-23 07:02:34.010875+01:00)\n", - "2026-01-23 07:02:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.2 | 88.7586 | 9.94813 | 4961.43 |\n", - "| H4 | uptrend | 514.21 | 40.6674 | 3.13676 | 4961.43 |\n", - "| H1 | uptrend | 799.74 | 20.4958 | 2.45869 | 4961.43 |\n", - "| M30 | uptrend | 772.33 | 13.0924 | 1.51674 | 4961.43 |\n", - "| M15 | uptrend | 1013.56 | 7.5174 | 1.1429 | 4961.43 |\n", - "| M5 | uptrend | 959.35 | 3.4151 | 0.491439 | 4961.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 654.01)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 306348.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:02:34,624 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:44,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:02:54,668 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:04,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:14,716 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:24,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:26 CET)\" (scheduled at 2026-01-23 07:03:26.633942+01:00)\n", - "2026-01-23 07:03:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:26 CET)\" executed successfully\n", - "2026-01-23 07:03:32,172 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:32 CET)\" (scheduled at 2026-01-23 07:03:32.132962+01:00)\n", - "2026-01-23 07:03:32,172 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:32 CET)\" executed successfully\n", - "2026-01-23 07:03:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:34 CET)\" (scheduled at 2026-01-23 07:03:34.010875+01:00)\n", - "2026-01-23 07:03:34,209 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.21 | 88.7586 | 9.94825 | 4961.95 |\n", - "| H4 | uptrend | 513.21 | 40.7488 | 3.13688 | 4961.95 |\n", - "| H1 | uptrend | 796.61 | 20.5772 | 2.45881 | 4961.95 |\n", - "| M30 | uptrend | 767.61 | 13.1738 | 1.51686 | 4961.95 |\n", - "| M15 | uptrend | 1002.81 | 7.5988 | 1.14302 | 4961.95 |\n", - "| M5 | uptrend | 937.25 | 3.4965 | 0.491564 | 4961.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 653.61)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 304089.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:03:34,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:44,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:03:54,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:04,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:14,861 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:24,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:26,653 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:26 CET)\" (scheduled at 2026-01-23 07:04:26.633942+01:00)\n", - "2026-01-23 07:04:26,653 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:26 CET)\" executed successfully\n", - "2026-01-23 07:04:32,161 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:32 CET)\" (scheduled at 2026-01-23 07:04:32.132962+01:00)\n", - "2026-01-23 07:04:32,161 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:32 CET)\" executed successfully\n", - "2026-01-23 07:04:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:34 CET)\" (scheduled at 2026-01-23 07:04:34.010875+01:00)\n", - "2026-01-23 07:04:34,210 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94725 | 4957.74 |\n", - "| H4 | uptrend | 510.56 | 40.9474 | 3.13589 | 4957.75 |\n", - "| H1 | uptrend | 788.68 | 20.7758 | 2.45782 | 4957.75 |\n", - "| M30 | uptrend | 755.72 | 13.3724 | 1.51587 | 4957.75 |\n", - "| M15 | uptrend | 976.43 | 7.7974 | 1.14204 | 4957.8 |\n", - "| M5 | uptrend | 885.11 | 3.6951 | 0.490584 | 4957.8 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.51)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298566.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:04:34,911 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:44,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:04:54,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:04,986 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:15,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:25,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:26,727 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:26 CET)\" (scheduled at 2026-01-23 07:05:26.633942+01:00)\n", - "2026-01-23 07:05:26,727 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:26 CET)\" executed successfully\n", - "2026-01-23 07:05:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:32 CET)\" (scheduled at 2026-01-23 07:05:32.132962+01:00)\n", - "2026-01-23 07:05:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:32 CET)\" executed successfully\n", - "2026-01-23 07:05:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:34 CET)\" (scheduled at 2026-01-23 07:05:34.010875+01:00)\n", - "2026-01-23 07:05:34,204 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94719 | 4957.48 |\n", - "| H4 | uptrend | 510.55 | 40.9474 | 3.13583 | 4957.48 |\n", - "| H1 | uptrend | 788.66 | 20.7758 | 2.45776 | 4957.48 |\n", - "| M30 | uptrend | 755.69 | 13.3724 | 1.5158 | 4957.48 |\n", - "| M15 | uptrend | 976.36 | 7.7974 | 1.14196 | 4957.45 |\n", - "| M5 | uptrend | 879.66 | 3.6576 | 0.482615 | 4957.45 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298338.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:05:35,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:45,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:05:55,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:05,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:15,154 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:25,192 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:26,749 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:26 CET)\" (scheduled at 2026-01-23 07:06:26.633942+01:00)\n", - "2026-01-23 07:06:26,764 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:26 CET)\" executed successfully\n", - "2026-01-23 07:06:32,183 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:32 CET)\" (scheduled at 2026-01-23 07:06:32.132962+01:00)\n", - "2026-01-23 07:06:32,183 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:32 CET)\" executed successfully\n", - "2026-01-23 07:06:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:34 CET)\" (scheduled at 2026-01-23 07:06:34.010875+01:00)\n", - "2026-01-23 07:06:34,190 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94758 | 4959.1 |\n", - "| H4 | uptrend | 510.61 | 40.9474 | 3.13621 | 4959.1 |\n", - "| H1 | uptrend | 788.78 | 20.7758 | 2.45814 | 4959.1 |\n", - "| M30 | uptrend | 755.88 | 13.3724 | 1.51619 | 4959.1 |\n", - "| M15 | uptrend | 976.69 | 7.7974 | 1.14235 | 4959.11 |\n", - "| M5 | uptrend | 879 | 3.6633 | 0.483007 | 4959.11 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.54)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298364.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:06:35,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:45,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:06:55,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:05,277 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:15,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:25,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:26 CET)\" (scheduled at 2026-01-23 07:07:26.633942+01:00)\n", - "2026-01-23 07:07:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:26 CET)\" executed successfully\n", - "2026-01-23 07:07:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:32 CET)\" (scheduled at 2026-01-23 07:07:32.132962+01:00)\n", - "2026-01-23 07:07:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:32 CET)\" executed successfully\n", - "2026-01-23 07:07:34,182 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:34 CET)\" (scheduled at 2026-01-23 07:07:34.010875+01:00)\n", - "2026-01-23 07:07:34,379 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.15 | 88.7586 | 9.94735 | 4958.16 |\n", - "| H4 | uptrend | 510.57 | 40.9474 | 3.13599 | 4958.16 |\n", - "| H1 | uptrend | 788.71 | 20.7758 | 2.45791 | 4958.16 |\n", - "| M30 | uptrend | 755.77 | 13.3724 | 1.51596 | 4958.16 |\n", - "| M15 | uptrend | 976.5 | 7.7974 | 1.14213 | 4958.16 |\n", - "| M5 | uptrend | 878.6 | 3.6633 | 0.482783 | 4958.16 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298318.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:07:35,349 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:45,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:07:55,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:05,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:15,456 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:25,473 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:26,733 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:26 CET)\" (scheduled at 2026-01-23 07:08:26.633942+01:00)\n", - "2026-01-23 07:08:26,733 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:26 CET)\" executed successfully\n", - "2026-01-23 07:08:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:32 CET)\" (scheduled at 2026-01-23 07:08:32.132962+01:00)\n", - "2026-01-23 07:08:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:32 CET)\" executed successfully\n", - "2026-01-23 07:08:34,017 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:34 CET)\" (scheduled at 2026-01-23 07:08:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:08:34,259 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:09:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94733 | 4958.08 |\n", - "| H4 | uptrend | 510.57 | 40.9474 | 3.13597 | 4958.08 |\n", - "| H1 | uptrend | 788.7 | 20.7758 | 2.45789 | 4958.07 |\n", - "| M30 | uptrend | 755.76 | 13.3724 | 1.51594 | 4958.07 |\n", - "| M15 | uptrend | 976.48 | 7.7974 | 1.14211 | 4958.07 |\n", - "| M5 | uptrend | 878.56 | 3.6633 | 0.482762 | 4958.07 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.51)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 298313.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:08:35,497 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:45,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:08:55,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:05,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:15,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:25,617 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:26 CET)\" (scheduled at 2026-01-23 07:09:26.633942+01:00)\n", - "2026-01-23 07:09:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:26 CET)\" executed successfully\n", - "2026-01-23 07:09:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:32 CET)\" (scheduled at 2026-01-23 07:09:32.132962+01:00)\n", - "2026-01-23 07:09:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:32 CET)\" executed successfully\n", - "2026-01-23 07:09:34,241 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:34 CET)\" (scheduled at 2026-01-23 07:09:34.010875+01:00)\n", - "2026-01-23 07:09:34,397 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94694 | 4956.42 |\n", - "| H4 | uptrend | 509.33 | 41.0417 | 3.13558 | 4956.42 |\n", - "| H1 | uptrend | 785.02 | 20.8701 | 2.4575 | 4956.42 |\n", - "| M30 | uptrend | 750.27 | 13.4667 | 1.51555 | 4956.42 |\n", - "| M15 | uptrend | 964.49 | 7.8917 | 1.14172 | 4956.42 |\n", - "| M5 | uptrend | 853.87 | 3.7661 | 0.482372 | 4956.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 652.00)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295747.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:09:35,645 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:45,677 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:09:55,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:05,716 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:15,738 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:25,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:26 CET)\" (scheduled at 2026-01-23 07:10:26.633942+01:00)\n", - "2026-01-23 07:10:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:26 CET)\" executed successfully\n", - "2026-01-23 07:10:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:32 CET)\" (scheduled at 2026-01-23 07:10:32.132962+01:00)\n", - "2026-01-23 07:10:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:32 CET)\" executed successfully\n", - "2026-01-23 07:10:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:34 CET)\" (scheduled at 2026-01-23 07:10:34.010875+01:00)\n", - "2026-01-23 07:10:34,185 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:11:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94647 | 4954.44 |\n", - "| H4 | uptrend | 508.09 | 41.1359 | 3.13511 | 4954.44 |\n", - "| H1 | uptrend | 781.34 | 20.9644 | 2.45704 | 4954.44 |\n", - "| M30 | uptrend | 744.83 | 13.561 | 1.51509 | 4954.47 |\n", - "| M15 | uptrend | 952.72 | 7.986 | 1.14126 | 4954.47 |\n", - "| M5 | uptrend | 866.54 | 3.6366 | 0.472695 | 4954.47 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 651.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294693.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:10:35,788 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:45,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:10:55,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:05,858 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:15,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:25,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:26 CET)\" (scheduled at 2026-01-23 07:11:26.633942+01:00)\n", - "2026-01-23 07:11:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:26 CET)\" executed successfully\n", - "2026-01-23 07:11:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:32 CET)\" (scheduled at 2026-01-23 07:11:32.132962+01:00)\n", - "2026-01-23 07:11:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:32 CET)\" executed successfully\n", - "2026-01-23 07:11:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:34 CET)\" (scheduled at 2026-01-23 07:11:34.010875+01:00)\n", - "2026-01-23 07:11:34,159 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:12:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94582 | 4951.69 |\n", - "| H4 | uptrend | 505.65 | 41.3259 | 3.13446 | 4951.69 |\n", - "| H1 | uptrend | 774.11 | 21.1544 | 2.45639 | 4951.69 |\n", - "| M30 | uptrend | 734.22 | 13.751 | 1.51444 | 4951.69 |\n", - "| M15 | uptrend | 930.04 | 8.176 | 1.1406 | 4951.69 |\n", - "| M5 | uptrend | 822.37 | 3.8266 | 0.472038 | 4951.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 650.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 289894.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:11:36,021 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:46,035 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:11:56,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:06,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:16,105 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:26,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:26,639 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:26 CET)\" (scheduled at 2026-01-23 07:12:26.633942+01:00)\n", - "2026-01-23 07:12:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:26 CET)\" executed successfully\n", - "2026-01-23 07:12:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:32 CET)\" (scheduled at 2026-01-23 07:12:32.132962+01:00)\n", - "2026-01-23 07:12:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:32 CET)\" executed successfully\n", - "2026-01-23 07:12:34,031 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:34 CET)\" (scheduled at 2026-01-23 07:12:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:12:34,268 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:13:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.94 | 88.7586 | 9.94456 | 4946.32 |\n", - "| H4 | uptrend | 500.57 | 41.7281 | 3.13319 | 4946.32 |\n", - "| H1 | uptrend | 759.28 | 21.5565 | 2.45512 | 4946.31 |\n", - "| M30 | uptrend | 712.76 | 14.1531 | 1.51316 | 4946.31 |\n", - "| M15 | uptrend | 885.46 | 8.5781 | 1.13934 | 4946.34 |\n", - "| M5 | uptrend | 742.17 | 4.2288 | 0.470774 | 4946.34 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 280602.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:12:36,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:46,184 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:12:56,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:06,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:16,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:26,271 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:26,799 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:26 CET)\" (scheduled at 2026-01-23 07:13:26.633942+01:00)\n", - "2026-01-23 07:13:26,811 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:26 CET)\" executed successfully\n", - "2026-01-23 07:13:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:32 CET)\" (scheduled at 2026-01-23 07:13:32.132962+01:00)\n", - "2026-01-23 07:13:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:32 CET)\" executed successfully\n", - "2026-01-23 07:13:34,071 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:34 CET)\" (scheduled at 2026-01-23 07:13:34.010875+01:00)\n", - "2026-01-23 07:13:34,241 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:14:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 746.94 | 88.7586 | 9.94464 | 4946.67 |\n", - "| H4 | uptrend | 500.18 | 41.7617 | 3.13327 | 4946.67 |\n", - "| H1 | uptrend | 758.13 | 21.5901 | 2.4552 | 4946.67 |\n", - "| M30 | uptrend | 711.11 | 14.1867 | 1.51325 | 4946.67 |\n", - "| M15 | uptrend | 882.07 | 8.6117 | 1.13941 | 4946.67 |\n", - "| M5 | uptrend | 736.45 | 4.2624 | 0.470852 | 4946.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.24)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 279907.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:13:36,296 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:46,315 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:13:56,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:06,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:16,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:26,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:26,777 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:26 CET)\" (scheduled at 2026-01-23 07:14:26.633942+01:00)\n", - "2026-01-23 07:14:26,779 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:26 CET)\" executed successfully\n", - "2026-01-23 07:14:32,150 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:32 CET)\" (scheduled at 2026-01-23 07:14:32.132962+01:00)\n", - "2026-01-23 07:14:32,150 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:32 CET)\" executed successfully\n", - "2026-01-23 07:14:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:34 CET)\" (scheduled at 2026-01-23 07:14:34.010875+01:00)\n", - "2026-01-23 07:14:34,192 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:15:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94599 | 4952.38 |\n", - "| H4 | uptrend | 500.4 | 41.7617 | 3.13462 | 4952.38 |\n", - "| H1 | uptrend | 758.54 | 21.5901 | 2.45655 | 4952.38 |\n", - "| M30 | uptrend | 711.74 | 14.1867 | 1.51458 | 4952.3 |\n", - "| M15 | uptrend | 883.1 | 8.6117 | 1.14074 | 4952.3 |\n", - "| M5 | uptrend | 738.53 | 4.2624 | 0.472183 | 4952.3 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 280158.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:14:36,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:46,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:14:56,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:06,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:16,530 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:26,564 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:26 CET)\" (scheduled at 2026-01-23 07:15:26.633942+01:00)\n", - "2026-01-23 07:15:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:26 CET)\" executed successfully\n", - "2026-01-23 07:15:32,182 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:32 CET)\" (scheduled at 2026-01-23 07:15:32.132962+01:00)\n", - "2026-01-23 07:15:32,182 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:32 CET)\" executed successfully\n", - "2026-01-23 07:15:34,372 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:34 CET)\" (scheduled at 2026-01-23 07:15:34.010875+01:00)\n", - "2026-01-23 07:15:34,547 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:16:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94632 | 4953.78 |\n", - "| H4 | uptrend | 500.45 | 41.7617 | 3.13495 | 4953.78 |\n", - "| H1 | uptrend | 758.64 | 21.5901 | 2.45688 | 4953.78 |\n", - "| M30 | uptrend | 711.9 | 14.1867 | 1.51493 | 4953.78 |\n", - "| M15 | uptrend | 956.04 | 8.1151 | 1.16376 | 4953.78 |\n", - "| M5 | uptrend | 755.6 | 4.0765 | 0.462031 | 4953.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 285245.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:15:36,592 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:46,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:15:56,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:06,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:16,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:26,658 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:26 CET)\" (scheduled at 2026-01-23 07:16:26.633942+01:00)\n", - "2026-01-23 07:16:26,658 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:26 CET)\" executed successfully\n", - "2026-01-23 07:16:26,707 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:32,171 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:32 CET)\" (scheduled at 2026-01-23 07:16:32.132962+01:00)\n", - "2026-01-23 07:16:32,171 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:32 CET)\" executed successfully\n", - "2026-01-23 07:16:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:34 CET)\" (scheduled at 2026-01-23 07:16:34.010875+01:00)\n", - "2026-01-23 07:16:34,238 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:17:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94605 | 4952.65 |\n", - "| H4 | uptrend | 500.41 | 41.7617 | 3.13469 | 4952.65 |\n", - "| H1 | uptrend | 758.56 | 21.5901 | 2.45661 | 4952.65 |\n", - "| M30 | uptrend | 711.78 | 14.1867 | 1.51466 | 4952.65 |\n", - "| M15 | uptrend | 940.42 | 8.248 | 1.16349 | 4952.63 |\n", - "| M5 | uptrend | 731.33 | 4.2093 | 0.461759 | 4952.63 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283316.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:16:36,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:46,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:16:56,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:06,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:16,814 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:26 CET)\" (scheduled at 2026-01-23 07:17:26.633942+01:00)\n", - "2026-01-23 07:17:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:26 CET)\" executed successfully\n", - "2026-01-23 07:17:26,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:32 CET)\" (scheduled at 2026-01-23 07:17:32.132962+01:00)\n", - "2026-01-23 07:17:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:32 CET)\" executed successfully\n", - "2026-01-23 07:17:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:34 CET)\" (scheduled at 2026-01-23 07:17:34.010875+01:00)\n", - "2026-01-23 07:17:34,167 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:18:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94603 | 4952.54 |\n", - "| H4 | uptrend | 500.4 | 41.7617 | 3.13466 | 4952.54 |\n", - "| H1 | uptrend | 758.55 | 21.5901 | 2.45659 | 4952.54 |\n", - "| M30 | uptrend | 711.77 | 14.1867 | 1.51464 | 4952.54 |\n", - "| M15 | uptrend | 934.09 | 8.3037 | 1.16347 | 4952.54 |\n", - "| M5 | uptrend | 721.74 | 4.2651 | 0.461738 | 4952.54 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282550.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:17:36,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:46,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:17:56,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:06,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:16,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:26 CET)\" (scheduled at 2026-01-23 07:18:26.633942+01:00)\n", - "2026-01-23 07:18:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:26 CET)\" executed successfully\n", - "2026-01-23 07:18:26,982 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:32 CET)\" (scheduled at 2026-01-23 07:18:32.132962+01:00)\n", - "2026-01-23 07:18:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:32 CET)\" executed successfully\n", - "2026-01-23 07:18:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:34 CET)\" (scheduled at 2026-01-23 07:18:34.010875+01:00)\n", - "2026-01-23 07:18:34,208 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:19:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.9461 | 4952.85 |\n", - "| H4 | uptrend | 500.42 | 41.7617 | 3.13473 | 4952.85 |\n", - "| H1 | uptrend | 758.58 | 21.5901 | 2.45666 | 4952.85 |\n", - "| M30 | uptrend | 711.8 | 14.1867 | 1.51471 | 4952.86 |\n", - "| M15 | uptrend | 934.16 | 8.3037 | 1.16354 | 4952.86 |\n", - "| M5 | uptrend | 721.86 | 4.2651 | 0.461814 | 4952.86 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282565.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:18:36,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:47,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:18:57,047 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:07,084 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:17,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:26 CET)\" (scheduled at 2026-01-23 07:19:26.633942+01:00)\n", - "2026-01-23 07:19:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:26 CET)\" executed successfully\n", - "2026-01-23 07:19:27,130 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:32 CET)\" (scheduled at 2026-01-23 07:19:32.132962+01:00)\n", - "2026-01-23 07:19:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:32 CET)\" executed successfully\n", - "2026-01-23 07:19:34,072 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:34 CET)\" (scheduled at 2026-01-23 07:19:34.010875+01:00)\n", - "2026-01-23 07:19:34,250 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:20:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94629 | 4953.67 |\n", - "| H4 | uptrend | 500.45 | 41.7617 | 3.13493 | 4953.67 |\n", - "| H1 | uptrend | 758.64 | 21.5901 | 2.45686 | 4953.67 |\n", - "| M30 | uptrend | 711.89 | 14.1867 | 1.5149 | 4953.67 |\n", - "| M15 | uptrend | 934.31 | 8.3037 | 1.16374 | 4953.67 |\n", - "| M5 | uptrend | 722.16 | 4.2651 | 0.462005 | 4953.67 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282601.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:19:37,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:47,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:19:57,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:07,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:17,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:26,660 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:26 CET)\" (scheduled at 2026-01-23 07:20:26.633942+01:00)\n", - "2026-01-23 07:20:26,660 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:26 CET)\" executed successfully\n", - "2026-01-23 07:20:27,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:32,144 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:32 CET)\" (scheduled at 2026-01-23 07:20:32.132962+01:00)\n", - "2026-01-23 07:20:32,171 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:32 CET)\" executed successfully\n", - "2026-01-23 07:20:34,056 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:34 CET)\" (scheduled at 2026-01-23 07:20:34.010875+01:00)\n", - "2026-01-23 07:20:34,248 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:21:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94657 | 4954.84 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.1352 | 4954.84 |\n", - "| H1 | uptrend | 758.72 | 21.5901 | 2.45713 | 4954.84 |\n", - "| M30 | uptrend | 712.02 | 14.1867 | 1.51518 | 4954.84 |\n", - "| M15 | uptrend | 934.53 | 8.3037 | 1.16401 | 4954.84 |\n", - "| M5 | uptrend | 746.38 | 4.0326 | 0.451473 | 4954.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283605.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:20:37,298 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:47,316 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:20:57,346 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:07,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:17,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:26 CET)\" (scheduled at 2026-01-23 07:21:26.633942+01:00)\n", - "2026-01-23 07:21:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:26 CET)\" executed successfully\n", - "2026-01-23 07:21:27,440 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:32 CET)\" (scheduled at 2026-01-23 07:21:32.132962+01:00)\n", - "2026-01-23 07:21:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:32 CET)\" executed successfully\n", - "2026-01-23 07:21:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:34 CET)\" (scheduled at 2026-01-23 07:21:34.010875+01:00)\n", - "2026-01-23 07:21:34,174 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:22:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94677 | 4955.71 |\n", - "| H4 | uptrend | 500.52 | 41.7617 | 3.13541 | 4955.71 |\n", - "| H1 | uptrend | 758.79 | 21.5901 | 2.45734 | 4955.71 |\n", - "| M30 | uptrend | 712.12 | 14.1867 | 1.51538 | 4955.71 |\n", - "| M15 | uptrend | 932.77 | 8.3209 | 1.16422 | 4955.71 |\n", - "| M5 | uptrend | 738.85 | 4.0754 | 0.451669 | 4955.71 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.47)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283215.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:21:37,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:47,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:21:57,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:07,580 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:17,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:26,644 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:26 CET)\" (scheduled at 2026-01-23 07:22:26.633942+01:00)\n", - "2026-01-23 07:22:26,644 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:26 CET)\" executed successfully\n", - "2026-01-23 07:22:27,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:32,145 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:32 CET)\" (scheduled at 2026-01-23 07:22:32.132962+01:00)\n", - "2026-01-23 07:22:32,145 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:32 CET)\" executed successfully\n", - "2026-01-23 07:22:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:34 CET)\" (scheduled at 2026-01-23 07:22:34.010875+01:00)\n", - "2026-01-23 07:22:34,159 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:23:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.9469 | 4956.23 |\n", - "| H4 | uptrend | 500.54 | 41.7617 | 3.13553 | 4956.23 |\n", - "| H1 | uptrend | 758.82 | 21.5901 | 2.45746 | 4956.23 |\n", - "| M30 | uptrend | 712.17 | 14.1867 | 1.51551 | 4956.23 |\n", - "| M15 | uptrend | 927.77 | 8.3666 | 1.16434 | 4956.23 |\n", - "| M5 | uptrend | 730.86 | 4.1211 | 0.451792 | 4956.23 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282605.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:22:37,660 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:47,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:22:57,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:07,733 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:17,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:26,635 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:26 CET)\" (scheduled at 2026-01-23 07:23:26.633942+01:00)\n", - "2026-01-23 07:23:26,635 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:26 CET)\" executed successfully\n", - "2026-01-23 07:23:27,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:32,154 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:32 CET)\" (scheduled at 2026-01-23 07:23:32.132962+01:00)\n", - "2026-01-23 07:23:32,154 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:32 CET)\" executed successfully\n", - "2026-01-23 07:23:34,025 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:34 CET)\" (scheduled at 2026-01-23 07:23:34.010875+01:00)\n", - "2026-01-23 07:23:34,213 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:24:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94669 | 4955.33 |\n", - "| H4 | uptrend | 500.51 | 41.7617 | 3.13532 | 4955.33 |\n", - "| H1 | uptrend | 758.76 | 21.5901 | 2.45726 | 4955.38 |\n", - "| M30 | uptrend | 712.09 | 14.1867 | 1.51532 | 4955.44 |\n", - "| M15 | uptrend | 921.88 | 8.4187 | 1.16415 | 4955.44 |\n", - "| M5 | uptrend | 721.43 | 4.1733 | 0.451605 | 4955.44 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.46)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 281859.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:23:37,788 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:47,814 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:23:57,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:07,862 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:17,892 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:26 CET)\" (scheduled at 2026-01-23 07:24:26.633942+01:00)\n", - "2026-01-23 07:24:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:26 CET)\" executed successfully\n", - "2026-01-23 07:24:27,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:32 CET)\" (scheduled at 2026-01-23 07:24:32.132962+01:00)\n", - "2026-01-23 07:24:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:32 CET)\" executed successfully\n", - "2026-01-23 07:24:34,077 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:34 CET)\" (scheduled at 2026-01-23 07:24:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94707 | 4956.97 |\n", - "| H4 | uptrend | 500.57 | 41.7617 | 3.13571 | 4956.97 |\n", - "| H1 | uptrend | 758.88 | 21.5901 | 2.45763 | 4956.97 |\n", - "| M30 | uptrend | 712.26 | 14.1867 | 1.51568 | 4956.97 |\n", - "| M15 | uptrend | 922.16 | 8.4187 | 1.16451 | 4956.97 |\n", - "| M5 | uptrend | 722 | 4.1733 | 0.451967 | 4956.97 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 281928.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:24:34,288 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:25:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:24:37,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:47,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:24:57,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:08,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:18,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:26,654 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:26 CET)\" (scheduled at 2026-01-23 07:25:26.633942+01:00)\n", - "2026-01-23 07:25:26,654 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:26 CET)\" executed successfully\n", - "2026-01-23 07:25:28,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:32 CET)\" (scheduled at 2026-01-23 07:25:32.132962+01:00)\n", - "2026-01-23 07:25:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:32 CET)\" executed successfully\n", - "2026-01-23 07:25:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:34 CET)\" (scheduled at 2026-01-23 07:25:34.010875+01:00)\n", - "2026-01-23 07:25:34,215 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:26:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.16 | 88.7586 | 9.94748 | 4958.7 |\n", - "| H4 | uptrend | 500.64 | 41.7617 | 3.13612 | 4958.7 |\n", - "| H1 | uptrend | 759 | 21.5901 | 2.45804 | 4958.7 |\n", - "| M30 | uptrend | 712.45 | 14.1867 | 1.51609 | 4958.7 |\n", - "| M15 | uptrend | 909.75 | 8.5366 | 1.16492 | 4958.7 |\n", - "| M5 | uptrend | 727.16 | 4.0532 | 0.442094 | 4958.7 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.55)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 281422.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:25:38,096 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:48,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:25:58,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:08,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:18,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:26,732 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:26 CET)\" (scheduled at 2026-01-23 07:26:26.633942+01:00)\n", - "2026-01-23 07:26:26,732 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:26 CET)\" executed successfully\n", - "2026-01-23 07:26:28,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:32,541 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:32 CET)\" (scheduled at 2026-01-23 07:26:32.132962+01:00)\n", - "2026-01-23 07:26:32,541 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:32 CET)\" executed successfully\n", - "2026-01-23 07:26:34,155 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:34 CET)\" (scheduled at 2026-01-23 07:26:34.010875+01:00)\n", - "2026-01-23 07:26:34,335 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:27:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94695 | 4956.47 |\n", - "| H4 | uptrend | 500.55 | 41.7617 | 3.13559 | 4956.47 |\n", - "| H1 | uptrend | 758.84 | 21.5901 | 2.45752 | 4956.47 |\n", - "| M30 | uptrend | 712.2 | 14.1867 | 1.51557 | 4956.48 |\n", - "| M15 | uptrend | 909.34 | 8.5366 | 1.1644 | 4956.48 |\n", - "| M5 | uptrend | 706.01 | 4.1696 | 0.44157 | 4956.48 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 280510.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:26:38,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:48,264 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:26:58,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:08,303 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:18,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:26,739 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:26 CET)\" (scheduled at 2026-01-23 07:27:26.633942+01:00)\n", - "2026-01-23 07:27:26,739 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:26 CET)\" executed successfully\n", - "2026-01-23 07:27:28,356 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:32 CET)\" (scheduled at 2026-01-23 07:27:32.132962+01:00)\n", - "2026-01-23 07:27:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:32 CET)\" executed successfully\n", - "2026-01-23 07:27:34,083 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:34 CET)\" (scheduled at 2026-01-23 07:27:34.010875+01:00)\n", - "2026-01-23 07:27:34,240 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:28:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.9469 | 4956.24 |\n", - "| H4 | uptrend | 500.54 | 41.7617 | 3.13553 | 4956.24 |\n", - "| H1 | uptrend | 758.82 | 21.5901 | 2.45746 | 4956.24 |\n", - "| M30 | uptrend | 712.18 | 14.1867 | 1.51551 | 4956.24 |\n", - "| M15 | uptrend | 909.3 | 8.5366 | 1.16434 | 4956.24 |\n", - "| M5 | uptrend | 690.66 | 4.2618 | 0.441513 | 4956.24 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 279889.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:27:38,392 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:48,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:27:58,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:08,460 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:18,551 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:26,831 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:26 CET)\" (scheduled at 2026-01-23 07:28:26.633942+01:00)\n", - "2026-01-23 07:28:26,831 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:26 CET)\" executed successfully\n", - "2026-01-23 07:28:28,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:32 CET)\" (scheduled at 2026-01-23 07:28:32.132962+01:00)\n", - "2026-01-23 07:28:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:32 CET)\" executed successfully\n", - "2026-01-23 07:28:34,053 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:34 CET)\" (scheduled at 2026-01-23 07:28:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:28:34,292 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:29:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94656 | 4954.79 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13519 | 4954.79 |\n", - "| H1 | uptrend | 758.72 | 21.5901 | 2.45712 | 4954.79 |\n", - "| M30 | uptrend | 712.02 | 14.1867 | 1.51517 | 4954.79 |\n", - "| M15 | uptrend | 909.03 | 8.5366 | 1.164 | 4954.79 |\n", - "| M5 | uptrend | 681.09 | 4.3182 | 0.441163 | 4954.76 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 279463.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:28:38,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:48,613 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:28:58,629 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:08,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:18,687 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:26 CET)\" (scheduled at 2026-01-23 07:29:26.633942+01:00)\n", - "2026-01-23 07:29:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:26 CET)\" executed successfully\n", - "2026-01-23 07:29:28,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:32 CET)\" (scheduled at 2026-01-23 07:29:32.132962+01:00)\n", - "2026-01-23 07:29:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:32 CET)\" executed successfully\n", - "2026-01-23 07:29:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:34 CET)\" (scheduled at 2026-01-23 07:29:34.010875+01:00)\n", - "2026-01-23 07:29:34,179 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:30:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94626 | 4953.51 |\n", - "| H4 | uptrend | 500.44 | 41.7617 | 3.13489 | 4953.51 |\n", - "| H1 | uptrend | 758.62 | 21.5901 | 2.45682 | 4953.51 |\n", - "| M30 | uptrend | 711.87 | 14.1867 | 1.51487 | 4953.51 |\n", - "| M15 | uptrend | 908.79 | 8.5366 | 1.1637 | 4953.51 |\n", - "| M5 | uptrend | 664.27 | 4.4246 | 0.440868 | 4953.51 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.41)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 278752.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:29:38,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:48,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:29:58,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:00,017 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 08:00:00 CET)\" (scheduled at 2026-01-23 07:30:00+01:00)\n", - "2026-01-23 07:30:00,017 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 08:00:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 07:30:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 21.74 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:30:08,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:18,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:26,991 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:26 CET)\" (scheduled at 2026-01-23 07:30:26.633942+01:00)\n", - "2026-01-23 07:30:26,991 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:26 CET)\" executed successfully\n", - "2026-01-23 07:30:28,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:32 CET)\" (scheduled at 2026-01-23 07:30:32.132962+01:00)\n", - "2026-01-23 07:30:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:32 CET)\" executed successfully\n", - "2026-01-23 07:30:34,035 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:34 CET)\" (scheduled at 2026-01-23 07:30:34.010875+01:00)\n", - "2026-01-23 07:30:34,197 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:31:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94646 | 4954.39 |\n", - "| H4 | uptrend | 500.47 | 41.7617 | 3.1351 | 4954.39 |\n", - "| H1 | uptrend | 758.69 | 21.5901 | 2.45702 | 4954.39 |\n", - "| M30 | uptrend | 751.99 | 13.3826 | 1.50953 | 4954.39 |\n", - "| M15 | uptrend | 973.13 | 8.136 | 1.18761 | 4954.39 |\n", - "| M5 | uptrend | 663.6 | 4.3178 | 0.429794 | 4954.39 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 285803.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:30:38,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:48,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:30:58,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:08,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:18,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:26,636 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:26 CET)\" (scheduled at 2026-01-23 07:31:26.633942+01:00)\n", - "2026-01-23 07:31:26,636 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:26 CET)\" executed successfully\n", - "2026-01-23 07:31:29,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:32 CET)\" (scheduled at 2026-01-23 07:31:32.132962+01:00)\n", - "2026-01-23 07:31:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:32 CET)\" executed successfully\n", - "2026-01-23 07:31:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:34 CET)\" (scheduled at 2026-01-23 07:31:34.010875+01:00)\n", - "2026-01-23 07:31:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:32:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94638 | 4954.06 |\n", - "| H4 | uptrend | 500.46 | 41.7617 | 3.13502 | 4954.06 |\n", - "| H1 | uptrend | 758.67 | 21.5901 | 2.45695 | 4954.06 |\n", - "| M30 | uptrend | 747.19 | 13.4676 | 1.50944 | 4953.99 |\n", - "| M15 | uptrend | 962.99 | 8.221 | 1.18751 | 4953.99 |\n", - "| M5 | uptrend | 650.65 | 4.4028 | 0.429706 | 4954.02 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 284290.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:31:39,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:49,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:31:59,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:09,085 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:19,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:26 CET)\" (scheduled at 2026-01-23 07:32:26.633942+01:00)\n", - "2026-01-23 07:32:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:26 CET)\" executed successfully\n", - "2026-01-23 07:32:29,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:32 CET)\" (scheduled at 2026-01-23 07:32:32.132962+01:00)\n", - "2026-01-23 07:32:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:32 CET)\" executed successfully\n", - "2026-01-23 07:32:34,021 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:34 CET)\" (scheduled at 2026-01-23 07:32:34.010875+01:00)\n", - "2026-01-23 07:32:34,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:33:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94593 | 4952.15 |\n", - "| H4 | uptrend | 500.39 | 41.7617 | 3.13457 | 4952.15 |\n", - "| H1 | uptrend | 758.53 | 21.5901 | 2.45649 | 4952.15 |\n", - "| M30 | uptrend | 743.19 | 13.5362 | 1.509 | 4952.15 |\n", - "| M15 | uptrend | 954.67 | 8.2896 | 1.18708 | 4952.15 |\n", - "| M5 | uptrend | 640.01 | 4.4714 | 0.429264 | 4952.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.38)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283027.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:32:39,144 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:49,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:32:59,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:09,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:19,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:26 CET)\" (scheduled at 2026-01-23 07:33:26.633942+01:00)\n", - "2026-01-23 07:33:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:26 CET)\" executed successfully\n", - "2026-01-23 07:33:29,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:32 CET)\" (scheduled at 2026-01-23 07:33:32.132962+01:00)\n", - "2026-01-23 07:33:32,134 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:32 CET)\" executed successfully\n", - "2026-01-23 07:33:34,022 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:34 CET)\" (scheduled at 2026-01-23 07:33:34.010875+01:00)\n", - "2026-01-23 07:33:34,211 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:34:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.9461 | 4952.87 |\n", - "| H4 | uptrend | 500.42 | 41.7617 | 3.13474 | 4952.87 |\n", - "| H1 | uptrend | 758.58 | 21.5901 | 2.45667 | 4952.87 |\n", - "| M30 | uptrend | 743.28 | 13.5362 | 1.50917 | 4952.87 |\n", - "| M15 | uptrend | 954.81 | 8.2896 | 1.18725 | 4952.87 |\n", - "| M5 | uptrend | 640.27 | 4.4714 | 0.429434 | 4952.87 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283059.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:33:39,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:49,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:33:59,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:09,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:19,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:26 CET)\" (scheduled at 2026-01-23 07:34:26.633942+01:00)\n", - "2026-01-23 07:34:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:26 CET)\" executed successfully\n", - "2026-01-23 07:34:29,373 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:32 CET)\" (scheduled at 2026-01-23 07:34:32.132962+01:00)\n", - "2026-01-23 07:34:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:32 CET)\" executed successfully\n", - "2026-01-23 07:34:34,065 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:34 CET)\" (scheduled at 2026-01-23 07:34:34.010875+01:00)\n", - "2026-01-23 07:34:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:35:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94634 | 4953.87 |\n", - "| H4 | uptrend | 500.45 | 41.7617 | 3.13497 | 4953.87 |\n", - "| H1 | uptrend | 758.65 | 21.5901 | 2.4569 | 4953.87 |\n", - "| M30 | uptrend | 743.39 | 13.5362 | 1.50941 | 4953.87 |\n", - "| M15 | uptrend | 955 | 8.2896 | 1.18748 | 4953.87 |\n", - "| M5 | uptrend | 640.62 | 4.4714 | 0.429671 | 4953.87 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283103.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:34:39,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:49,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:34:59,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:09,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:19,480 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:26,856 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:26 CET)\" (scheduled at 2026-01-23 07:35:26.633942+01:00)\n", - "2026-01-23 07:35:26,858 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:26 CET)\" executed successfully\n", - "2026-01-23 07:35:29,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:32 CET)\" (scheduled at 2026-01-23 07:35:32.132962+01:00)\n", - "2026-01-23 07:35:32,137 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:32 CET)\" executed successfully\n", - "2026-01-23 07:35:34,026 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:34 CET)\" (scheduled at 2026-01-23 07:35:34.010875+01:00)\n", - "2026-01-23 07:35:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:36:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.9465 | 4954.55 |\n", - "| H4 | uptrend | 500.48 | 41.7617 | 3.13514 | 4954.55 |\n", - "| H1 | uptrend | 758.7 | 21.5901 | 2.45706 | 4954.55 |\n", - "| M30 | uptrend | 743.47 | 13.5362 | 1.50957 | 4954.55 |\n", - "| M15 | uptrend | 955.13 | 8.2896 | 1.18764 | 4954.55 |\n", - "| M5 | uptrend | 658.61 | 4.2256 | 0.417451 | 4954.55 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283844.3 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:35:39,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:49,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:35:59,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:09,577 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:19,601 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:26 CET)\" (scheduled at 2026-01-23 07:36:26.633942+01:00)\n", - "2026-01-23 07:36:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:26 CET)\" executed successfully\n", - "2026-01-23 07:36:29,614 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:32,376 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:32 CET)\" (scheduled at 2026-01-23 07:36:32.132962+01:00)\n", - "2026-01-23 07:36:32,376 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:32 CET)\" executed successfully\n", - "2026-01-23 07:36:34,036 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:34 CET)\" (scheduled at 2026-01-23 07:36:34.010875+01:00)\n", - "2026-01-23 07:36:34,206 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:37:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94632 | 4953.77 |\n", - "| H4 | uptrend | 500.45 | 41.7617 | 3.13495 | 4953.77 |\n", - "| H1 | uptrend | 758.64 | 21.5901 | 2.45688 | 4953.77 |\n", - "| M30 | uptrend | 743.38 | 13.5362 | 1.50938 | 4953.77 |\n", - "| M15 | uptrend | 954.98 | 8.2896 | 1.18746 | 4953.77 |\n", - "| M5 | uptrend | 650.08 | 4.2792 | 0.417267 | 4953.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283479.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:36:39,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:49,676 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:36:59,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:09,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:19,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:26 CET)\" (scheduled at 2026-01-23 07:37:26.633942+01:00)\n", - "2026-01-23 07:37:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:26 CET)\" executed successfully\n", - "2026-01-23 07:37:29,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:32,558 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:32 CET)\" (scheduled at 2026-01-23 07:37:32.132962+01:00)\n", - "2026-01-23 07:37:32,558 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:32 CET)\" executed successfully\n", - "2026-01-23 07:37:34,059 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:34 CET)\" (scheduled at 2026-01-23 07:37:34.010875+01:00)\n", - "2026-01-23 07:37:34,215 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:38:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.9465 | 4954.53 |\n", - "| H4 | uptrend | 500.48 | 41.7617 | 3.13513 | 4954.53 |\n", - "| H1 | uptrend | 758.7 | 21.5901 | 2.45706 | 4954.53 |\n", - "| M30 | uptrend | 743.47 | 13.5362 | 1.50956 | 4954.53 |\n", - "| M15 | uptrend | 955.13 | 8.2896 | 1.18764 | 4954.53 |\n", - "| M5 | uptrend | 650.36 | 4.2792 | 0.417447 | 4954.53 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283513.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:37:39,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:49,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:37:59,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:09,832 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:19,861 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:26,675 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:26 CET)\" (scheduled at 2026-01-23 07:38:26.633942+01:00)\n", - "2026-01-23 07:38:26,675 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:26 CET)\" executed successfully\n", - "2026-01-23 07:38:29,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:32 CET)\" (scheduled at 2026-01-23 07:38:32.132962+01:00)\n", - "2026-01-23 07:38:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:32 CET)\" executed successfully\n", - "2026-01-23 07:38:34,065 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:34 CET)\" (scheduled at 2026-01-23 07:38:34.010875+01:00)\n", - "2026-01-23 07:38:34,222 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94645 | 4954.35 |\n", - "| H4 | uptrend | 500.47 | 41.7617 | 3.13509 | 4954.35 |\n", - "| H1 | uptrend | 758.69 | 21.5901 | 2.45702 | 4954.35 |\n", - "| M30 | uptrend | 743.45 | 13.5362 | 1.50952 | 4954.35 |\n", - "| M15 | uptrend | 955.09 | 8.2896 | 1.18759 | 4954.35 |\n", - "| M5 | uptrend | 650.29 | 4.2792 | 0.417404 | 4954.35 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283505.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:38:39,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:49,920 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:38:59,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:39:09,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:39:19,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:39:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:26 CET)\" (scheduled at 2026-01-23 07:39:26.633942+01:00)\n", - "2026-01-23 07:39:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:26 CET)\" executed successfully\n", - "2026-01-23 07:39:30,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:39:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:32 CET)\" (scheduled at 2026-01-23 07:39:32.132962+01:00)\n", - "2026-01-23 07:39:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:32 CET)\" executed successfully\n", - "2026-01-23 07:39:34,316 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:34 CET)\" (scheduled at 2026-01-23 07:39:34.010875+01:00)\n", - "2026-01-23 07:39:34,472 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:40:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94653 | 4954.69 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13517 | 4954.69 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.4571 | 4954.69 |\n", - "| M30 | uptrend | 743.49 | 13.5362 | 1.5096 | 4954.69 |\n", - "| M15 | uptrend | 955.16 | 8.2896 | 1.18768 | 4954.69 |\n", - "| M5 | uptrend | 648.25 | 4.2934 | 0.417484 | 4954.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283434.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:39:34,822 - INFO - Running job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 08:39:34 CET)\" (scheduled at 2026-01-23 07:39:34.806528+01:00)\n", - "2026-01-23 07:39:34,832 - INFO - Job \"P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-23 08:39:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "[07:39:34] πŸ”„ Running scheduled P&L sync...\n", - "❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 17392 and this is thread id 136824.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:39:40,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:39:50,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:00,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:10,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:20,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:26 CET)\" (scheduled at 2026-01-23 07:40:26.633942+01:00)\n", - "2026-01-23 07:40:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:26 CET)\" executed successfully\n", - "2026-01-23 07:40:30,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:32 CET)\" (scheduled at 2026-01-23 07:40:32.132962+01:00)\n", - "2026-01-23 07:40:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:32 CET)\" executed successfully\n", - "2026-01-23 07:40:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:34 CET)\" (scheduled at 2026-01-23 07:40:34.010875+01:00)\n", - "2026-01-23 07:40:34,217 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:41:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94584 | 4951.77 |\n", - "| H4 | uptrend | 500.38 | 41.7617 | 3.13448 | 4951.77 |\n", - "| H1 | uptrend | 758.5 | 21.5901 | 2.45641 | 4951.77 |\n", - "| M30 | uptrend | 743.15 | 13.5362 | 1.50891 | 4951.77 |\n", - "| M15 | uptrend | 954.6 | 8.2896 | 1.18699 | 4951.77 |\n", - "| M5 | uptrend | 644.52 | 4.1918 | 0.405255 | 4951.77 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.37)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283195.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:40:40,141 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:40:50,168 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:00,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:10,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:20,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:26,711 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:26 CET)\" (scheduled at 2026-01-23 07:41:26.633942+01:00)\n", - "2026-01-23 07:41:26,711 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:26 CET)\" executed successfully\n", - "2026-01-23 07:41:30,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:32 CET)\" (scheduled at 2026-01-23 07:41:32.132962+01:00)\n", - "2026-01-23 07:41:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:32 CET)\" executed successfully\n", - "2026-01-23 07:41:34,506 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:34 CET)\" (scheduled at 2026-01-23 07:41:34.010875+01:00)\n", - "2026-01-23 07:41:34,663 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:42:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.03 | 88.7586 | 9.94581 | 4951.64 |\n", - "| H4 | uptrend | 500.37 | 41.7617 | 3.13445 | 4951.64 |\n", - "| H1 | uptrend | 758.49 | 21.5901 | 2.45637 | 4951.64 |\n", - "| M30 | uptrend | 743.14 | 13.5362 | 1.50888 | 4951.64 |\n", - "| M15 | uptrend | 954.58 | 8.2896 | 1.18695 | 4951.64 |\n", - "| M5 | uptrend | 642.07 | 4.2075 | 0.405224 | 4951.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.37)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283093.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:41:40,266 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:41:50,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:00,319 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:10,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:20,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:26,847 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:26 CET)\" (scheduled at 2026-01-23 07:42:26.633942+01:00)\n", - "2026-01-23 07:42:26,847 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:26 CET)\" executed successfully\n", - "2026-01-23 07:42:30,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:32,173 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:32 CET)\" (scheduled at 2026-01-23 07:42:32.132962+01:00)\n", - "2026-01-23 07:42:32,173 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:32 CET)\" executed successfully\n", - "2026-01-23 07:42:34,066 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:34 CET)\" (scheduled at 2026-01-23 07:42:34.010875+01:00)\n", - "2026-01-23 07:42:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:43:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94616 | 4953.12 |\n", - "| H4 | uptrend | 500.43 | 41.7617 | 3.1348 | 4953.12 |\n", - "| H1 | uptrend | 758.6 | 21.5901 | 2.45673 | 4953.12 |\n", - "| M30 | uptrend | 741.2 | 13.5748 | 1.50923 | 4953.12 |\n", - "| M15 | uptrend | 950.44 | 8.3281 | 1.18731 | 4953.12 |\n", - "| M5 | uptrend | 629.37 | 4.2961 | 0.405574 | 4953.12 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.40)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282196.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:42:40,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:42:50,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:00,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:10,471 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:20,483 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:26,649 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:26 CET)\" (scheduled at 2026-01-23 07:43:26.633942+01:00)\n", - "2026-01-23 07:43:26,649 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:26 CET)\" executed successfully\n", - "2026-01-23 07:43:30,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:32,352 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:32 CET)\" (scheduled at 2026-01-23 07:43:32.132962+01:00)\n", - "2026-01-23 07:43:32,352 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:32 CET)\" executed successfully\n", - "2026-01-23 07:43:34,023 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:34 CET)\" (scheduled at 2026-01-23 07:43:34.010875+01:00)\n", - "2026-01-23 07:43:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:44:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94634 | 4953.88 |\n", - "| H4 | uptrend | 500.46 | 41.7617 | 3.13498 | 4953.88 |\n", - "| H1 | uptrend | 758.65 | 21.5901 | 2.4569 | 4953.88 |\n", - "| M30 | uptrend | 741.28 | 13.5748 | 1.50941 | 4953.88 |\n", - "| M15 | uptrend | 950.58 | 8.3281 | 1.18748 | 4953.88 |\n", - "| M5 | uptrend | 629.65 | 4.2961 | 0.405754 | 4953.88 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282231.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:43:40,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:43:50,547 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:00,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:10,601 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:20,613 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:26 CET)\" (scheduled at 2026-01-23 07:44:26.633942+01:00)\n", - "2026-01-23 07:44:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:26 CET)\" executed successfully\n", - "2026-01-23 07:44:30,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:32,157 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:32 CET)\" (scheduled at 2026-01-23 07:44:32.132962+01:00)\n", - "2026-01-23 07:44:32,157 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:32 CET)\" executed successfully\n", - "2026-01-23 07:44:34,327 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:34 CET)\" (scheduled at 2026-01-23 07:44:34.010875+01:00)\n", - "2026-01-23 07:44:34,485 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:45:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94626 | 4953.52 |\n", - "| H4 | uptrend | 500.44 | 41.7617 | 3.13489 | 4953.52 |\n", - "| H1 | uptrend | 758.63 | 21.5901 | 2.45682 | 4953.52 |\n", - "| M30 | uptrend | 741.24 | 13.5748 | 1.50933 | 4953.52 |\n", - "| M15 | uptrend | 950.51 | 8.3281 | 1.1874 | 4953.52 |\n", - "| M5 | uptrend | 629.52 | 4.2961 | 0.405668 | 4953.52 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.42)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282214.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:44:40,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:44:50,667 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:00,788 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:10,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:20,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:26,657 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:26 CET)\" (scheduled at 2026-01-23 07:45:26.633942+01:00)\n", - "2026-01-23 07:45:26,657 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:26 CET)\" executed successfully\n", - "2026-01-23 07:45:30,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:32,187 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:32 CET)\" (scheduled at 2026-01-23 07:45:32.132962+01:00)\n", - "2026-01-23 07:45:32,187 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:32 CET)\" executed successfully\n", - "2026-01-23 07:45:34,020 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:34 CET)\" (scheduled at 2026-01-23 07:45:34.010875+01:00)\n", - "2026-01-23 07:45:34,153 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:46:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94654 | 4954.71 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13517 | 4954.71 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.4571 | 4954.71 |\n", - "| M30 | uptrend | 741.38 | 13.5748 | 1.50961 | 4954.71 |\n", - "| M15 | uptrend | 1017.08 | 7.8969 | 1.20476 | 4954.71 |\n", - "| M5 | uptrend | 632.96 | 4.1527 | 0.39428 | 4954.71 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 286369.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:45:40,892 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:45:50,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:00,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:10,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:20,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:26 CET)\" (scheduled at 2026-01-23 07:46:26.633942+01:00)\n", - "2026-01-23 07:46:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:26 CET)\" executed successfully\n", - "2026-01-23 07:46:31,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:32,147 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:32 CET)\" (scheduled at 2026-01-23 07:46:32.132962+01:00)\n", - "2026-01-23 07:46:32,147 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:32 CET)\" executed successfully\n", - "2026-01-23 07:46:34,131 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:34 CET)\" (scheduled at 2026-01-23 07:46:34.010875+01:00)\n", - "2026-01-23 07:46:34,257 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:47:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.07 | 88.7586 | 9.94635 | 4953.92 |\n", - "| H4 | uptrend | 500.46 | 41.7617 | 3.13499 | 4953.92 |\n", - "| H1 | uptrend | 758.65 | 21.5901 | 2.45691 | 4953.92 |\n", - "| M30 | uptrend | 741.29 | 13.5748 | 1.50942 | 4953.92 |\n", - "| M15 | uptrend | 1016.92 | 7.8969 | 1.20457 | 4953.92 |\n", - "| M5 | uptrend | 632.66 | 4.1527 | 0.394094 | 4953.92 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.43)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 286333.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:46:41,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:46:51,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:01,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:11,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:21,142 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:26,640 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:26 CET)\" (scheduled at 2026-01-23 07:47:26.633942+01:00)\n", - "2026-01-23 07:47:26,640 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:26 CET)\" executed successfully\n", - "2026-01-23 07:47:31,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:32 CET)\" (scheduled at 2026-01-23 07:47:32.132962+01:00)\n", - "2026-01-23 07:47:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:32 CET)\" executed successfully\n", - "2026-01-23 07:47:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:34 CET)\" (scheduled at 2026-01-23 07:47:34.010875+01:00)\n", - "2026-01-23 07:47:34,168 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:48:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.94622 | 4953.38 |\n", - "| H4 | uptrend | 500.44 | 41.7617 | 3.13486 | 4953.38 |\n", - "| H1 | uptrend | 758.62 | 21.5901 | 2.45679 | 4953.38 |\n", - "| M30 | uptrend | 741.23 | 13.5748 | 1.50929 | 4953.38 |\n", - "| M15 | uptrend | 1016.82 | 7.8969 | 1.20445 | 4953.38 |\n", - "| M5 | uptrend | 632.46 | 4.1527 | 0.393966 | 4953.38 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.41)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 286308.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:47:41,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:47:51,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:01,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:11,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:21,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:26,650 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:26 CET)\" (scheduled at 2026-01-23 07:48:26.633942+01:00)\n", - "2026-01-23 07:48:26,650 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:26 CET)\" executed successfully\n", - "2026-01-23 07:48:31,299 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:32,135 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:32 CET)\" (scheduled at 2026-01-23 07:48:32.132962+01:00)\n", - "2026-01-23 07:48:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:32 CET)\" executed successfully\n", - "2026-01-23 07:48:34,016 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:34 CET)\" (scheduled at 2026-01-23 07:48:34.010875+01:00)\n", - "2026-01-23 07:48:34,187 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:49:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.94601 | 4952.48 |\n", - "| H4 | uptrend | 500.4 | 41.7617 | 3.13465 | 4952.48 |\n", - "| H1 | uptrend | 758.55 | 21.5901 | 2.45657 | 4952.48 |\n", - "| M30 | uptrend | 741.12 | 13.5748 | 1.50908 | 4952.48 |\n", - "| M15 | uptrend | 1001.69 | 8.0147 | 1.20423 | 4952.48 |\n", - "| M5 | uptrend | 614.67 | 4.2706 | 0.393754 | 4952.48 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 284671.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:48:41,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:48:51,354 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:01,377 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:11,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:21,426 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:26 CET)\" (scheduled at 2026-01-23 07:49:26.633942+01:00)\n", - "2026-01-23 07:49:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:26 CET)\" executed successfully\n", - "2026-01-23 07:49:31,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:32 CET)\" (scheduled at 2026-01-23 07:49:32.132962+01:00)\n", - "2026-01-23 07:49:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:32 CET)\" executed successfully\n", - "2026-01-23 07:49:34,300 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:34 CET)\" (scheduled at 2026-01-23 07:49:34.010875+01:00)\n", - "2026-01-23 07:49:34,486 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:50:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.946 | 4952.44 |\n", - "| H4 | uptrend | 500.4 | 41.7617 | 3.13464 | 4952.44 |\n", - "| H1 | uptrend | 758.55 | 21.5901 | 2.45656 | 4952.44 |\n", - "| M30 | uptrend | 741.12 | 13.5748 | 1.50907 | 4952.44 |\n", - "| M15 | uptrend | 1001.68 | 8.0147 | 1.20423 | 4952.44 |\n", - "| M5 | uptrend | 614.66 | 4.2706 | 0.393744 | 4952.44 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 284669.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:49:41,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:49:51,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:01,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:11,535 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:21,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:26,671 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:26 CET)\" (scheduled at 2026-01-23 07:50:26.633942+01:00)\n", - "2026-01-23 07:50:26,671 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:26 CET)\" executed successfully\n", - "2026-01-23 07:50:31,584 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:32,137 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:32 CET)\" (scheduled at 2026-01-23 07:50:32.132962+01:00)\n", - "2026-01-23 07:50:32,139 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:32 CET)\" executed successfully\n", - "2026-01-23 07:50:34,377 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:34 CET)\" (scheduled at 2026-01-23 07:50:34.010875+01:00)\n", - "2026-01-23 07:50:34,561 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:51:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.04 | 88.7586 | 9.94594 | 4952.18 |\n", - "| H4 | uptrend | 500.39 | 41.7617 | 3.13457 | 4952.18 |\n", - "| H1 | uptrend | 758.53 | 21.5901 | 2.4565 | 4952.18 |\n", - "| M30 | uptrend | 741.09 | 13.5748 | 1.50901 | 4952.18 |\n", - "| M15 | uptrend | 997.01 | 8.0519 | 1.20416 | 4952.18 |\n", - "| M5 | uptrend | 626.03 | 4.0805 | 0.383176 | 4952.18 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.38)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 284839.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:50:41,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:50:51,643 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:01,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:11,688 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:21,710 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:27,056 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:26 CET)\" (scheduled at 2026-01-23 07:51:26.633942+01:00)\n", - "2026-01-23 07:51:27,056 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:26 CET)\" executed successfully\n", - "2026-01-23 07:51:31,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:32,451 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:32 CET)\" (scheduled at 2026-01-23 07:51:32.132962+01:00)\n", - "2026-01-23 07:51:32,452 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:32 CET)\" executed successfully\n", - "2026-01-23 07:51:34,053 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:34 CET)\" (scheduled at 2026-01-23 07:51:34.010875+01:00)\n", - "2026-01-23 07:51:34,227 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:52:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.05 | 88.7586 | 9.946 | 4952.45 |\n", - "| H4 | uptrend | 500.4 | 41.7617 | 3.13464 | 4952.45 |\n", - "| H1 | uptrend | 758.55 | 21.5901 | 2.45657 | 4952.45 |\n", - "| M30 | uptrend | 741.12 | 13.5748 | 1.50907 | 4952.45 |\n", - "| M15 | uptrend | 997.06 | 8.0519 | 1.20423 | 4952.45 |\n", - "| M5 | uptrend | 609.29 | 4.1933 | 0.38324 | 4952.45 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.39)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 284178.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:51:41,777 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:51:51,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:01,833 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:11,846 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:21,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:26,813 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:26 CET)\" (scheduled at 2026-01-23 07:52:26.633942+01:00)\n", - "2026-01-23 07:52:26,813 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:26 CET)\" executed successfully\n", - "2026-01-23 07:52:31,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:32 CET)\" (scheduled at 2026-01-23 07:52:32.132962+01:00)\n", - "2026-01-23 07:52:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:32 CET)\" executed successfully\n", - "2026-01-23 07:52:34,012 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:34 CET)\" (scheduled at 2026-01-23 07:52:34.010875+01:00)\n", - "2026-01-23 07:52:34,193 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:53:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94654 | 4954.71 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13517 | 4954.71 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.4571 | 4954.71 |\n", - "| M30 | uptrend | 741.38 | 13.5748 | 1.50961 | 4954.71 |\n", - "| M15 | uptrend | 997.5 | 8.0519 | 1.20476 | 4954.71 |\n", - "| M5 | uptrend | 602.24 | 4.2483 | 0.383774 | 4954.71 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283965.9 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:52:41,929 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:52:51,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:01,975 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:11,999 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:22,022 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:27,024 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:26 CET)\" (scheduled at 2026-01-23 07:53:26.633942+01:00)\n", - "2026-01-23 07:53:27,024 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:26 CET)\" executed successfully\n", - "2026-01-23 07:53:32,051 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:32,280 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:32 CET)\" (scheduled at 2026-01-23 07:53:32.132962+01:00)\n", - "2026-01-23 07:53:32,281 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:32 CET)\" executed successfully\n", - "2026-01-23 07:53:34,027 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:34 CET)\" (scheduled at 2026-01-23 07:53:34.010875+01:00)\n", - "2026-01-23 07:53:34,207 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:54:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94652 | 4954.65 |\n", - "| H4 | uptrend | 500.48 | 41.7617 | 3.13516 | 4954.65 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.45709 | 4954.65 |\n", - "| M30 | uptrend | 741.37 | 13.5748 | 1.50959 | 4954.65 |\n", - "| M15 | uptrend | 997.49 | 8.0519 | 1.20475 | 4954.65 |\n", - "| M5 | uptrend | 597.79 | 4.2797 | 0.383758 | 4954.64 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283786.1 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:53:42,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:53:52,100 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:02,123 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:12,159 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:22,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:26,675 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:26 CET)\" (scheduled at 2026-01-23 07:54:26.633942+01:00)\n", - "2026-01-23 07:54:26,675 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:26 CET)\" executed successfully\n", - "2026-01-23 07:54:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:32 CET)\" (scheduled at 2026-01-23 07:54:32.132962+01:00)\n", - "2026-01-23 07:54:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:32 CET)\" executed successfully\n", - "2026-01-23 07:54:32,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:34,013 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:34 CET)\" (scheduled at 2026-01-23 07:54:34.010875+01:00)\n", - "2026-01-23 07:54:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:55:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94678 | 4955.74 |\n", - "| H4 | uptrend | 500.53 | 41.7617 | 3.13542 | 4955.74 |\n", - "| H1 | uptrend | 758.79 | 21.5901 | 2.45734 | 4955.74 |\n", - "| M30 | uptrend | 741.5 | 13.5748 | 1.50985 | 4955.74 |\n", - "| M15 | uptrend | 993.21 | 8.0883 | 1.20501 | 4955.74 |\n", - "| M5 | uptrend | 592.36 | 4.3219 | 0.384018 | 4955.74 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.47)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283333.0 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:54:42,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:54:52,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:02,277 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:12,297 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:22,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:26 CET)\" (scheduled at 2026-01-23 07:55:26.633942+01:00)\n", - "2026-01-23 07:55:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:26 CET)\" executed successfully\n", - "2026-01-23 07:55:32,170 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:32 CET)\" (scheduled at 2026-01-23 07:55:32.132962+01:00)\n", - "2026-01-23 07:55:32,170 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:32 CET)\" executed successfully\n", - "2026-01-23 07:55:32,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:34,185 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:34 CET)\" (scheduled at 2026-01-23 07:55:34.010875+01:00)\n", - "2026-01-23 07:55:34,384 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:56:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94654 | 4954.73 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13518 | 4954.73 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.4571 | 4954.73 |\n", - "| M30 | uptrend | 740.99 | 13.5819 | 1.50961 | 4954.73 |\n", - "| M15 | uptrend | 992.05 | 8.0961 | 1.20477 | 4954.73 |\n", - "| M5 | uptrend | 602.58 | 4.1448 | 0.374632 | 4954.73 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283621.6 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:55:42,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:55:52,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:02,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:12,441 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:22,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:26 CET)\" (scheduled at 2026-01-23 07:56:26.633942+01:00)\n", - "2026-01-23 07:56:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:26 CET)\" executed successfully\n", - "2026-01-23 07:56:32,140 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:32 CET)\" (scheduled at 2026-01-23 07:56:32.132962+01:00)\n", - "2026-01-23 07:56:32,140 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:32 CET)\" executed successfully\n", - "2026-01-23 07:56:32,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:34,143 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:34 CET)\" (scheduled at 2026-01-23 07:56:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n", - "⚠️ MT5 not initialized, attempting to reconnect...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:56:37,181 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:57:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "⚠️ Keine Daten fΓΌr D1\n", - "❌ Signal-Analyse fehlgeschlagen\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:56:42,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:56:52,549 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:02,577 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:12,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:22,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:26,999 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:26 CET)\" (scheduled at 2026-01-23 07:57:26.633942+01:00)\n", - "2026-01-23 07:57:26,999 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:26 CET)\" executed successfully\n", - "2026-01-23 07:57:32,142 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:32 CET)\" (scheduled at 2026-01-23 07:57:32.132962+01:00)\n", - "2026-01-23 07:57:32,142 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:32 CET)\" executed successfully\n", - "2026-01-23 07:57:32,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:34,019 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:34 CET)\" (scheduled at 2026-01-23 07:57:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:57:34,680 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:58:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.06 | 88.7586 | 9.9462 | 4953.27 |\n", - "| H4 | uptrend | 500.43 | 41.7617 | 3.13483 | 4953.27 |\n", - "| H1 | uptrend | 758.61 | 21.5901 | 2.45676 | 4953.27 |\n", - "| M30 | uptrend | 740.82 | 13.5819 | 1.50927 | 4953.27 |\n", - "| M15 | uptrend | 991.77 | 8.0961 | 1.20442 | 4953.27 |\n", - "| M5 | uptrend | 591.62 | 4.2176 | 0.374287 | 4953.27 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.41)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283138.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:57:42,658 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:57:52,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:02,708 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:12,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:22,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:26 CET)\" (scheduled at 2026-01-23 07:58:26.633942+01:00)\n", - "2026-01-23 07:58:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:26 CET)\" executed successfully\n", - "2026-01-23 07:58:32,148 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:32 CET)\" (scheduled at 2026-01-23 07:58:32.132962+01:00)\n", - "2026-01-23 07:58:32,148 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:32 CET)\" executed successfully\n", - "2026-01-23 07:58:32,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:34,055 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:34 CET)\" (scheduled at 2026-01-23 07:58:34.010875+01:00)\n", - "2026-01-23 07:58:34,251 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 07:59:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94655 | 4954.77 |\n", - "| H4 | uptrend | 500.49 | 41.7617 | 3.13519 | 4954.78 |\n", - "| H1 | uptrend | 758.72 | 21.5901 | 2.45712 | 4954.78 |\n", - "| M30 | uptrend | 741 | 13.5819 | 1.50962 | 4954.78 |\n", - "| M15 | uptrend | 992.06 | 8.0961 | 1.20478 | 4954.78 |\n", - "| M5 | uptrend | 592.19 | 4.2176 | 0.374643 | 4954.78 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 283207.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:58:42,824 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:58:52,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:02,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:12,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:22,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:26,641 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:26 CET)\" (scheduled at 2026-01-23 07:59:26.633942+01:00)\n", - "2026-01-23 07:59:26,641 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:26 CET)\" executed successfully\n", - "2026-01-23 07:59:32,146 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:32 CET)\" (scheduled at 2026-01-23 07:59:32.132962+01:00)\n", - "2026-01-23 07:59:32,146 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:32 CET)\" executed successfully\n", - "2026-01-23 07:59:32,944 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:34,015 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:34 CET)\" (scheduled at 2026-01-23 07:59:34.010875+01:00)\n", - "2026-01-23 07:59:34,171 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:00:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+---------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+---------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94652 | 4954.64 |\n", - "| H4 | uptrend | 500.48 | 41.7617 | 3.13516 | 4954.64 |\n", - "| H1 | uptrend | 758.71 | 21.5901 | 2.45708 | 4954.64 |\n", - "| M30 | uptrend | 739.85 | 13.6026 | 1.50959 | 4954.64 |\n", - "| M15 | uptrend | 989.5 | 8.1169 | 1.20475 | 4954.64 |\n", - "| M5 | uptrend | 583.73 | 4.2783 | 0.37461 | 4954.64 |\n", - "+------+---------+------------+---------+---------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 282622.8 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 07:59:42,960 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 07:59:52,981 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:00,048 - INFO - Running job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 08:30:00 CET)\" (scheduled at 2026-01-23 08:00:00+01:00)\n", - "2026-01-23 08:00:00,048 - INFO - Job \"print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-23 08:30:00 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "╔════════════════════════════════════════════════════════╗\n", - "β•‘ ADAPTIVE RHYTHM STATUS - 08:00:00 UTC β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ Aktuelles Intervall: 5 Minuten β•‘\n", - "β•‘ Trading Session: ASIAN β•‘\n", - "β•‘ VolatilitΓ€tslevel: HIGH β•‘\n", - "β•‘ ATR (H1): 21.74 β•‘\n", - "╠════════════════════════════════════════════════════════╣\n", - "β•‘ INTERVALL-SCHEMA: β•‘\n", - "β•‘ β€’ Overlap (13-16 UTC): 5-15 Min (aktivste Phase) β•‘\n", - "β•‘ β€’ London/NY: 5-30 Min (volatilitΓ€tsabh.) β•‘\n", - "β•‘ β€’ Asian Session: 15-30 Min (ruhigere Phase) β•‘\n", - "β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:00:03,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:13,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:23,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:26,648 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:26 CET)\" (scheduled at 2026-01-23 08:00:26.633942+01:00)\n", - "2026-01-23 08:00:26,648 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:26 CET)\" executed successfully\n", - "2026-01-23 08:00:32,143 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:32 CET)\" (scheduled at 2026-01-23 08:00:32.132962+01:00)\n", - "2026-01-23 08:00:32,143 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:32 CET)\" executed successfully\n", - "2026-01-23 08:00:33,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:34,011 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:34 CET)\" (scheduled at 2026-01-23 08:00:34.010875+01:00)\n", - "2026-01-23 08:00:34,191 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:01:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94646 | 4954.36 |\n", - "| H4 | uptrend | 500.47 | 41.7617 | 3.13509 | 4954.36 |\n", - "| H1 | uptrend | 821.15 | 20.2122 | 2.4896 | 4954.36 |\n", - "| M30 | uptrend | 783.8 | 12.7953 | 1.50434 | 4954.36 |\n", - "| M15 | uptrend | 1060.35 | 7.7013 | 1.22491 | 4954.36 |\n", - "| M5 | uptrend | 589.47 | 4.137 | 0.365794 | 4954.36 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 296862.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:00:43,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:00:53,129 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:03,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:13,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:23,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:26,646 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:26 CET)\" (scheduled at 2026-01-23 08:01:26.633942+01:00)\n", - "2026-01-23 08:01:26,646 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:26 CET)\" executed successfully\n", - "2026-01-23 08:01:32,833 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:32 CET)\" (scheduled at 2026-01-23 08:01:32.132962+01:00)\n", - "2026-01-23 08:01:32,833 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:32 CET)\" executed successfully\n", - "2026-01-23 08:01:33,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:34,024 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:34 CET)\" (scheduled at 2026-01-23 08:01:34.010875+01:00)\n", - "2026-01-23 08:01:34,215 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:02:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.9466 | 4954.97 |\n", - "| H4 | uptrend | 500.5 | 41.7617 | 3.13523 | 4954.97 |\n", - "| H1 | uptrend | 820.19 | 20.2372 | 2.48974 | 4954.97 |\n", - "| M30 | uptrend | 782.35 | 12.8203 | 1.50449 | 4954.97 |\n", - "| M15 | uptrend | 1057.04 | 7.7263 | 1.22505 | 4954.95 |\n", - "| M5 | uptrend | 586.15 | 4.162 | 0.365934 | 4954.95 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.45)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 296319.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:01:43,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:01:53,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:03,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:13,394 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:23,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:26,642 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:26 CET)\" (scheduled at 2026-01-23 08:02:26.633942+01:00)\n", - "2026-01-23 08:02:26,642 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:26 CET)\" executed successfully\n", - "2026-01-23 08:02:32,136 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:32 CET)\" (scheduled at 2026-01-23 08:02:32.132962+01:00)\n", - "2026-01-23 08:02:32,136 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:32 CET)\" executed successfully\n", - "2026-01-23 08:02:33,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:34,056 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:34 CET)\" (scheduled at 2026-01-23 08:02:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:02:34,403 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:03:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.09 | 88.7586 | 9.94665 | 4955.19 |\n", - "| H4 | uptrend | 500.5 | 41.7617 | 3.13529 | 4955.19 |\n", - "| H1 | uptrend | 818.64 | 20.2758 | 2.48979 | 4955.19 |\n", - "| M30 | uptrend | 780.03 | 12.8589 | 1.50454 | 4955.19 |\n", - "| M15 | uptrend | 1051.83 | 7.7649 | 1.22511 | 4955.19 |\n", - "| M5 | uptrend | 580.86 | 4.2006 | 0.365991 | 4955.19 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.46)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295456.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:02:43,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:02:53,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:03,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:13,532 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:23,546 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:26,647 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:26 CET)\" (scheduled at 2026-01-23 08:03:26.633942+01:00)\n", - "2026-01-23 08:03:26,647 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:26 CET)\" executed successfully\n", - "2026-01-23 08:03:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:32 CET)\" (scheduled at 2026-01-23 08:03:32.132962+01:00)\n", - "2026-01-23 08:03:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:32 CET)\" executed successfully\n", - "2026-01-23 08:03:33,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:34,382 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:34 CET)\" (scheduled at 2026-01-23 08:03:34.010875+01:00)\n", - "2026-01-23 08:03:34,754 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:04:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.08 | 88.7586 | 9.94653 | 4954.66 |\n", - "| H4 | uptrend | 500.48 | 41.7617 | 3.13513 | 4954.52 |\n", - "| H1 | uptrend | 818.6 | 20.2758 | 2.48966 | 4954.61 |\n", - "| M30 | uptrend | 779.96 | 12.8589 | 1.5044 | 4954.61 |\n", - "| M15 | uptrend | 1051.72 | 7.7649 | 1.22497 | 4954.61 |\n", - "| M5 | uptrend | 580.62 | 4.2006 | 0.365844 | 4954.57 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.44)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 295428.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:03:43,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:03:53,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:03,656 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:13,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:23,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:26,643 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:26 CET)\" (scheduled at 2026-01-23 08:04:26.633942+01:00)\n", - "2026-01-23 08:04:26,643 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:26 CET)\" executed successfully\n", - "2026-01-23 08:04:32,437 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:32 CET)\" (scheduled at 2026-01-23 08:04:32.132962+01:00)\n", - "2026-01-23 08:04:32,437 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:32 CET)\" executed successfully\n", - "2026-01-23 08:04:33,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:34,395 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:34 CET)\" (scheduled at 2026-01-23 08:04:34.010875+01:00)\n", - "2026-01-23 08:04:34,565 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:05:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94693 | 4956.37 |\n", - "| H4 | uptrend | 500.55 | 41.7617 | 3.13557 | 4956.4 |\n", - "| H1 | uptrend | 816.38 | 20.3344 | 2.49009 | 4956.42 |\n", - "| M30 | uptrend | 776.64 | 12.9174 | 1.50483 | 4956.42 |\n", - "| M15 | uptrend | 1044.21 | 7.8235 | 1.2254 | 4956.42 |\n", - "| M5 | uptrend | 573.32 | 4.2592 | 0.366281 | 4956.42 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.49)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294203.4 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:04:43,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:04:53,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:03,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:13,842 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:23,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:26,637 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:26 CET)\" (scheduled at 2026-01-23 08:05:26.633942+01:00)\n", - "2026-01-23 08:05:26,637 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:26 CET)\" executed successfully\n", - "2026-01-23 08:05:32,141 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:32 CET)\" (scheduled at 2026-01-23 08:05:32.132962+01:00)\n", - "2026-01-23 08:05:32,141 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:32 CET)\" executed successfully\n", - "2026-01-23 08:05:33,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:34,145 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:34 CET)\" (scheduled at 2026-01-23 08:05:34.010875+01:00)\n", - "2026-01-23 08:05:34,354 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:06:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.1 | 88.7586 | 9.94677 | 4955.7 |\n", - "| H4 | uptrend | 500.52 | 41.7617 | 3.13541 | 4955.7 |\n", - "| H1 | uptrend | 816.27 | 20.3358 | 2.48991 | 4955.7 |\n", - "| M30 | uptrend | 776.47 | 12.9189 | 1.50466 | 4955.7 |\n", - "| M15 | uptrend | 1043.87 | 7.8249 | 1.22523 | 4955.69 |\n", - "| M5 | uptrend | 581.76 | 4.0913 | 0.357019 | 4955.69 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.47)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 294493.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:05:43,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:05:53,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:03,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:13,991 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:24,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:28,792 - WARNING - Run time of job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:07:26 CET)\" was missed by 0:00:02.158608\n", - "2026-01-23 08:06:32,538 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:07:32 CET)\" (scheduled at 2026-01-23 08:06:32.132962+01:00)\n", - "2026-01-23 08:06:32,554 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:07:32 CET)\" executed successfully\n", - "2026-01-23 08:06:34,087 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:07:34 CET)\" (scheduled at 2026-01-23 08:06:34.010875+01:00)\n", - "2026-01-23 08:06:34,310 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:07:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.11 | 88.7586 | 9.94686 | 4956.09 |\n", - "| H4 | uptrend | 500.54 | 41.7617 | 3.1355 | 4956.09 |\n", - "| H1 | uptrend | 815.29 | 20.3608 | 2.49001 | 4956.09 |\n", - "| M30 | uptrend | 775.02 | 12.9439 | 1.50475 | 4956.09 |\n", - "| M15 | uptrend | 1040.62 | 7.8499 | 1.22532 | 4956.09 |\n", - "| M5 | uptrend | 570.76 | 4.1713 | 0.357116 | 4956.1 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.48)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 293646.5 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:06:34,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:44,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:06:54,374 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:07:04,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:07:14,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:07:24,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:07:26,854 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:26 CET)\" (scheduled at 2026-01-23 08:07:26.633942+01:00)\n", - "2026-01-23 08:07:26,863 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:26 CET)\" executed successfully\n", - "2026-01-23 08:07:32,599 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:32 CET)\" (scheduled at 2026-01-23 08:07:32.132962+01:00)\n", - "2026-01-23 08:07:32,600 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:32 CET)\" executed successfully\n", - "2026-01-23 08:07:34,454 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:34 CET)\" (scheduled at 2026-01-23 08:07:34.010875+01:00)\n", - "2026-01-23 08:07:34,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:07:34,709 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:08:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.12 | 88.7586 | 9.94705 | 4956.89 |\n", - "| H4 | uptrend | 500.57 | 41.7617 | 3.13569 | 4956.89 |\n", - "| H1 | uptrend | 813.47 | 20.4079 | 2.4902 | 4956.89 |\n", - "| M30 | uptrend | 772.3 | 12.991 | 1.50494 | 4956.89 |\n", - "| M15 | uptrend | 1034.57 | 7.8971 | 1.22551 | 4956.89 |\n", - "| M5 | uptrend | 564.67 | 4.2184 | 0.357302 | 4956.89 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.50)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 292642.7 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:07:44,567 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:07:54,591 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:08:04,615 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:08:14,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:08:24,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:08:26,768 - INFO - Running job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:26 CET)\" (scheduled at 2026-01-23 08:08:26.633942+01:00)\n", - "2026-01-23 08:08:26,781 - INFO - Job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:26 CET)\" executed successfully\n", - "2026-01-23 08:08:32,199 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:32 CET)\" (scheduled at 2026-01-23 08:08:32.132962+01:00)\n", - "2026-01-23 08:08:32,201 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:32 CET)\" executed successfully\n", - "2026-01-23 08:08:34,042 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:34 CET)\" (scheduled at 2026-01-23 08:08:34.010875+01:00)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:08:35,969 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:09:34 CET)\" executed successfully\n", - "2026-01-23 08:08:36,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.14 | 88.7586 | 9.94726 | 4957.75 |\n", - "| H4 | uptrend | 500.6 | 41.7617 | 3.13589 | 4957.75 |\n", - "| H1 | uptrend | 812.06 | 20.4451 | 2.4904 | 4957.75 |\n", - "| M30 | uptrend | 770.2 | 13.0281 | 1.50514 | 4957.75 |\n", - "| M15 | uptrend | 1029.9 | 7.9342 | 1.22572 | 4957.75 |\n", - "| M5 | uptrend | 560.06 | 4.2555 | 0.357505 | 4957.75 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.52)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291871.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:08:46,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:08:56,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:09:06,082 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:09:16,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:09:26,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:09:27,698 - WARNING - Run time of job \"PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-23 08:10:26 CET)\" was missed by 0:00:01.064171\n", - "2026-01-23 08:09:32,134 - INFO - Running job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:10:32 CET)\" (scheduled at 2026-01-23 08:09:32.132962+01:00)\n", - "2026-01-23 08:09:32,135 - INFO - Job \"create_enhanced_position_monitor..enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-23 08:10:32 CET)\" executed successfully\n", - "2026-01-23 08:09:34,075 - INFO - Running job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:10:34 CET)\" (scheduled at 2026-01-23 08:09:34.010875+01:00)\n", - "2026-01-23 08:09:34,268 - INFO - Job \"Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-23 08:10:34 CET)\" executed successfully\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "βœ… Position-Check OK: 0/1\n", - "πŸ” Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...\n", - "\n", - "πŸ“Š V1.6 ADAPTIVE COMPLETE Trend-Analyse fΓΌr XAUUSD\n", - "⚑ Adaptive Interval: 5 min | Session: ASIAN\n", - "🎯 Market Regime: RANGING (Strength: 23%)\n", - "🎚️ Adaptive Threshold: 70% (RELAXED)\n", - "\n", - "+------+---------+------------+---------+----------+---------+\n", - "| TF | Trend | Strength | ATR | Slope | Price |\n", - "|------+---------+------------+---------+----------+---------|\n", - "| D1 | uptrend | 747.13 | 88.7586 | 9.94712 | 4957.15 |\n", - "| H4 | uptrend | 500.58 | 41.7617 | 3.13575 | 4957.15 |\n", - "| H1 | uptrend | 812.02 | 20.4451 | 2.49026 | 4957.15 |\n", - "| M30 | uptrend | 770.13 | 13.0281 | 1.505 | 4957.15 |\n", - "| M15 | uptrend | 1029.78 | 7.9342 | 1.22557 | 4957.15 |\n", - "| M5 | uptrend | 559.84 | 4.2555 | 0.357364 | 4957.15 |\n", - "+------+---------+------------+---------+----------+---------+\n", - "\n", - "➑️ Standard-Trend: uptrend (Strength: 648.51)\n", - "➑️ Fast-Trend: uptrend (Required: 2/4)\n", - "➑️ Top-Down-Trend: uptrend\n", - "➑️ Confidence: 100.0% (Threshold: 70%)\n", - "➑️ Risk-Adjusted Strength: 291843.2 (Min: 80)\n", - "➑️ Signal Quality: EXCELLENT\n", - "\n", - "πŸš€ V1.6 Adaptive Complete: Full Features + Adaptive Rhythm\n", - "\n", - "πŸ“Š Base Signal Analysis:\n", - " Direction: 1\n", - " Base Confidence: 100.0%\n", - " Adaptive Threshold: 70.0%\n", - "\n", - "🎯 Calculating Enhanced Signal Score...\n", - "\n", - "βœ… Enhanced Signal Scoring:\n", - " Trend Score: 100.0/100\n", - " Volume Score: 40.0/100\n", - " Momentum Score: 60.0/100\n", - " S/R Score: 50.0/100\n", - " Fibonacci Score: 60.0/100\n", - " ─────────────────────────────────────\n", - " πŸ“Š Base Confidence: 100.0%\n", - " πŸ“ˆ Enhanced Score: 66.5%\n", - " πŸ”€ HYBRID (60/40): 86.6%\n", - " πŸ“ˆ Signal Quality: good\n", - "\n", - "πŸ’‘ Analysis: Strong trend (100%)\n", - "\n", - "⏸️ No clear signal: 1\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2026-01-23 08:09:36,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n", - "2026-01-23 08:09:46,184 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates \"HTTP/1.1 200 OK\"\n" - ] - } - ], + "outputs": [], "source": [ "# ==========================================\n", "# πŸ’° P&L PERFORMANCE DASHBOARD\n", @@ -64612,9 +4082,14 @@ "execution_count": null, "metadata": {}, "outputs": [], - "source": [ - "\n" - ] + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] }, { "cell_type": "code", diff --git a/activate_enhanced_scoring.py b/activate_enhanced_scoring.py index 1a79ae2..f318c92 100644 --- a/activate_enhanced_scoring.py +++ b/activate_enhanced_scoring.py @@ -123,15 +123,11 @@ def enhanced_trading_check_wrapper(symbol="XAUUSD", debug=False): if final_confidence >= adaptive_threshold: print(f"\\n🎯 Signal qualified! {final_confidence:.1f}% >= {adaptive_threshold:.1f}%") - # Convert signal to string for execute_trade - signal_direction = "LONG" if entry_signal == 1 else "SHORT" - - # Execute trade with ENHANCED confidence + # Execute trade with pre-calculated signal_info and enhanced confidence result = execute_trade_v2_adaptive( symbol=symbol, - entry_signal=signal_direction, - confidence=final_confidence, # ← Use enhanced score! - signal_info=signal_info + signal_info_override=signal_info, + confidence_override=final_confidence # ← Use hybrid score! ) return result diff --git a/dynamic_thresholds.json b/dynamic_thresholds.json index caf95b5..6e63887 100644 --- a/dynamic_thresholds.json +++ b/dynamic_thresholds.json @@ -1,9 +1,9 @@ { - "timestamp": "2026-01-23T00:00:00.067537", + "timestamp": "2026-01-23T08:15:25.214791", "session_thresholds": { "asian": 60, "ny": 60, - "london": 90, + "london": 80, "overlap": 70 }, "settings": { diff --git a/trade_performance_v16_XAUUSD_202601.json b/trade_performance_v16_XAUUSD_202601.json index 18d5aa3..e0204ee 100644 --- a/trade_performance_v16_XAUUSD_202601.json +++ b/trade_performance_v16_XAUUSD_202601.json @@ -4615,5 +4615,32 @@ }, "position_control_active": true, "order_result": "OrderSendResult(retcode=10009, deal=633007436, order=696946027, volume=0.1, price=4893.91, bid=0.0, ask=0.0, comment='Request executed', request_id=1587946480, retcode_external=0, request=TradeRequest(action=1, magic=234000, order=0, symbol='XAUUSD', volume=0.1, price=4893.93, stoplimit=0.0, sl=4883.200531304935, tp=4917.9186717376615, deviation=20, type=0, type_filling=1, type_time=0, expiration=0, comment='TradingBot_V1.6', position=0, position_by=0))" + }, + { + "timestamp": "2026-01-23T08:15:23.095258", + "version": "V1.6_Adaptive_Complete", + "symbol": "XAUUSD", + "entry_signal": 1, + "confidence": 100.0, + "adaptive_threshold": 70, + "signal_quality": "excellent", + "market_regime": "ranging", + "regime_strength": 23.310395164481207, + "risk_adjusted_strength": 298807.0387491906, + "adaptive_interval": 15, + "session": "asian", + "relaxed_features": { + "pullback_entry_disabled": true, + "lower_confidence_threshold": true, + "lower_min_strength": true, + "fixed_tf_alignment": true + }, + "adaptive_features": { + "adaptive_rhythm": true, + "session_aware": true, + "volatility_based": true + }, + "position_control_active": true, + "order_result": "OrderSendResult(retcode=10009, deal=634634801, order=698895870, volume=0.1, price=4956.52, bid=0.0, ask=0.0, comment='Request executed', request_id=1587946485, retcode_external=0, request=TradeRequest(action=1, magic=234000, order=0, symbol='XAUUSD', volume=0.1, price=4956.46, stoplimit=0.0, sl=4951.0291128352765, tp=4969.302217911808, deviation=20, type=0, type_filling=1, type_time=0, expiration=0, comment='TradingBot_V1.6', position=0, position_by=0))" } ] \ No newline at end of file