Deploy to Windows VPS / deploy (push) Has been cancelled
PROBLEM: - Trailing stop values were optimized for Forex, not Gold - breakeven_buffer_pips=5 → only $0.05 buffer for Gold (way too small!) - min_distance_points=100 → only $1.00 minimum (too tight!) - Trades were being stopped out with only ~$0.50 profit SOLUTION (Gold-optimized): - breakeven_buffer_pips: 5 → 300 ($3.00 buffer) - min_distance_points: 100 → 500 ($5.00 minimum distance) - atr_multiplier: 1.0 → 1.5 (more breathing room) IMPACT: - Trades now have proper room to develop - Less premature stop-outs - Better profit potential per trade Updated in: - enhanced_trailing_stop.py (class defaults + initialization) - TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb (Cell 78) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2.1 MiB
2.1 MiB
In [2]:
# ==========================================
# INSTALL TELEGRAM DEPENDENCIES (Run FIRST!)
# ==========================================
import sys
import subprocess
print("📦 Installing python-telegram-bot...")
subprocess.check_call([
sys.executable, "-m", "pip", "install",
"python-telegram-bot", "--upgrade"
])
print("\n✅ python-telegram-bot installed!")
# Verify
import telegram
print(f"✅ Version: {telegram.__version__}")
print(f"\n🎯 Now restart kernel and run Cell 17 again!")📦 Installing python-telegram-bot... ✅ python-telegram-bot installed! ✅ Version: 22.5 🎯 Now restart kernel and run Cell 17 again!
In [3]:
# Standard Imports
import pandas as pd
import numpy as np
import MetaTrader5 as mt
import pandas_ta as ta
from scipy.signal import savgol_filter, find_peaks
from sklearn.linear_model import LinearRegression
from tabulate import tabulate
from datetime import datetime, timedelta, time
import json
import keyring as kr
# V1.6: Zusätzliche Imports für Adaptive Rhythm
import pytz
import logging
from apscheduler.schedulers.background import BackgroundScheduler
# Setup Logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
print("✅ All imports successful - V1.6 Adaptive Complete (CORRECTED)")✅ All imports successful - V1.6 Adaptive Complete (CORRECTED)
In [4]:
# ==========================================
# INFRASTRUCTURE IMPORTS (V1.8)
# ==========================================
from infrastructure_patch import (
TradingInfrastructure,
create_scheduled_reports
)
from trading_database import TradingDatabase
from telegram_notifier import TelegramNotifier
print("✅ Infrastructure modules loaded")✅ Infrastructure modules loaded
In [5]:
# ============================================================================
# CENTRALIZED TRADING CONFIGURATION
# ============================================================================
# All trading parameters should be configured here and referenced throughout
# the notebook to avoid scattered settings
TRADING_CONFIG = {
# ========================================================================
# LOT SIZING & POSITION MANAGEMENT
# ========================================================================
'lot_sizing': {
'min_lot': 0.10, # Minimum lot size
'max_lot': 0.20, # Maximum lot size
'default_lot': 0.10, # Fallback lot size
'use_adaptive': True, # Use adaptive position sizing
},
# ========================================================================
# RISK MANAGEMENT
# ========================================================================
'risk': {
'max_risk_per_trade': 0.02, # 2% max risk per trade
'max_positions': 1, # Maximum concurrent positions
'max_daily_loss': 0.05, # 5% max daily loss
},
# ========================================================================
# CONFIDENCE THRESHOLDS
# ========================================================================
'confidence': {
'base_threshold': 70, # Base confidence threshold (all sessions)
'ny_threshold': 70, # NY session threshold (was 97, reduced for more trades)
'asian_threshold': 70, # Asian session threshold
'london_threshold': 70, # London session threshold
},
# ========================================================================
# ATR & STOP LOSS
# ========================================================================
'atr': {
'base_multiplier': 1.5, # Base ATR multiplier for SL/TP
'period': 14, # ATR calculation period
},
# ========================================================================
# NEWS FILTER
# ========================================================================
'news_filter': {
'enabled': True, # Enable/disable news filter
'minutes_before': 30, # Minutes before event to block
'minutes_after': 30, # Minutes after event to block
},
# ========================================================================
# SESSION SETTINGS
# ========================================================================
'sessions': {
'asian_enabled': True,
'london_enabled': False, # Currently disabled
'ny_enabled': True,
'overlap_enabled': False, # Currently disabled
},
# ========================================================================
# TRADING SYMBOLS
# ========================================================================
'symbols': {
'primary': 'XAUUSD', # Primary trading symbol (Gold)
'alternative': [], # Alternative symbols (if needed)
},
}
# ============================================================================
# HELPER FUNCTIONS
# ============================================================================
def get_config(section, key=None):
"""Get configuration value"""
if key is None:
return TRADING_CONFIG.get(section, {})
return TRADING_CONFIG.get(section, {}).get(key)
def update_config(section, key, value):
"""Update configuration value (runtime only, doesn't save to notebook)"""
if section not in TRADING_CONFIG:
TRADING_CONFIG[section] = {}
TRADING_CONFIG[section][key] = value
print(f"✅ Updated: {section}.{key} = {value}")
# Print current configuration
print("✅ TRADING CONFIGURATION LOADED")
print()
print(f"📊 Lot Sizing: {TRADING_CONFIG['lot_sizing']['min_lot']} - {TRADING_CONFIG['lot_sizing']['max_lot']} lots")
print(f"⚠️ Max Risk: {TRADING_CONFIG['risk']['max_risk_per_trade']*100}% per trade")
print(f"🎯 Confidence Threshold: {TRADING_CONFIG['confidence']['base_threshold']}%")
print(f"🛡️ News Filter: {'ENABLED' if TRADING_CONFIG['news_filter']['enabled'] else 'DISABLED'}")
print(f"🌍 Primary Symbol: {TRADING_CONFIG['symbols']['primary']}")✅ TRADING CONFIGURATION LOADED 📊 Lot Sizing: 0.1 - 0.2 lots ⚠️ Max Risk: 2.0% per trade 🎯 Confidence Threshold: 70% 🛡️ News Filter: ENABLED 🌍 Primary Symbol: XAUUSD
In [6]:
class AdaptiveRhythmManager:
"""
🆕 V1.6 Feature: Adaptive Trading Rhythm
Verwaltet adaptiven Trading-Rhythmus basierend auf:
- Marktvolatilität (ATR)
- Trading-Session (Asian/London/NY/Overlap)
- Marktregime
"""
def __init__(self, symbol="XAUUSD"):
self.symbol = symbol
self.current_interval = 5
# Zeitintervalle in Minuten
self.intervals = {
'fast': 5, # Hohe Volatilität, aktive Sessions
'medium': 15, # Moderate Volatilität, Standard
'slow': 30 # Niedrige Volatilität, ruhige Sessions
}
# ATR-Schwellenwerte für XAUUSD (Gold)
self.atr_thresholds = {
'high': 15.0, # Hohe Volatilität
'medium': 8.0, # Moderate Volatilität
'low': 5.0 # Niedrige Volatilität
}
# Session-Zeiten (UTC)
self.sessions = {
'asian': (time(0, 0), time(8, 0)), # 00:00-08:00 UTC
'london': (time(8, 0), time(16, 0)), # 08:00-16:00 UTC
'ny': (time(13, 0), time(21, 0)), # 13:00-21:00 UTC
'overlap': (time(13, 0), time(16, 0)) # London-NY Overlap
}
def get_current_session(self):
"""Ermittelt die aktuelle Trading-Session"""
now_utc = datetime.now(pytz.UTC).time()
# Overlap hat höchste Priorität
if self.sessions['overlap'][0] <= now_utc <= self.sessions['overlap'][1]:
return 'overlap'
elif self.sessions['london'][0] <= now_utc < self.sessions['london'][1]:
return 'london'
elif self.sessions['ny'][0] <= now_utc < self.sessions['ny'][1]:
return 'ny'
return 'asian'
def get_volatility_level(self, atr_value):
"""Klassifiziert die Volatilität basierend auf ATR"""
if atr_value >= self.atr_thresholds['high']:
return 'high'
elif atr_value >= self.atr_thresholds['medium']:
return 'medium'
return 'low'
def get_market_data(self):
"""Hole Marktdaten für ATR-Analyse"""
try:
rates = mt.copy_rates_from_pos(self.symbol, mt.TIMEFRAME_H1, 0, 50)
if rates is None:
return None
df = pd.DataFrame(rates)
df['time'] = pd.to_datetime(df['time'], unit='s')
df.set_index('time', inplace=True)
df['atr'] = ta.atr(df['high'], df['low'], df['close'], length=14)
return df
except Exception as e:
logger.error(f"Fehler beim Laden der Marktdaten: {e}")
return None
def calculate_optimal_interval(self):
"""Berechnet optimales Trading-Intervall"""
session = self.get_current_session()
df = self.get_market_data()
if df is None:
return self.current_interval
current_atr = df['atr'].iloc[-1]
volatility = self.get_volatility_level(current_atr)
optimal_interval = self._determine_interval(session, volatility)
# Logge Änderungen
if optimal_interval != self.current_interval:
logger.info(f"🔄 Rhythmus-Änderung: {self.current_interval}m → {optimal_interval}m")
logger.info(f" Session: {session}, Volatilität: {volatility} (ATR: {current_atr:.2f})")
self.current_interval = optimal_interval
return optimal_interval
def _determine_interval(self, session, volatility):
"""
Intervall-Entscheidungs-Matrix:
Session │ Hohe Vol │ Mittlere Vol │ Niedrige Vol
───────────┼──────────┼──────────────┼─────────────
Overlap │ 5min │ 15min │ 15min
London/NY │ 5min │ 15min │ 30min
Asian │ 15min │ 30min │ 30min
"""
if session == 'overlap':
return self.intervals['fast'] if volatility == 'high' else self.intervals['medium']
elif session in ['london', 'ny']:
if volatility == 'high':
return self.intervals['fast']
elif volatility == 'medium':
return self.intervals['medium']
return self.intervals['slow']
else: # asian
return self.intervals['medium'] if volatility == 'high' else self.intervals['slow']
def get_status_report(self):
"""Erstellt Status-Report"""
session = self.get_current_session()
df = self.get_market_data()
if df is not None:
current_atr = df['atr'].iloc[-1]
volatility = self.get_volatility_level(current_atr)
else:
current_atr = 0
volatility = 'unknown'
return f"""
╔════════════════════════════════════════════════════════╗
║ ADAPTIVE RHYTHM STATUS - {datetime.now().strftime('%H:%M:%S UTC')} ║
╠════════════════════════════════════════════════════════╣
║ Aktuelles Intervall: {self.current_interval:>2} Minuten ║
║ Trading Session: {session.upper():<15} ║
║ Volatilitätslevel: {volatility.upper():<15} ║
║ ATR (H1): {current_atr:>6.2f} ║
╠════════════════════════════════════════════════════════╣
║ INTERVALL-SCHEMA: ║
║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║
║ • London/NY: 5-30 Min (volatilitätsabh.) ║
║ • Asian Session: 15-30 Min (ruhigere Phase) ║
╚════════════════════════════════════════════════════════╝
"""
print("✅ Adaptive Rhythm Manager defined")✅ Adaptive Rhythm Manager defined
In [7]:
# MT5 Login
mt.initialize()
login = 10800246
server = 'VantageInternational-Demo'
password = kr.get_password(server, str(login))
login_result = mt.login(login, password, server)
print(f"Login successful: {login_result}")
# Trading Parameter
symbol = "XAUUSD"
strategy_name = "TradingBot_V1.6"
max_positions = 1
print(f"Symbol: {symbol}")
print(f"Strategy: {strategy_name}")
print(f"Max Positions: {max_positions}")
print(f"Version: V1.6 COMPLETE - Adaptive + Full Features! 🚀🛡️⚡")
# 🆕 Initialisiere Adaptive Rhythm Manager
rhythm_manager = AdaptiveRhythmManager(symbol)
print("\n" + rhythm_manager.get_status_report())Login successful: True Symbol: XAUUSD Strategy: TradingBot_V1.6 Max Positions: 1 Version: V1.6 COMPLETE - Adaptive + Full Features! 🚀🛡️⚡ ╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 01:39:41 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 5 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 32.88 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
In [8]:
# ==========================================
# INITIALIZE INFRASTRUCTURE (V1.8)
# ==========================================
print("🔧 Initializing Infrastructure...")
# Initialize Infrastructure
infra = TradingInfrastructure(
db_path="trading_bot.db",
enable_telegram=True,
enable_database=True
)
# Bot Started Notification
from session_filter_patch import SESSION_WHITELIST_CONFIG
bot_config = {
'version': 'V1.8',
'enabled_sessions': SESSION_WHITELIST_CONFIG['enabled_sessions'],
'base_confidence': SESSION_WHITELIST_CONFIG['base_confidence'],
'max_risk_per_trade': SESSION_WHITELIST_CONFIG['max_risk_per_trade']
}
infra.send_bot_started(bot_config)
print("✅ Infrastructure ready!")
print(f" Database: {'✅' if infra.enable_database else '❌'}")
print(f" Telegram: {'✅' if infra.enable_telegram else '❌'}")🔧 Initializing Infrastructure... ✅ Database initialized: trading_bot.db ✅ Telegram Bot connected: @Xausd_digger_bot ✅ Telegram notifications enabled ✅ Infrastructure ready! Database: ✅ Telegram: ✅
In [9]:
# ==========================================
# ADVANCED POSITION MANAGEMENT SETUP
# ==========================================
from session_filter_patch import SESSION_WHITELIST_CONFIG
from advanced_position_management import AdvancedPositionManager
print("🎯 Initializing Advanced Position Management...")
# Initialize Manager with all features
adv_position_mgr = AdvancedPositionManager(
enable_adaptive_sizing=True, # ✅ Adaptive Position Sizing
enable_trailing_stop=True, # ✅ Trailing Stop-Loss
enable_partial_tp=True, # ✅ Partial Take Profit
base_risk=SESSION_WHITELIST_CONFIG['max_risk_per_trade'] # ✅ 2% Base Risk from config
)
print("✅ Advanced Position Management activated!")
print(" 📊 Adaptive Position Sizing: ACTIVE")
print(" • High Confidence (≥80%): 1.5x risk")
print(" • Medium Confidence (≥70%): 1.0x risk")
print(" • Low Confidence (<70%): 0.5x risk")
print("")
print(" 📈 Trailing Stop-Loss: ACTIVE")
print(" • Break-Even at 50% progress to TP")
print(" • Lock 50% profit at 75% progress")
print("")
print(" 🎯 Partial Take Profit: ACTIVE")
print(" • TP1 at 1.5R (close 50%)")
print(" • TP2 at 2.5R (let 50% run)")
2026-01-22 01:39:42,717 - INFO - 🎯 Advanced Position Manager initialized 2026-01-22 01:39:42,717 - INFO - Adaptive Sizing: ✅ 2026-01-22 01:39:42,718 - INFO - Trailing Stop: ✅ 2026-01-22 01:39:42,719 - INFO - Partial TP: ✅
🎯 Initializing Advanced Position Management...
✅ Advanced Position Management activated!
📊 Adaptive Position Sizing: ACTIVE
• High Confidence (≥80%): 1.5x risk
• Medium Confidence (≥70%): 1.0x risk
• Low Confidence (<70%): 0.5x risk
📈 Trailing Stop-Loss: ACTIVE
• Break-Even at 50% progress to TP
• Lock 50% profit at 75% progress
🎯 Partial Take Profit: ACTIVE
• TP1 at 1.5R (close 50%)
• TP2 at 2.5R (let 50% run)
In [10]:
# ==========================================
# POSITION MONITOR SETUP (V1.8)
# ==========================================
from position_monitor import PositionMonitor
print("🔧 Initializing Position Monitor...")
# Create Position Monitor
position_monitor = PositionMonitor(infra.db, infra.telegram)
print("✅ Position Monitor ready!")
print(" Will check for closed positions every minute")
print(" Closed trades will be automatically logged with:")
print(" • Exit price & time")
print(" • Profit/Loss calculation")
print(" • Exit reason (TP/SL/Manual)")
print(" • Telegram notification")🔧 Initializing Position Monitor... ✅ Position Monitor ready! Will check for closed positions every minute Closed trades will be automatically logged with: • Exit price & time • Profit/Loss calculation • Exit reason (TP/SL/Manual) • Telegram notification
In [11]:
def check_existing_positions(symbol="XAUUSD", strategy_name="TradingBot_V1.6"):
"""
Überprüft ob bereits Positionen für das Symbol und die Strategie existieren
"""
try:
positions = mt.positions_get(symbol=symbol)
if positions is None:
return False, {"count": 0, "details": []}
strategy_positions = []
for pos in positions:
if strategy_name in pos.comment:
strategy_positions.append({
"ticket": pos.ticket,
"type": "BUY" if pos.type == 0 else "SELL",
"volume": pos.volume,
"price_open": pos.price_open,
"profit": pos.profit,
"comment": pos.comment,
"time_open": pd.to_datetime(pos.time, unit='s')
})
has_position = len(strategy_positions) > 0
position_info = {"count": len(strategy_positions), "details": strategy_positions}
return has_position, position_info
except Exception as e:
print(f"Error checking positions: {e}")
return False, {"count": 0, "details": []}
def get_position_summary(symbol="XAUUSD", strategy_name="TradingBot_V1.6"):
"""Position-Zusammenfassung"""
has_position, position_info = check_existing_positions(symbol, strategy_name)
print(f"\n📊 POSITION SUMMARY für {symbol} (V1.6 Adaptive Complete)")
print("=" * 60)
if not has_position:
print("✅ Keine aktiven Positionen - bereit für neuen Trade")
return False
print(f"⚠️ {position_info['count']} aktive Position(en) gefunden:")
for i, pos in enumerate(position_info['details'], 1):
profit_emoji = "🟢" if pos['profit'] >= 0 else "🔴"
print(f"\n Position {i}:")
print(f" Ticket: {pos['ticket']}")
print(f" Typ: {pos['type']}")
print(f" Volumen: {pos['volume']}")
print(f" Eröffnungspreis: {pos['price_open']}")
print(f" Profit: {profit_emoji} {pos['profit']:.2f}")
print(f" Eröffnungszeit: {pos['time_open']}")
print(f"\n🛑 TRADING BLOCKIERT - Maximal {max_positions} Position erlaubt")
return True
def close_existing_positions(symbol="XAUUSD", strategy_name="TradingBot_V1.6", force_close=False):
"""
✅ KORRIGIERT: Schließt bestehende Positionen (optional)
Diese Funktion fehlte in der ursprünglichen V1.6!
"""
has_position, position_info = check_existing_positions(symbol, strategy_name)
if not has_position:
print("✅ Keine Positionen zum Schließen")
return True
if not force_close:
print(f"⚠️ {position_info['count']} Position(en) gefunden. Verwende force_close=True zum Schließen.")
return False
print(f"🔄 Schließe {position_info['count']} Position(en)...")
success_count = 0
for pos in position_info['details']:
try:
# Position schließen
close_request = {
"action": mt.TRADE_ACTION_DEAL,
"symbol": symbol,
"volume": pos['volume'],
"type": mt.ORDER_TYPE_SELL if pos['type'] == "BUY" else mt.ORDER_TYPE_BUY,
"position": pos['ticket'],
"price": mt.symbol_info_tick(symbol).bid if pos['type'] == "BUY" else mt.symbol_info_tick(symbol).ask,
"deviation": 20,
"magic": 234000,
"comment": f"Close {strategy_name}",
"type_time": mt.ORDER_TIME_GTC,
"type_filling": mt.ORDER_FILLING_IOC,
}
result = mt.order_send(close_request)
if result.retcode == mt.TRADE_RETCODE_DONE:
print(f"✅ Position {pos['ticket']} erfolgreich geschlossen")
success_count += 1
else:
print(f"❌ Fehler beim Schließen von Position {pos['ticket']}: {result.comment}")
except Exception as e:
print(f"❌ Exception beim Schließen von Position {pos['ticket']}: {e}")
print(f"📊 {success_count}/{len(position_info['details'])} Positionen erfolgreich geschlossen")
return success_count == len(position_info['details'])
print("✅ Position Control functions defined (COMPLETE with close function!)")✅ Position Control functions defined (COMPLETE with close function!)
In [12]:
import time
def get_rates(timeframe="h4", count=200, symbol="XAUUSD", max_retries=3):
"""Hole Kursdaten mit Retry-Logik"""
timeframes_dict = {
"m1": mt.TIMEFRAME_M1, "m5": mt.TIMEFRAME_M5, "m15": mt.TIMEFRAME_M15,
"m30": mt.TIMEFRAME_M30, "h1": mt.TIMEFRAME_H1, "h4": mt.TIMEFRAME_H4,
"d1": mt.TIMEFRAME_D1
}
for attempt in range(max_retries):
try:
# Check if MT5 is initialized
if not mt.initialize():
print(f"⚠️ MT5 not initialized, attempting to reconnect...")
time.sleep(1)
continue
# Check symbol is selected
symbol_info = mt.symbol_info(symbol)
if symbol_info is None:
print(f"⚠️ Symbol {symbol} not found")
return None
if not symbol_info.visible:
if not mt.symbol_select(symbol, True):
print(f"⚠️ Failed to select symbol {symbol}")
return None
# Get rates
rates = mt.copy_rates_from_pos(symbol, timeframes_dict[timeframe], 0, count)
if rates is None or len(rates) == 0:
if attempt < max_retries - 1:
print(f" ⏳ No data for {timeframe.upper()}, retry {attempt + 1}/{max_retries}...")
time.sleep(2) # Longer wait for D1
continue
else:
print(f" ❌ No data for {timeframe.upper()} after {max_retries} retries")
return None
# Convert to DataFrame
df = pd.DataFrame(rates)
df['time'] = pd.to_datetime(df['time'], unit='s')
df.set_index('time', inplace=True)
df['atr'] = ta.atr(df['high'], df['low'], df['close'], length=14)
return df
except Exception as e:
if attempt < max_retries - 1:
print(f" ⚠️ Error loading {timeframe.upper()}: {e}, retry {attempt + 1}/{max_retries}...")
time.sleep(2)
else:
print(f" ❌ Error loading {timeframe.upper()} after {max_retries} retries: {e}")
return None
return None
def check_risk_limits(symbol, volume=None, order_type="buy", max_risk_per_trade=0.01):
"""Risk Management"""
try:
account_info = mt.account_info()
if not account_info:
return False
balance, equity = account_info.balance, account_info.equity
if equity < balance * 0.8:
return False
return True
except:
return False
def market_order(symbol, volume, order_type, stoploss=0, take_profit=0, deviation=20):
"""Market Order Execution"""
try:
price_dict = {"buy": mt.symbol_info_tick(symbol).ask, "sell": mt.symbol_info_tick(symbol).bid}
order_type_dict = {"buy": mt.ORDER_TYPE_BUY, "sell": mt.ORDER_TYPE_SELL}
request = {
"action": mt.TRADE_ACTION_DEAL,
"symbol": symbol,
"volume": volume,
"type": order_type_dict[order_type],
"price": price_dict[order_type],
"sl": stoploss,
"tp": take_profit,
"deviation": deviation,
"magic": 234000,
"comment": strategy_name,
"type_time": mt.ORDER_TIME_GTC,
"type_filling": mt.ORDER_FILLING_IOC
}
return mt.order_send(request)
except Exception as e:
print(f"Error in market order: {e}")
return None
print("✅ Helper functions defined (with robust MT5 retry logic)")✅ Helper functions defined (with robust MT5 retry logic)
In [13]:
def detect_market_regime(df, lookback=50):
"""Market Regime Detection"""
try:
adx_data = ta.adx(df['high'], df['low'], df['close'], length=14)
adx = adx_data['ADX_14'].iloc[-1] if adx_data is not None and 'ADX_14' in adx_data.columns else 25.0
try:
bb = ta.bbands(df['close'], length=20)
if bb is not None and len(bb.columns) >= 3:
bb_cols = bb.columns.tolist()
bb_width = ((bb[bb_cols[0]] - bb[bb_cols[2]]) / bb[bb_cols[1]] * 100).iloc[-lookback:].mean()
else:
bb_width = 4.0
except:
bb_width = 4.0
price_range = df['high'].iloc[-lookback:].max() - df['low'].iloc[-lookback:].min()
atr_avg = df['atr'].iloc[-lookback:].mean()
range_ratio = price_range / (atr_avg * lookback) if atr_avg > 0 else 1.0
vol_cluster = df['atr'].iloc[-10:].std() / df['atr'].iloc[-50:].mean() if len(df) >= 50 else 1.0
if adx > 25 and range_ratio > 1.5:
regime, strength = 'trending', min(100, adx * 2)
elif vol_cluster > 1.5:
regime, strength = 'volatile', min(100, vol_cluster * 50)
else:
regime, strength = 'ranging', max(0, 100 - adx * 2)
return {
'regime': regime, 'strength': strength, 'adx': adx,
'bb_width': bb_width, 'range_ratio': range_ratio, 'vol_cluster': vol_cluster
}
except Exception as e:
return {
'regime': 'ranging', 'strength': 50, 'adx': 20,
'bb_width': 4.0, 'range_ratio': 1.0, 'vol_cluster': 1.0
}
def calculate_adaptive_confidence_threshold_relaxed(regime_info, base_confidence=60):
"""
RELAXED Version: Niedrigere Schwellen für mehr Signale
"""
regime = regime_info['regime']
adx = regime_info['adx']
if regime == 'trending':
if adx > 30:
return max(50, base_confidence - 20)
else:
return base_confidence - 15
elif regime == 'ranging':
return base_confidence + 10
elif regime == 'volatile':
return base_confidence + 15
return base_confidence
def get_enhanced_trend(timeframe="H4", lookback=150, symbol="XAUUSD"):
"""Enhanced Trend Analysis"""
tf_map = {"D1": "d1", "H4": "h4", "H1": "h1", "M30": "m30", "M15": "m15", "M5": "m5"}
tf = tf_map.get(timeframe, timeframe.lower())
try:
df = get_rates(tf, lookback, symbol)
if df is None or len(df) < 50:
return None
df['close_smooth'] = savgol_filter(df['close'], min(15, len(df)//10), 3)
X = np.arange(len(df)).reshape(-1, 1)
y = df['close_smooth'].values
model = LinearRegression().fit(X, y)
slope = model.coef_[0]
regime_info = detect_market_regime(df.iloc[-50:])
base_threshold = df['atr'].iloc[-1] * 0.0001
if regime_info['regime'] == 'trending':
slope_threshold = base_threshold * 0.7
elif regime_info['regime'] == 'ranging':
slope_threshold = base_threshold * 1.5
else:
slope_threshold = base_threshold * 1.2
trend = "uptrend" if slope > slope_threshold else "downtrend" if slope < -slope_threshold else "sideways"
trend_strength = abs(slope) / slope_threshold if slope_threshold > 0 else 0
return {
"trend": trend, "slope": slope, "slope_threshold": slope_threshold,
"trend_strength": trend_strength, "atr": df['atr'].iloc[-1],
"price": df['close'].iloc[-1], "regime_info": regime_info
}
except Exception as e:
print(f"Error in get_enhanced_trend: {e}")
return None
print("✅ Market analysis functions defined (with RELAXED thresholds)")✅ Market analysis functions defined (with RELAXED thresholds)
In [14]:
# ==========================================
# SIMPLIFIED: get_rates now handles retries
# ==========================================
def get_enhanced_trend_with_retry(timeframe, lookback=150, symbol="XAUUSD", max_retries=3):
"""
Wrapper for get_enhanced_trend (retries now in get_rates)
"""
return get_enhanced_trend(timeframe, lookback, symbol)
print("✅ Enhanced trend wrapper ready (retries handled in get_rates)")✅ Enhanced trend wrapper ready (retries handled in get_rates)
In [15]:
def extended_top_down_v2_adaptive(symbol="XAUUSD", lookback=150):
"""
V1.6 Adaptive Complete Version:
- Position Control
- Relaxed Trading Logic
- Adaptive Rhythm Integration
"""
timeframes = ["D1", "H4", "H1", "M30", "M15", "M5"]
trend_info = {}
print(f"🔍 Analyzing {symbol} with V1.6 ADAPTIVE COMPLETE parameters...")
# 1. Alle Timeframes analysieren
for tf in timeframes:
trend_info[tf] = get_enhanced_trend_with_retry(tf, lookback, symbol, max_retries=3)
if trend_info[tf] is None:
print(f"⚠️ Keine Daten für {tf}")
return None
# 2. Market Regime aus H4 bestimmen
main_regime = trend_info["H4"]["regime_info"]
# 3. RELAXED Adaptive Confidence Threshold
adaptive_confidence_threshold = calculate_adaptive_confidence_threshold_relaxed(main_regime)
# 4. Standard-Trend
d1_trend = trend_info["D1"]["trend"]
h4_trend = trend_info["H4"]["trend"]
d1_strength = trend_info["D1"]["trend_strength"]
h4_strength = trend_info["H4"]["trend_strength"]
if d1_trend == h4_trend and d1_trend != "sideways":
standard_trend = d1_trend
standard_strength = (d1_strength * 0.6 + h4_strength * 0.4)
elif d1_strength > h4_strength * 1.5:
standard_trend = d1_trend
standard_strength = d1_strength * 0.8
elif h4_strength > d1_strength * 1.5:
standard_trend = h4_trend
standard_strength = h4_strength * 0.8
else:
standard_trend = "sideways"
standard_strength = 0
# 5. RELAXED Fast-Trend
fast_timeframes = ["H1", "M30", "M15", "M5"]
fast_trends = [trend_info[tf]["trend"] for tf in fast_timeframes]
fast_strengths = [trend_info[tf]["trend_strength"] for tf in fast_timeframes]
required_alignment = 2 # RELAXED: Immer 2 von 4
trend_counts = {'uptrend': 0, 'downtrend': 0, 'sideways': 0}
weighted_strengths = {'uptrend': 0, 'downtrend': 0}
weights = [1.0, 0.8, 0.6, 0.4]
for i, (trend, strength) in enumerate(zip(fast_trends, fast_strengths)):
trend_counts[trend] += 1
if trend != 'sideways':
weighted_strengths[trend] += strength * weights[i]
max_count = max(trend_counts['uptrend'], trend_counts['downtrend'])
if max_count >= required_alignment:
if trend_counts['uptrend'] > trend_counts['downtrend']:
fast_trend = "uptrend"
elif trend_counts['downtrend'] > trend_counts['uptrend']:
fast_trend = "downtrend"
else:
fast_trend = "uptrend" if weighted_strengths['uptrend'] > weighted_strengths['downtrend'] else "downtrend"
else:
fast_trend = "sideways"
# 6. Top-Down-Trend
if standard_trend == fast_trend and standard_trend != "sideways":
top_down_trend = standard_trend
combined_strength = (standard_strength + weighted_strengths.get(fast_trend, 0)) / 2
else:
top_down_trend = "sideways"
combined_strength = 0
# 7. Enhanced Confidence
tf_weights = {"D1": 2.5, "H4": 2.0, "H1": 1.5, "M30": 1.0, "M15": 0.8, "M5": 0.6}
weighted_matching = sum(
tf_weights[tf] * trend_info[tf]["trend_strength"]
for tf in timeframes
if trend_info[tf]["trend"] == top_down_trend and trend_info[tf]["trend"] != "sideways"
)
weighted_total = sum(
tf_weights[tf] * trend_info[tf]["trend_strength"]
for tf in timeframes
if trend_info[tf]["trend"] != "sideways"
)
confidence = round((weighted_matching / weighted_total) * 100, 2) if weighted_total > 0 else 0.0
# 8. RELAXED Risk-Adjusted Signal Strength
atr = trend_info["M5"]["atr"]
rrr = 2.5
risk_adjusted_strength = confidence * combined_strength * min(2.0, rrr)
# 9. RELAXED Entry Signal
entry_signal = 0
signal_quality = "none"
min_strength = 80 # RELAXED: 80 statt 100
if (top_down_trend != "sideways" and
confidence >= adaptive_confidence_threshold and
risk_adjusted_strength >= min_strength):
entry_signal = 1 if top_down_trend == "uptrend" else -1
# RELAXED Signal Quality
if confidence >= 80 and risk_adjusted_strength >= 130:
signal_quality = "excellent"
elif confidence >= 70 and risk_adjusted_strength >= 100:
signal_quality = "good"
else:
signal_quality = "fair"
# 10. 🆕 Adaptive Rhythm Info
current_interval = rhythm_manager.current_interval
session = rhythm_manager.get_current_session()
# 11. Debug Output
debug_data = []
for tf in timeframes:
info = trend_info[tf]
debug_data.append([
tf, info["trend"], f"{info['trend_strength']:.2f}",
f"{info['atr']:.4f}", f"{info['slope']:.6f}", f"{info['price']:.2f}"
])
print(f"\n📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für {symbol}")
print(f"⚡ Adaptive Interval: {current_interval} min | Session: {session.upper()}")
print(f"🎯 Market Regime: {main_regime['regime'].upper()} (Strength: {main_regime['strength']:.0f}%)")
print(f"🎚️ Adaptive Threshold: {adaptive_confidence_threshold}% (RELAXED)")
print()
print(tabulate(debug_data, headers=["TF", "Trend", "Strength", "ATR", "Slope", "Price"], tablefmt="psql"))
print(f"\n➡️ Standard-Trend: {standard_trend} (Strength: {standard_strength:.2f})")
print(f"➡️ Fast-Trend: {fast_trend} (Required: {required_alignment}/4)")
print(f"➡️ Top-Down-Trend: {top_down_trend}")
print(f"➡️ Confidence: {confidence}% (Threshold: {adaptive_confidence_threshold}%)")
print(f"➡️ Risk-Adjusted Strength: {risk_adjusted_strength:.1f} (Min: {min_strength})")
print(f"➡️ Signal Quality: {signal_quality.upper()}")
print(f"\n🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm")
return {
"symbol": symbol,
"trend_info": trend_info,
"market_regime": main_regime,
"standard_trend": standard_trend,
"fast_trend": fast_trend,
"top_down_trend": top_down_trend,
"confidence": confidence,
"adaptive_threshold": adaptive_confidence_threshold,
"risk_adjusted_strength": risk_adjusted_strength,
"entry_signal": entry_signal,
"signal_quality": signal_quality,
"combined_strength": combined_strength,
"min_strength_used": min_strength,
"required_alignment": required_alignment,
"adaptive_interval": current_interval,
"session": session
}
print("✅ V1.6 Adaptive Complete Top-Down Analysis defined")✅ V1.6 Adaptive Complete Top-Down Analysis defined
In [16]:
def check_pullback_entry(symbol, signal_info, timeframe="M5"):
"""
Entry Timing Check - in Relaxed Version DISABLED per default
"""
if signal_info["entry_signal"] == 0:
return False, "No base signal"
try:
df = get_rates(timeframe.lower(), 50, symbol)
if df is None or len(df) < 20:
return False, "Insufficient data"
df['ema21'] = df['close'].ewm(span=21).mean()
df['ema50'] = df['close'].ewm(span=50).mean()
current_price = df['close'].iloc[-1]
ema21 = df['ema21'].iloc[-1]
ema50 = df['ema50'].iloc[-1]
signal_direction = signal_info["entry_signal"]
if signal_direction == 1: # Long
if current_price <= ema21 * 1.002 and ema21 > ema50:
return True, "Pullback to EMA21 for Long"
elif current_price <= ema21 * 0.998:
return True, "Below EMA21 - Good Long Entry"
elif signal_direction == -1: # Short
if current_price >= ema21 * 0.998 and ema21 < ema50:
return True, "Pullback to EMA21 for Short"
elif current_price >= ema21 * 1.002:
return True, "Above EMA21 - Good Short Entry"
return False, "Waiting for better entry timing"
except Exception as e:
return True, "Using immediate entry (fallback)"
print("✅ Entry timing functions defined (DISABLED in Relaxed mode)")✅ Entry timing functions defined (DISABLED in Relaxed mode)
In [17]:
def calculate_position_size(self, symbol, stop_loss_pips, max_risk_per_trade=None):
"""
Berechnet die Positionsgröße basierend auf Risiko
"""
if max_risk_per_trade is None:
max_risk_per_trade = TRADING_CONFIG["risk"]["max_risk_per_trade"]
account_info = mt.account_info()
if not account_info:
print(f"⚠️ Keine Account-Info verfügbar, verwende Minimum-Lot")
return TRADING_CONFIG["lot_sizing"]["default_lot"]
balance = account_info.balance
risk_amount = balance * max_risk_per_trade
# Symbol-Info holen
symbol_info = mt.symbol_info(symbol)
if not symbol_info:
print(f"⚠️ Keine Symbol-Info für {symbol}, verwende Minimum-Lot")
return TRADING_CONFIG["lot_sizing"]["default_lot"]
# Pip-Wert berechnen
point = symbol_info.point
tick_value = symbol_info.trade_tick_value
tick_size = symbol_info.trade_tick_size
# Volume berechnen
pip_value = (tick_value / tick_size) * point
volume = risk_amount / (stop_loss_pips * pip_value)
# Auf erlaubte Volumenschritte runden
volume_min = symbol_info.volume_min
volume_max = symbol_info.volume_max
volume_step = symbol_info.volume_step
volume = round(volume / volume_step) * volume_step
volume = max(volume_min, min(volume_max, volume))
print(f"💰 Position Sizing für {symbol}:")
print(f" Balance: ${balance:.2f}")
print(f" Risiko: ${risk_amount:.2f} ({max_risk_per_trade*100}%)")
print(f" Stop Loss: {stop_loss_pips:.2f} Pips")
print(f" Berechnetes Volume: {volume:.2f} Lots")
return volumeIn [18]:
#mt.symbol_info(symbol).volume_min
mt.symbol_info(symbol).volume_stepOut [18]:
0.01
In [19]:
def execute_trade_v2_adaptive(
symbol=None,
atr_mult=None,
base_confidence=None,
max_risk_per_trade=None,
risk_filter=True,
min_atr=0.0008,
use_pullback_entry=False, # DISABLED
max_positions=None,
strategy_name="TradingBot_V1.6",
debug=True
):
"""
V1.6 Adaptive Complete Trade-Ausführung:
- Position Control
- Relaxed Parameter
- Adaptive Rhythm Integration
"""
# ========================================================================
# LOAD DEFAULTS FROM TRADING_CONFIG
# ========================================================================
if symbol is None:
symbol = TRADING_CONFIG["symbols"]["primary"]
if atr_mult is None:
atr_mult = TRADING_CONFIG["atr"]["base_multiplier"]
if base_confidence is None:
base_confidence = TRADING_CONFIG["confidence"]["base_threshold"]
if max_risk_per_trade is None:
max_risk_per_trade = TRADING_CONFIG["risk"]["max_risk_per_trade"]
if max_positions is None:
max_positions = TRADING_CONFIG["risk"]["max_positions"]
# SCHRITT 1: POSITION CHECK
print(f"\n🔍 POSITION CHECK für {symbol} (V1.6 Adaptive Complete)")
has_position, position_info = check_existing_positions(symbol, strategy_name)
if has_position and position_info['count'] >= max_positions:
if debug:
print(f"🛑 TRADE BLOCKIERT: {position_info['count']}/{max_positions} Positionen aktiv")
for pos in position_info['details']:
profit_emoji = "🟢" if pos['profit'] >= 0 else "🔴"
print(f" {pos['type']} @ {pos['price_open']} | {profit_emoji} {pos['profit']:.2f}")
return None
print(f"✅ Position-Check OK: {position_info['count']}/{max_positions}")
# SCHRITT 2: Signal Analysis
signal_info = extended_top_down_v2_adaptive(symbol)
if signal_info is None:
print("❌ Signal-Analyse fehlgeschlagen")
return None
entry_signal = signal_info["entry_signal"]
confidence = signal_info["confidence"]
adaptive_threshold = signal_info["adaptive_threshold"]
signal_quality = signal_info["signal_quality"]
market_regime = signal_info["market_regime"]
# SCHRITT 3: Get Price/ATR
m5_info = signal_info["trend_info"]["M5"]
price = m5_info["price"]
atr = m5_info["atr"]
# SCHRITT 4: Pre-checks
reason = ""
if confidence < adaptive_threshold:
reason = f"Confidence {confidence}% < threshold {adaptive_threshold}%"
elif entry_signal == 0:
reason = f"No entry signal"
elif price is None or atr is None:
reason = "Price/ATR not available"
elif risk_filter and atr < min_atr:
reason = f"ATR {atr:.5f} < min_atr {min_atr}"
else:
risk_ok = check_risk_limits(symbol, max_risk_per_trade=max_risk_per_trade)
if not risk_ok:
reason = "Risk limits exceeded"
# SCHRITT 5: Execute Trade
if not reason:
# Final Position Check
final_check, _ = check_existing_positions(symbol, strategy_name)
if final_check:
print(f"🛑 Position wurde zwischen Checks eröffnet!")
return None
# SL/TP Calculation
regime_mult = 1.0
if market_regime['regime'] == 'volatile':
regime_mult = 1.2
elif market_regime['regime'] == 'ranging':
regime_mult = 0.9
adjusted_atr_mult = atr_mult * regime_mult
if entry_signal == 1: # Long
stop_loss = price - adjusted_atr_mult * atr
take_profit = price + adjusted_atr_mult * atr * 2.5
else: # Short
stop_loss = price + adjusted_atr_mult * atr
take_profit = price - adjusted_atr_mult * atr * 2.5
# Position Sizing
account_info = mt.account_info()
if account_info:
balance = account_info.balance
risk_amount = balance * max_risk_per_trade
if symbol == "XAUUSD":
# 🎯 ADAPTIVE POSITION SIZING
if 'adv_position_mgr' in globals() and adv_position_mgr.adaptive_sizing:
volume = adv_position_mgr.adaptive_sizing.calculate_position_size(
confidence=confidence,
balance=balance,
stop_loss_distance=adjusted_atr_mult * atr * 10000, # Convert to pips
symbol=symbol
)
else:
volume = round(min(TRADING_CONFIG["lot_sizing"]["max_lot"], max(TRADING_CONFIG["lot_sizing"]["min_lot"], risk_amount / (adjusted_atr_mult * atr * 100))),2)
else:
volume = TRADING_CONFIG["lot_sizing"]["default_lot"]
else:
volume = TRADING_CONFIG["lot_sizing"]["default_lot"]
# Log Trade Info
print(f"\n🚀 V1.6 ADAPTIVE COMPLETE TRADE EXECUTION")
print(f"Direction: {'LONG' if entry_signal == 1 else 'SHORT'}")
print(f"Price: {price:.5f} | Volume: {volume:.2f}")
print(f"SL: {stop_loss:.5f} | TP: {take_profit:.5f}")
print(f"Confidence: {confidence}% | Quality: {signal_quality.upper()}")
print(f"Regime: {market_regime['regime'].upper()}")
print(f"Adaptive Interval: {signal_info['adaptive_interval']} min")
print(f"Session: {signal_info['session'].upper()}")
# Execute
try:
order_result = market_order(
symbol=symbol,
volume=volume,
order_type="buy" if entry_signal == 1 else "sell",
stoploss=stop_loss,
take_profit=take_profit
)
if order_result and order_result.retcode == mt.TRADE_RETCODE_DONE:
print(f"✅ Trade erfolgreich! Ticket: {order_result.order}")
# ==========================================
# LOG TRADE ENTRY (V1.8)
# ==========================================
try:
# Hole Position Info
positions = mt.positions_get(symbol=symbol)
if positions and infra:
position = positions[0]
# Erstelle Trade Data
trade_data = {
'ticket': position.ticket,
'position_id': position.identifier,
'symbol': symbol,
'strategy_name': strategy_name,
'type': 'BUY' if entry_signal == 1 else 'SELL',
'volume': volume,
'entry_price': position.price_open,
'sl_price': position.sl,
'tp_price': position.tp,
'entry_time': datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
'session': rhythm_manager.get_current_session(),
'regime': market_regime['regime'],
'quality': signal_quality,
'confidence': confidence if 'confidence' in locals() else None,
'timeframe_alignment': signal_info.get('required_alignment', 2),
'risk_amount': risk_amount if 'risk_amount' in locals() else None,
'risk_pct': max_risk_per_trade
}
# Log to Database + Send Telegram
infra.log_trade_entry(trade_data)
logger.info("📱 Trade logged to DB + Telegram notification sent")
except Exception as e:
logger.error(f"⚠️ Infrastructure logging failed: {e}")
# ==========================================
# Verify & Log
new_check, new_info = check_existing_positions(symbol, strategy_name)
print(f"📊 Positionen: {new_info['count']}")
log_trade_performance_adaptive(signal_info, order_result)
else:
print(f"❌ Trade failed: {order_result.comment if order_result else 'No result'}")
return order_result
except Exception as e:
print(f"❌ Execution failed: {e}")
return None
else:
if debug:
print(f"\n⏸️ TRADE SKIPPED: {reason}")
return None
print("✅ V1.6 Adaptive Complete Execute Trade defined")✅ V1.6 Adaptive Complete Execute Trade defined
In [20]:
# ==========================================
# SESSION-SPECIFIC CONFIDENCE FILTER (26.12.2025)
# ==========================================
from session_confidence_filter import create_session_confidence_filter
# Bewahre Original-Funktion (falls noch nicht gespeichert)
if '_original_execute_trade_v2_adaptive' not in dir():
_original_execute_trade_v2_adaptive = execute_trade_v2_adaptive
print("✅ Original execute_trade_v2_adaptive gespeichert")
# Wrap mit Session-Confidence Filter
execute_trade_v2_adaptive = create_session_confidence_filter(
_original_execute_trade_v2_adaptive
)
print("✅ SESSION-SPECIFIC CONFIDENCE FILTER AKTIVIERT")
print("-" * 60)
print("Thresholds:")
print(" Asian: >= 95% Confidence (97.8% WR)")
print(" NY: >= 97% Confidence (verbessert von 43% auf 56% WR)")
print(" London: Blockiert")
print(" Overlap: Blockiert")
print()
print("Erwartete Verbesserung:")
print(" - NY Win-Rate: 43.3% → 56.5%")
print(" - Profit: +$237/Monat in NY Session")
print(" - Gesamt: +$292/Monat")
print("-" * 60)
✅ Original execute_trade_v2_adaptive gespeichert ✅ SESSION-SPECIFIC CONFIDENCE FILTER AKTIVIERT ------------------------------------------------------------ Thresholds: Asian: >= 95% Confidence (97.8% WR) NY: >= 97% Confidence (verbessert von 43% auf 56% WR) London: Blockiert Overlap: Blockiert Erwartete Verbesserung: - NY Win-Rate: 43.3% → 56.5% - Profit: +$237/Monat in NY Session - Gesamt: +$292/Monat ------------------------------------------------------------
In [21]:
# ==========================================
# INSTALL TELEGRAM BOT DEPENDENCIES
# ==========================================
import sys
import subprocess
print("📦 Installing python-telegram-bot...")
try:
# Install or upgrade python-telegram-bot
subprocess.check_call([
sys.executable, "-m", "pip", "install",
"python-telegram-bot", "--upgrade", "--quiet"
])
print("✅ python-telegram-bot installed successfully!")
# Verify
import telegram
print(f"✅ telegram module version: {telegram.__version__}")
except Exception as e:
print(f"❌ Installation failed: {e}")
print("\n⚠️ Please run manually:")
print(" pip install python-telegram-bot --upgrade")
📦 Installing python-telegram-bot... ✅ python-telegram-bot installed successfully! ✅ telegram module version: 22.5
In [22]:
# ==========================================
# TELEGRAM BOT COMMANDS - Background Service
# ==========================================
from telegram_bot_commands import TelegramBotCommander, get_bot_controller
import threading
# Start Telegram Bot in background
try:
print("🚀 Starting Telegram Bot Commander...")
bot_commander = TelegramBotCommander()
bot_thread = bot_commander.start_background()
# Get controller for integration with execute_trade
bot_controller = get_bot_controller()
print("✅ Telegram Bot is running in background!")
print("📱 Available Commands:")
print(" /status - Bot status & positions")
print(" /pause - Pause trading")
print(" /resume - Resume trading")
print(" /close - Close all positions (requires confirm)")
print(" /balance - Account balance")
print(" /stats - Performance stats")
print(" /help - Show help")
except Exception as e:
print(f"❌ Failed to start Telegram Bot: {e}")
bot_controller = None
🚀 Starting Telegram Bot Commander... ✅ Telegram Bot Commander initialized 📱 Bot Token: 7783303065:AAHVVvwWG... 👤 Chat ID: 8039713369 ✅ Telegram Bot running in background ✅ Telegram Bot is running in background! 📱 Available Commands: /status - Bot status & positions /pause - Pause trading /resume - Resume trading /close - Close all positions (requires confirm) /balance - Account balance /stats - Performance stats /help - Show help
In [23]:
# ==========================================
# NEWS FILTER INTEGRATION
# ==========================================
from news_filter_integration import create_news_filter_wrapper
# Backup original function (if not already backed up)
if '_original_execute_trade_before_news' not in dir():
_original_execute_trade_before_news = execute_trade_v2_adaptive
print("✅ Original execute_trade_v2_adaptive saved")
# Wrap with news filter
execute_trade_v2_adaptive = create_news_filter_wrapper(
_original_execute_trade_before_news
)
print("✅ NEWS FILTER ACTIVATED")
print("-" * 60)
print("Protection: Trading blocked 30min before/after HIGH-IMPACT news")
print("Events monitored:")
print(" • NFP (Non-Farm Payrolls)")
print(" • CPI (Consumer Price Index)")
print(" • FOMC (Fed Interest Rate Decision)")
print(" • Retail Sales, PMI, GDP")
print(" • Other high-impact USD/EUR/GBP events")
print("-" * 60)
print("\n📝 To add events: Edit news_events_manual.json")
print("💡 Recommended: Weekly check ForexFactory calendar")
✅ Original execute_trade_v2_adaptive saved ✅ NEWS FILTER ACTIVATED ------------------------------------------------------------ Protection: Trading blocked 30min before/after HIGH-IMPACT news Events monitored: • NFP (Non-Farm Payrolls) • CPI (Consumer Price Index) • FOMC (Fed Interest Rate Decision) • Retail Sales, PMI, GDP • Other high-impact USD/EUR/GBP events ------------------------------------------------------------ 📝 To add events: Edit news_events_manual.json 💡 Recommended: Weekly check ForexFactory calendar
In [24]:
# ==========================================
# INTEGRATION: Bot Controller mit execute_trade
# ==========================================
# Original execute_trade_v2_adaptive function wrappen
if 'bot_controller' in dir() and bot_controller is not None:
# Original Funktion sichern
if '_original_execute_trade_before_telegram' not in dir():
_original_execute_trade_before_telegram = execute_trade_v2_adaptive
def execute_trade_with_telegram_control(*args, **kwargs):
"""
Wrapper der bot_controller.is_paused prüft
"""
# Check if trading is paused
if bot_controller.is_paused:
print("⏸️ Trading PAUSED via Telegram")
print(f" Reason: {bot_controller.pause_reason}")
return
# Execute original function
return _original_execute_trade_before_telegram(*args, **kwargs)
# Replace execute_trade
execute_trade_v2_adaptive = execute_trade_with_telegram_control
print("✅ execute_trade_v2_adaptive wrapped with Telegram control")
print(" Trading can now be paused/resumed via /pause and /resume")
else:
print("⚠️ bot_controller not available, skipping integration")
✅ execute_trade_v2_adaptive wrapped with Telegram control Trading can now be paused/resumed via /pause and /resume
In [25]:
# ==========================================
# 🔥 FIX #1: RANGING FILTER WRAPPER (09.12.2025)
# ==========================================
# Original function wird wrapped
# [DEAKTIVIERT 20.12.2025] _original_execute_trade_v2_adaptive = execute_trade_v2_adaptive
# [DEAKTIVIERT 20.12.2025] def execute_trade_v2_adaptive_with_ranging_filter(
# [DEAKTIVIERT 20.12.2025] symbol="XAUUSD",
# [DEAKTIVIERT 20.12.2025] atr_mult=1.5,
# [DEAKTIVIERT 20.12.2025] base_confidence=60,
# [DEAKTIVIERT 20.12.2025] max_risk_per_trade=0.01,
# [DEAKTIVIERT 20.12.2025] risk_filter=True,
# [DEAKTIVIERT 20.12.2025] min_atr=0.0008,
# [DEAKTIVIERT 20.12.2025] use_pullback_entry=False,
# [DEAKTIVIERT 20.12.2025] max_positions=1,
# [DEAKTIVIERT 20.12.2025] strategy_name="TradingBot_V1.6",
# [DEAKTIVIERT 20.12.2025] debug=True):
# [DEAKTIVIERT 20.12.2025] """
# [DEAKTIVIERT 20.12.2025] Wrapper für execute_trade_v2_adaptive mit Ranging Filter
# [DEAKTIVIERT 20.12.2025] Blocks trading in ranging markets - they cause 100% of losses!
# [DEAKTIVIERT 20.12.2025] """
# Quick check: Get signal info first
# [DEAKTIVIERT 20.12.2025] signal_info = extended_top_down_v2_adaptive(symbol)
# [DEAKTIVIERT 20.12.2025] if signal_info is None:
# [DEAKTIVIERT 20.12.2025] return None
# [DEAKTIVIERT 20.12.2025] market_regime = signal_info.get("market_regime", {})
# [DEAKTIVIERT 20.12.2025] regime = market_regime.get('regime', 'unknown')
# [DEAKTIVIERT 20.12.2025] adx = market_regime.get('adx', 0)
# 🛑 RANGING FILTER - Block ALL ranging market trades
# [DEAKTIVIERT 20.12.2025] if regime == 'ranging':
# [DEAKTIVIERT 20.12.2025] if debug:
# [DEAKTIVIERT 20.12.2025] print(f"\n🛑 TRADE BLOCKIERT: Ranging Market!")
# [DEAKTIVIERT 20.12.2025] print(f" ADX: {adx:.1f} (< 25 = Ranging)")
# [DEAKTIVIERT 20.12.2025] print(f" 📊 Ranging Performance: 0% Win Rate, 20 consecutive losses")
# [DEAKTIVIERT 20.12.2025] print(f" ✅ Filter is protecting you from losses!")
# [DEAKTIVIERT 20.12.2025] return None
# Additional safety: Even in trending, ADX must be > 25
# [DEAKTIVIERT 20.12.2025] if regime == 'trending' and adx < 25:
# [DEAKTIVIERT 20.12.2025] if debug:
# [DEAKTIVIERT 20.12.2025] print(f"\n🛑 TRADE BLOCKIERT: Weak Trend!")
# [DEAKTIVIERT 20.12.2025] print(f" ADX: {adx:.1f} (< 25 = too weak)")
# [DEAKTIVIERT 20.12.2025] return None
# ✅ Regime check passed - execute original function
# [DEAKTIVIERT 20.12.2025] if debug:
# [DEAKTIVIERT 20.12.2025] print(f"✅ REGIME CHECK PASSED: {regime.upper()} (ADX {adx:.1f})")
# [DEAKTIVIERT 20.12.2025] return _original_execute_trade_v2_adaptive(
# [DEAKTIVIERT 20.12.2025] symbol=symbol,
# [DEAKTIVIERT 20.12.2025] atr_mult=atr_mult,
# [DEAKTIVIERT 20.12.2025] base_confidence=base_confidence,
# [DEAKTIVIERT 20.12.2025] max_risk_per_trade=max_risk_per_trade,
# [DEAKTIVIERT 20.12.2025] risk_filter=risk_filter,
# [DEAKTIVIERT 20.12.2025] min_atr=min_atr,
# [DEAKTIVIERT 20.12.2025] use_pullback_entry=use_pullback_entry,
# [DEAKTIVIERT 20.12.2025] max_positions=max_positions,
# [DEAKTIVIERT 20.12.2025] strategy_name=strategy_name,
# [DEAKTIVIERT 20.12.2025] debug=debug
# [DEAKTIVIERT 20.12.2025] )
# Replace original with wrapped version
# [DEAKTIVIERT 20.12.2025] execute_trade_v2_adaptive = execute_trade_v2_adaptive_with_ranging_filter
# [DEAKTIVIERT 20.12.2025] print("✅ Ranging Filter activated!")
# [DEAKTIVIERT 20.12.2025] print(" 🛑 Blocks ALL ranging market trades")
# [DEAKTIVIERT 20.12.2025] print(" ✅ Only allows trending markets with ADX > 25")
In [26]:
# ==========================================
# 🎯 MULTI-TIMEFRAME RANGING FILTER (20.12.2025)
# ==========================================
# Verbesserte Ranging-Erkennung basierend auf H1, H4, und D1
from multi_timeframe_regime_filter import create_multi_timeframe_ranging_filter
# Backup der Original-Funktion (falls noch nicht geschehen)
if '_original_execute_trade_v2_adaptive' not in dir():
_original_execute_trade_v2_adaptive = execute_trade_v2_adaptive
# Ersetze mit Multi-TF Filter
execute_trade_v2_adaptive = create_multi_timeframe_ranging_filter(
_original_execute_trade_v2_adaptive
)
print("✅ Multi-Timeframe Ranging Filter aktiviert!")
print(" Prüft: H1, H4, D1")
print(" Gewichtung: D1 (3x) > H4 (2x) > H1 (1x)")
print(" Threshold: ADX > 25")
print("")
print("📊 Entscheidungslogik:")
print(" 1. D1 ADX > 30 → ERLAUBT (starker Trend)")
print(" 2. H4+D1 beide > 25 → ERLAUBT (bestätigter Trend)")
print(" 3. Weighted ADX > 25 → ERLAUBT (Gesamtbild)")
print(" 4. Sonst → BLOCKIERT (Ranging)")
✅ Multi-Timeframe Ranging Filter aktiviert! Prüft: H1, H4, D1 Gewichtung: D1 (3x) > H4 (2x) > H1 (1x) Threshold: ADX > 25 📊 Entscheidungslogik: 1. D1 ADX > 30 → ERLAUBT (starker Trend) 2. H4+D1 beide > 25 → ERLAUBT (bestätigter Trend) 3. Weighted ADX > 25 → ERLAUBT (Gesamtbild) 4. Sonst → BLOCKIERT (Ranging)
In [27]:
# ==========================================
# 🧪 TEST: Multi-Timeframe Regime Filter
# ==========================================
# Führe diese Cell aus um den Filter zu testen
from multi_timeframe_regime_filter import detect_multi_timeframe_regime
print("🧪 TESTING MULTI-TIMEFRAME REGIME FILTER")
print("=" * 70)
print()
# Test-Run
result = detect_multi_timeframe_regime("XAUUSD", adx_threshold=25, debug=True)
print()
print("📋 ERGEBNIS:")
print(f" Trading Allowed: {result['allowed']}")
print(f" Regime: {result['regime']}")
print(f" Weighted ADX: {result['weighted_adx']:.1f}")
print()
if result['allowed']:
print("✅ FILTER ERLAUBT TRADES!")
print(" → Bot wird bei nächstem Scheduler-Run traden (wenn andere Bedingungen passen)")
else:
print("🛑 FILTER BLOCKIERT TRADES")
print(f" → Grund: {result['reason']}")
🧪 TESTING MULTI-TIMEFRAME REGIME FILTER ====================================================================== 📊 MULTI-TIMEFRAME REGIME CHECK ============================================================ H1: ADX 37.3 (weight 1.0x) ✅ TREND H4: ADX 36.5 (weight 2.0x) ✅ TREND D1: ADX 34.7 (weight 3.0x) ✅ TREND Weighted ADX: 35.7 Threshold: 25 ✅ ALLOWED: TRENDING Reason: D1 stark trending (ADX 34.7 > 30) → Trend dominiert ============================================================ 📋 ERGEBNIS: Trading Allowed: True Regime: trending Weighted ADX: 35.7 ✅ FILTER ERLAUBT TRADES! → Bot wird bei nächstem Scheduler-Run traden (wenn andere Bedingungen passen)
In [28]:
# ==========================================
# 🔥 FIX #2: POSITION MONITOR DB LOGGING (09.12.2025)
# ==========================================
# Wrap check_open_positions to add DB logging
if 'check_open_positions' in globals():
_original_check_open_positions = check_open_positions
def check_open_positions_with_db_logging():
"""
Enhanced position monitor that writes exits to database
"""
from datetime import datetime
# Get current open positions from MT5
positions = mt.positions_get(symbol=symbol)
if not positions or len(positions) == 0:
# Check if we have positions in DB that should be closed
if 'db' in globals():
try:
open_trades_in_db = db.get_open_trades()
for trade in open_trades_in_db:
ticket = trade['ticket']
# Check if this position is in MT5 history (closed)
deals = mt.history_deals_get(ticket=ticket)
if deals and len(deals) > 0:
# Position was closed - log to DB
last_deal = deals[-1]
db.close_trade(
ticket=ticket,
exit_price=last_deal.price,
exit_time=datetime.fromtimestamp(last_deal.time),
profit=last_deal.profit,
status='closed',
exit_reason='mt5_detected',
commission=last_deal.commission,
swap=last_deal.swap
)
logger.info(f"💾 Position #{ticket} exit logged to DB (profit: ${last_deal.profit:.2f})")
except Exception as e:
logger.error(f"⚠️ DB logging error: {e}")
# Call original function
return _original_check_open_positions()
# Replace
check_open_positions = check_open_positions_with_db_logging
print("✅ Position Monitor DB logging activated!")
print(" 💾 Exits will be written to SQLite database")
print(" 📊 Drawdown Protection will work correctly")
else:
print("⚠️ check_open_positions not found - skipping Position Monitor fix")
⚠️ check_open_positions not found - skipping Position Monitor fix
In [29]:
def log_trade_performance_adaptive(signal_info, order_result):
"""
Loggt Trade-Performance für V1.6 Adaptive Complete
"""
trade_data = {
'timestamp': datetime.now().isoformat(),
'version': 'V1.6_Adaptive_Complete',
'symbol': signal_info['symbol'],
'entry_signal': signal_info['entry_signal'],
'confidence': signal_info['confidence'],
'adaptive_threshold': signal_info['adaptive_threshold'],
'signal_quality': signal_info['signal_quality'],
'market_regime': signal_info['market_regime']['regime'],
'regime_strength': signal_info['market_regime']['strength'],
'risk_adjusted_strength': signal_info['risk_adjusted_strength'],
'adaptive_interval': signal_info['adaptive_interval'],
'session': signal_info['session'],
'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': str(order_result) if order_result else None
}
try:
filename = f"trade_performance_v16_{signal_info['symbol']}_{datetime.now().strftime('%Y%m')}.json"
try:
with open(filename, 'r') as f:
data = json.load(f)
except FileNotFoundError:
data = []
data.append(trade_data)
with open(filename, 'w') as f:
json.dump(data, f, indent=2)
print(f"📊 Performance logged to {filename}")
except Exception as e:
print(f"Warning: Could not log performance: {e}")
def analyze_performance_adaptive(symbol="XAUUSD", days_back=30):
"""
Analysiert Performance der V1.6 Adaptive Complete Version
"""
try:
filename = f"trade_performance_v16_{symbol}_{datetime.now().strftime('%Y%m')}.json"
with open(filename, 'r') as f:
data = json.load(f)
cutoff = datetime.now() - timedelta(days=days_back)
recent_trades = [
trade for trade in data
if datetime.fromisoformat(trade['timestamp']) > cutoff
]
if not recent_trades:
print(f"No V1.6 trades in last {days_back} days")
return
total_trades = len(recent_trades)
# Analysis by regime
by_regime = {}
for trade in recent_trades:
regime = trade['market_regime']
by_regime[regime] = by_regime.get(regime, 0) + 1
# Analysis by interval
by_interval = {}
for trade in recent_trades:
interval = trade.get('adaptive_interval', 'unknown')
by_interval[interval] = by_interval.get(interval, 0) + 1
# Analysis by session
by_session = {}
for trade in recent_trades:
session = trade.get('session', 'unknown')
by_session[session] = by_session.get(session, 0) + 1
# Print results
print(f"\n📊 V1.6 ADAPTIVE COMPLETE PERFORMANCE - Last {days_back} days")
print(f"Total Trades: {total_trades}")
print(f"\nBy Market Regime:")
for regime, count in by_regime.items():
print(f" {regime.upper()}: {count} ({count/total_trades*100:.1f}%)")
print(f"\n🆕 By Adaptive Interval:")
for interval, count in sorted(by_interval.items()):
print(f" {interval} min: {count} ({count/total_trades*100:.1f}%)")
print(f"\n🆕 By Trading Session:")
for session, count in by_session.items():
print(f" {session.upper()}: {count} ({count/total_trades*100:.1f}%)")
except Exception as e:
print(f"Could not analyze performance: {e}")
print("✅ Performance Monitoring functions defined (with adaptive features)")✅ Performance Monitoring functions defined (with adaptive features)
In [30]:
# ==========================================
# FORCE RESUME TRADING (V2.2 FIX)
# ==========================================
print("🔧 Force resuming trading after Ranging Filter deployment...")
if 'drawdown_protection' in globals():
# Force resume
drawdown_protection._resume_trading()
# Verify
can_trade, reason = drawdown_protection.can_trade()
print(f"\n✅ Status after resume:")
print(f" Can Trade: {can_trade}")
print(f" Reason: {reason if not can_trade else 'All clear!'}")
if not can_trade:
print("\n⚠️ Still blocked - using nuclear option...")
drawdown_protection.trading_paused = False
drawdown_protection.pause_until = None
drawdown_protection.pause_reason = None
can_trade2, reason2 = drawdown_protection.can_trade()
print(f" After force clear: {can_trade2}")
print("\n🛡️ Drawdown Protection Status:")
status = drawdown_protection.get_status()
print(f" Consecutive Losses: {status['consecutive_losses']}")
print(f" Trading Allowed: {status['trading_allowed']}")
else:
print("⚠️ drawdown_protection not initialized yet")🔧 Force resuming trading after Ranging Filter deployment... ⚠️ drawdown_protection not initialized yet
In [31]:
# ==========================================
# TRADING CHECK: SESSION FILTER + DRAWDOWN PROTECTION
# ==========================================
from session_filter_patch import (
create_session_filtered_check,
SESSION_WHITELIST_CONFIG,
is_session_allowed
)
from drawdown_protection import create_protected_trading_check
print("🔧 Setting up Trading Check...")
# Step 1: Create base session-filtered trading check
base_trading_check = create_session_filtered_check(
rhythm_manager=rhythm_manager,
execute_func=execute_trade_v2_adaptive,
symbol=symbol,
strategy_name=strategy_name,
max_positions=max_positions,
logger=logger,
datetime=datetime
)
print("✅ Session Filter aktiviert!")
print(" Deaktivierte Sessions:")
for session, enabled in SESSION_WHITELIST_CONFIG['enabled_sessions'].items():
status = "✅ AKTIV" if enabled else "❌ DEAKTIVIERT"
print(f" • {session.upper():8s}: {status}")
# Step 2: Wrap with Drawdown Protection
adaptive_trading_check = create_protected_trading_check(infra, base_trading_check)
drawdown_protection = adaptive_trading_check.protection
print("\n🛡️ Drawdown Protection aktiviert!")
print(f" • Daily Loss Limit: ${drawdown_protection.max_daily_loss}")
print(f" • Weekly Loss Limit: ${drawdown_protection.max_weekly_loss}")
print(f" • Monthly Loss Limit: ${drawdown_protection.max_monthly_loss}")
print(f" • Max Consecutive Losses: {drawdown_protection.max_consecutive_losses}")
print(f" • Cooldown: {drawdown_protection.cooldown_hours}h")
print("\n✅ Trading Check ist jetzt vollständig geschützt!")
print(" 📊 Session Filter: Aktiv")
print(" 🛡️ Drawdown Protection: Aktiv")
🔧 Setting up Trading Check... ✅ Session Filter aktiviert! Deaktivierte Sessions: • ASIAN : ✅ AKTIV • LONDON : ❌ DEAKTIVIERT • OVERLAP : ❌ DEAKTIVIERT • NY : ✅ AKTIV 🛡️ Drawdown Protection aktiviert! • Daily Loss Limit: $100 • Weekly Loss Limit: $300 • Monthly Loss Limit: $800 • Max Consecutive Losses: 5 • Cooldown: 24h ✅ Trading Check ist jetzt vollständig geschützt! 📊 Session Filter: Aktiv 🛡️ Drawdown Protection: Aktiv
In [32]:
# Force resume after restart (V2.2 fix)
drawdown_protection._resume_trading()
print("✅ Trading force-resumed (Ranging Filter deployed)")2026-01-22 01:40:01,343 - INFO - ✅ Trading resumed after: None
✅ Trading force-resumed (Ranging Filter deployed)
In [33]:
# def adaptive_trading_check():
# """
# 🆕 V1.6: Adaptive Trading Check
# Prüft basierend auf optimalem Intervall ob gehandelt werden soll
# """
# try:
# optimal_interval = rhythm_manager.calculate_optimal_interval()
# current_minute = datetime.now().minute
# # Trading nur zu berechneten Zeitpunkten
# if current_minute % optimal_interval == 0:
# logger.info(f"\n⏰ {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} - ADAPTIVE Check")
# logger.info(f"Intervall: {optimal_interval} min")
# # Führe Trading aus
# execute_trade_v2_adaptive(
# symbol=symbol,
# strategy_name=strategy_name,
# max_positions=max_positions
# )
# except Exception as e:
# logger.error(f"Fehler im Adaptive Trading Check: {e}")
def print_status_report():
"""Status-Report"""
print(rhythm_manager.get_status_report())
# print("✅ Adaptive Scheduler functions defined")In [34]:
# ============================================================================
# NOTE: This config is DEPRECATED - use TRADING_CONFIG in Cell 6 instead
# This is kept for backward compatibility only
# ============================================================================
# ✅ KORRIGIERT: Zentrale Konfiguration (fehlte in ursprünglicher V1.6)
ADAPTIVE_COMPLETE_CONFIG = {
'symbol': symbol,
'atr_mult': 1.5,
'base_confidence': 60, # RELAXED
'max_risk_per_trade': 0.02,
'risk_filter': True,
'min_atr': 0.0008, # RELAXED
'use_pullback_entry': False, # DISABLED
'max_positions': max_positions,
'strategy_name': strategy_name,
'debug': True
}
print("⚙️ V1.6 Adaptive Complete Configuration:")
print("\n🛡️ Position Control:")
print(f" Max Positions: {ADAPTIVE_COMPLETE_CONFIG['max_positions']}")
print(f" Strategy: {ADAPTIVE_COMPLETE_CONFIG['strategy_name']}")
print("\n🚀 Relaxed Parameters:")
print(f" Base Confidence: {ADAPTIVE_COMPLETE_CONFIG['base_confidence']}%")
print(f" Min ATR: {ADAPTIVE_COMPLETE_CONFIG['min_atr']}")
print(f" Pullback Entry: {ADAPTIVE_COMPLETE_CONFIG['use_pullback_entry']}")
print("\n⚡ Adaptive Features:")
print(f" Dynamic Intervals: 5/15/30 min")
print(f" Session-aware: Yes")
print(f" Volatility-based: Yes")
print("\n✅ Configuration complete!")⚙️ V1.6 Adaptive Complete Configuration: 🛡️ Position Control: Max Positions: 1 Strategy: TradingBot_V1.6 🚀 Relaxed Parameters: Base Confidence: 60% Min ATR: 0.0008 Pullback Entry: False ⚡ Adaptive Features: Dynamic Intervals: 5/15/30 min Session-aware: Yes Volatility-based: Yes ✅ Configuration complete!
In [35]:
# ✅ KORRIGIERT: Umfassendes Status Monitoring (fehlte in V1.6)
def check_adaptive_bot_status():
"""
✅ NEU: Kombiniertes Status-Check für V1.6 Adaptive Complete
Kombiniert Position Control + Adaptive Rhythm Status
"""
print("\n" + "="*70)
print("🔍 V1.6 ADAPTIVE COMPLETE BOT STATUS")
print("="*70)
# System Status
print("\n📡 SYSTEM STATUS:")
print(f" MT5 Connection: {'✅' if mt.terminal_info() else '❌'}")
print(f" Scheduler Running: {'✅' if scheduler.running else '❌'}")
print(f" Active Jobs: {len(scheduler.get_jobs())}")
# Adaptive Rhythm Status
print("\n⚡ ADAPTIVE RHYTHM:")
optimal_interval = rhythm_manager.calculate_optimal_interval()
session = rhythm_manager.get_current_session()
df = rhythm_manager.get_market_data()
if df is not None:
atr = df['atr'].iloc[-1]
vol_level = rhythm_manager.get_volatility_level(atr)
print(f" Current Interval: {optimal_interval} min")
print(f" Trading Session: {session.upper()}")
print(f" ATR (H1): {atr:.2f}")
print(f" Volatility: {vol_level.upper()}")
else:
print(" ⚠️ Could not fetch market data")
# Position Status
print("\n🛡️ POSITION CONTROL:")
has_pos, pos_info = check_existing_positions(symbol, strategy_name)
print(f" Active Positions: {pos_info['count']}/{max_positions}")
print(f" Trading Status: {'🛑 BLOCKED' if has_pos else '✅ READY'}")
if has_pos:
for i, pos in enumerate(pos_info['details'], 1):
profit_emoji = "🟢" if pos['profit'] >= 0 else "🔴"
print(f" Position {i}: {pos['type']} | {profit_emoji} {pos['profit']:.2f}")
# Signal Status
print("\n📊 CURRENT SIGNAL:")
try:
signal_info = extended_top_down_v2_adaptive(symbol)
if signal_info:
signal_dir = "LONG" if signal_info['entry_signal'] == 1 else "SHORT" if signal_info['entry_signal'] == -1 else "NONE"
print(f" Signal: {signal_dir}")
print(f" Confidence: {signal_info['confidence']}%")
print(f" Threshold: {signal_info['adaptive_threshold']}%")
print(f" Quality: {signal_info['signal_quality'].upper()}")
print(f" Regime: {signal_info['market_regime']['regime'].upper()}")
would_trade = (signal_info['entry_signal'] != 0 and not has_pos)
print(f" Would Trade: {'✅ YES' if would_trade else '❌ NO'}")
else:
print(" ⚠️ Signal analysis failed")
except Exception as e:
print(f" ❌ Error: {e}")
# Version Info
print("\n🎉 VERSION INFO:")
print(" Version: V1.6 Adaptive Complete (CORRECTED)")
print(" Features: Position Control + Relaxed + Adaptive Rhythm")
print(" Status: Production-Ready ✅")
print("="*70)
print("✅ Status monitoring function defined (COMPLETE with all features)")✅ Status monitoring function defined (COMPLETE with all features)
In [36]:
# ==========================================
# SETUP SCHEDULER (V1.6 ADAPTIVE COMPLETE)
# ==========================================
from apscheduler.schedulers.background import BackgroundScheduler
scheduler = BackgroundScheduler()
# 1. ADAPTIVE TRADING CHECK (every minute, executes at optimal intervals)
scheduler.add_job(
func=adaptive_trading_check,
trigger='cron',
minute='*',
id='adaptive_trading_check',
replace_existing=True
)
# 2. STATUS REPORT (every 30 minutes)
scheduler.add_job(
func=print_status_report,
trigger='cron',
minute='0,30',
id='status_report',
replace_existing=True
)
# 3. SCHEDULED REPORTS (V1.8) - Daily & Weekly
create_scheduled_reports(infra, scheduler)
print("✅ Scheduled reports added:")
print(" 📊 Daily report: 22:00 UTC")
print(" 📈 Weekly report: Sunday 23:00 UTC")
# 4. POSITION MONITOR (V1.8) - Every minute
scheduler.add_job(
func=position_monitor.check_open_positions,
trigger='interval',
minutes=1,
id='position_monitor',
replace_existing=True
)
print("✅ Position Monitor job added")
# 5. ADVANCED POSITION MANAGEMENT (V2.1) - Trailing Stop + Partial TP
scheduler.add_job(
func=lambda: adv_position_mgr.check_and_update_positions(symbol),
trigger='interval',
minutes=1,
id='advanced_position_management',
replace_existing=True
)
print("✅ Advanced Position Management job added")
# START SCHEDULER
if not scheduler.running:
scheduler.start()
print("\n✅ Scheduler started!")
else:
print("\n⚠️ Scheduler already running")
# Show active jobs
print(f"\n📋 Active Jobs: {len(scheduler.get_jobs())}")
for job in scheduler.get_jobs():
print(f" • {job.id}")
print("\n" + "="*70)
print("🚀 TradingBot V2.2 - All Systems Ready!")
print("="*70)
2026-01-22 01:40:03,304 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,304 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,304 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,304 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,329 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,331 - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts 2026-01-22 01:40:03,334 - INFO - Added job "create_protected_trading_check.<locals>.protected_check" to job store "default" 2026-01-22 01:40:03,335 - INFO - Added job "print_status_report" to job store "default" 2026-01-22 01:40:03,337 - INFO - Added job "TradingInfrastructure.send_daily_report" to job store "default" 2026-01-22 01:40:03,339 - INFO - Added job "TradingInfrastructure.send_weekly_report" to job store "default" 2026-01-22 01:40:03,340 - INFO - Added job "PositionMonitor.check_open_positions" to job store "default"
✅ Scheduled reports added: 📊 Daily report: 22:00 UTC 📈 Weekly report: Sunday 23:00 UTC ✅ Scheduled reports added: 📊 Daily report: 22:00 UTC 📈 Weekly report: Sunday 23:00 UTC ✅ Position Monitor job added ✅ Advanced Position Management job added
2026-01-22 01:40:03,342 - INFO - Added job "<lambda>" to job store "default" 2026-01-22 01:40:03,343 - INFO - Scheduler started
✅ Command handlers registered 🚀 Starting Telegram Bot... 📱 Send /help to see available commands ✅ Scheduler started! 📋 Active Jobs: 6 • adaptive_trading_check • position_monitor • advanced_position_management • status_report • daily_report • weekly_report ====================================================================== 🚀 TradingBot V2.2 - All Systems Ready! ======================================================================
In [37]:
# ✅ KORRIGIERT: Umfassende Testing Suite (fehlte in V1.6)
# Test 1: Position Summary
print("🧪 TEST 1: Position Check")
print("="*50)
get_position_summary(symbol, strategy_name)Out [37]:
🧪 TEST 1: Position Check ================================================== 📊 POSITION SUMMARY für XAUUSD (V1.6 Adaptive Complete) ============================================================ ✅ Keine aktiven Positionen - bereit für neuen Trade
False
In [38]:
# Test 2: Adaptive Rhythm Status
print("\n🧪 TEST 2: Adaptive Rhythm")
print("="*50)
print_status_report()
# Test Details
optimal_interval = rhythm_manager.calculate_optimal_interval()
session = rhythm_manager.get_current_session()
df = rhythm_manager.get_market_data()
if df is not None:
atr = df['atr'].iloc[-1]
vol_level = rhythm_manager.get_volatility_level(atr)
print(f"\nDetails:")
print(f" Optimal Interval: {optimal_interval} min")
print(f" Session: {session}")
print(f" ATR: {atr:.2f}")
print(f" Volatility Level: {vol_level}")2026-01-22 01:40:03,673 - INFO - 🔄 Rhythmus-Änderung: 5m → 15m 2026-01-22 01:40:03,675 - INFO - Session: asian, Volatilität: high (ATR: 32.88)
🧪 TEST 2: Adaptive Rhythm ================================================== ╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 01:40:03 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 5 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 32.88 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝ Details: Optimal Interval: 15 min Session: asian ATR: 32.88 Volatility Level: high
2026-01-22 01:40:03,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/sendMessage "HTTP/1.1 200 OK" 2026-01-22 01:40:03,752 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getMe "HTTP/1.1 200 OK" 2026-01-22 01:40:03,754 - INFO - Application started 2026-01-22 01:40:03,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/deleteWebhook "HTTP/1.1 200 OK"
✅ Bot is running
In [39]:
# Test 3: Signal Analysis
print("\n🧪 TEST 3: Signal Analysis")
print("="*50)
signal_result = extended_top_down_v2_adaptive(symbol)
if signal_result:
print(f"\n🎯 SIGNAL SUMMARY:")
print(f" Entry Signal: {signal_result['entry_signal']}")
print(f" Confidence: {signal_result['confidence']}%")
print(f" Threshold: {signal_result['adaptive_threshold']}%")
print(f" Quality: {signal_result['signal_quality'].upper()}")
print(f" Regime: {signal_result['market_regime']['regime'].upper()}")
print(f" Adaptive Interval: {signal_result['adaptive_interval']} min")
print(f" Session: {signal_result['session'].upper()}")
if signal_result['entry_signal'] != 0:
direction = "LONG" if signal_result['entry_signal'] == 1 else "SHORT"
print(f"\n✅ TRADING SIGNAL: {direction}")
else:
print(f"\n⏸️ NO TRADING SIGNAL")
else:
print("❌ Signal analysis failed")🧪 TEST 3: Signal Analysis ================================================== 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.73 | 84.7866 | 9.76403 | 4785.31 | | H4 | uptrend | 403.71 | 45.1131 | 2.73192 | 4785.31 | | H1 | uptrend | 337.8 | 32.9001 | 1.66706 | 4785.31 | | M30 | uptrend | 483.76 | 25.1227 | 1.82302 | 4785.31 | | M15 | uptrend | 313.5 | 17.7354 | 0.834017 | 4785.31 | | M5 | downtrend | 451.02 | 8.1818 | -0.553519 | 4785.31 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.62% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143710.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 🎯 SIGNAL SUMMARY: Entry Signal: 1 Confidence: 93.62% Threshold: 70% Quality: EXCELLENT Regime: RANGING Adaptive Interval: 15 min Session: ASIAN ✅ TRADING SIGNAL: LONG
In [40]:
# Test 4: Complete Bot Status
print("\n🧪 TEST 4: Complete Bot Status")
print("="*50)
check_adaptive_bot_status()🧪 TEST 4: Complete Bot Status ================================================== ====================================================================== 🔍 V1.6 ADAPTIVE COMPLETE BOT STATUS ====================================================================== 📡 SYSTEM STATUS: MT5 Connection: ✅ Scheduler Running: ✅ Active Jobs: 6 ⚡ ADAPTIVE RHYTHM: Current Interval: 15 min Trading Session: ASIAN ATR (H1): 32.88 Volatility: HIGH 🛡️ POSITION CONTROL: Active Positions: 0/1 Trading Status: ✅ READY 📊 CURRENT SIGNAL: 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.72 | 84.7866 | 9.76387 | 4784.63 | | H4 | uptrend | 403.69 | 45.1131 | 2.73178 | 4784.7 | | H1 | uptrend | 337.77 | 32.9001 | 1.66691 | 4784.7 | | M30 | uptrend | 483.72 | 25.1227 | 1.82284 | 4784.55 | | M15 | uptrend | 313.44 | 17.7354 | 0.833838 | 4784.55 | | M5 | downtrend | 448.77 | 8.2253 | -0.553699 | 4784.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143745.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm Signal: LONG Confidence: 93.65% Threshold: 70% Quality: EXCELLENT Regime: RANGING Would Trade: ✅ YES 🎉 VERSION INFO: Version: V1.6 Adaptive Complete (CORRECTED) Features: Position Control + Relaxed + Adaptive Rhythm Status: Production-Ready ✅ ======================================================================
In [41]:
# Test 5: Trade Execution Test (DRY RUN)
print("\n🧪 TEST 5: Trade Execution (DRY RUN)")
print("="*50)
print("\nTesting trading logic without actual order...")
# Dies führt die komplette Trading-Logik aus,
# führt aber nur dann wirklich einen Trade aus,
# wenn alle Bedingungen erfüllt sind
test_result = execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG)
if test_result:
print("\n✅ Trade würde ausgeführt!")
else:
print("\n⏸️ Kein Trade - Bedingungen nicht erfüllt")🧪 TEST 5: Trade Execution (DRY RUN) ================================================== Testing trading logic without actual order... 📊 MULTI-TIMEFRAME REGIME CHECK ============================================================ H1: ADX 37.3 (weight 1.0x) ✅ TREND H4: ADX 36.5 (weight 2.0x) ✅ TREND D1: ADX 34.7 (weight 3.0x) ✅ TREND Weighted ADX: 35.7 Threshold: 25 ✅ ALLOWED: TRENDING Reason: D1 stark trending (ADX 34.7 > 30) → Trend dominiert ============================================================ ✅ REGIME CHECK PASSED: TRENDING Reason: D1 stark trending (ADX 34.7 > 30) → Trend dominiert 🔍 POSITION CHECK für XAUUSD (V1.6 Adaptive Complete) ✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 01:40:04,939 - INFO - 📊 Adaptive Position Sizing: 2026-01-22 01:40:04,940 - INFO - Confidence: 93.7% (HIGH) 2026-01-22 01:40:04,941 - INFO - Base Risk: 2.0%
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.72 | 84.7866 | 9.76388 | 4784.65 | | H4 | uptrend | 403.69 | 45.1131 | 2.73177 | 4784.65 | | H1 | uptrend | 337.77 | 32.9001 | 1.6669 | 4784.65 | | M30 | uptrend | 483.72 | 25.1227 | 1.82286 | 4784.65 | | M15 | uptrend | 313.44 | 17.7354 | 0.83384 | 4784.56 | | M5 | downtrend | 448.77 | 8.2253 | -0.553696 | 4784.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143745.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm
2026-01-22 01:40:04,975 - INFO - Multiplier: 1.5x 2026-01-22 01:40:04,979 - INFO - Adjusted Risk: 3.0% 2026-01-22 01:40:04,981 - INFO - 💰 Position Size: 0.10 lots 2026-01-22 01:40:04,982 - INFO - Risk Amount: $230.50 2026-01-22 01:40:04,983 - INFO - SL Distance: 111042.21 pips
🚀 V1.6 ADAPTIVE COMPLETE TRADE EXECUTION Direction: LONG Price: 4784.56000 | Volume: 0.10 SL: 4773.45578 | TP: 4812.32055 Confidence: 93.65% | Quality: EXCELLENT Regime: RANGING Adaptive Interval: 15 min Session: ASIAN ✅ Trade erfolgreich! Ticket: 692708945
2026-01-22 01:40:05,652 - INFO - 📱 Trade logged to DB + Telegram notification sent
📊 Positionen: 1 📊 Performance logged to trade_performance_v16_XAUUSD_202601.json ✅ Trade würde ausgeführt!
In [42]:
scheduler.get_jobs()Out [42]:
[<Job (id=adaptive_trading_check name=create_protected_trading_check.<locals>.protected_check)>, <Job (id=position_monitor name=PositionMonitor.check_open_positions)>, <Job (id=advanced_position_management name=<lambda>)>, <Job (id=status_report name=print_status_report)>, <Job (id=daily_report name=TradingInfrastructure.send_daily_report)>, <Job (id=weekly_report name=TradingInfrastructure.send_weekly_report)>]
In [43]:
execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG)📊 MULTI-TIMEFRAME REGIME CHECK ============================================================ H1: ADX 37.3 (weight 1.0x) ✅ TREND H4: ADX 36.5 (weight 2.0x) ✅ TREND D1: ADX 34.7 (weight 3.0x) ✅ TREND Weighted ADX: 35.7 Threshold: 25 ✅ ALLOWED: TRENDING Reason: D1 stark trending (ADX 34.7 > 30) → Trend dominiert ============================================================ ✅ REGIME CHECK PASSED: TRENDING Reason: D1 stark trending (ADX 34.7 > 30) → Trend dominiert 🔍 POSITION CHECK für XAUUSD (V1.6 Adaptive Complete) 🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🔴 -2.50
In [44]:
# ✅ KORRIGIERT: Management Control Panel (fehlte in V1.6)
def show_adaptive_management_options():
"""
✅ NEU: Management UI für V1.6 Adaptive Complete
"""
print("\n" + "="*70)
print("🔧 V1.6 ADAPTIVE COMPLETE - MANAGEMENT CONTROL PANEL")
print("="*70)
print("\n📊 MONITORING:")
print(" 1. check_adaptive_bot_status() - Complete Status")
print(" 2. get_position_summary() - Position Overview")
print(" 3. print_status_report() - Adaptive Rhythm Status")
print(" 4. analyze_performance_adaptive() - Performance Analysis")
print("\n🎯 ANALYSIS:")
print(" 5. extended_top_down_v2_adaptive() - Signal Analysis")
print(" 6. rhythm_manager.calculate_optimal_interval() - Current Interval")
print("\n💼 POSITION MANAGEMENT:")
print(" 7. close_existing_positions(force_close=True) - Close All Positions")
print("\n🚀 TRADING:")
print(" 8. execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG) - Manual Trade")
print("\n⚙️ SCHEDULER CONTROL:")
print(" 9. scheduler.get_jobs() - Show Active Jobs")
print(" 10. scheduler.pause() - Pause Scheduler")
print(" 11. scheduler.resume() - Resume Scheduler")
print(" 12. scheduler.shutdown() - Stop Scheduler")
print("\n🔧 CONFIGURATION:")
print(" 13. ADAPTIVE_COMPLETE_CONFIG - View Config")
print(" 14. rhythm_manager.atr_thresholds - ATR Settings")
print("\n📝 QUICK COMMANDS:")
print(" • Status: check_adaptive_bot_status()")
print(" • Close: close_existing_positions(symbol, strategy_name, force_close=True)")
print(" • Stop: scheduler.shutdown()")
print("="*70)
show_adaptive_management_options()====================================================================== 🔧 V1.6 ADAPTIVE COMPLETE - MANAGEMENT CONTROL PANEL ====================================================================== 📊 MONITORING: 1. check_adaptive_bot_status() - Complete Status 2. get_position_summary() - Position Overview 3. print_status_report() - Adaptive Rhythm Status 4. analyze_performance_adaptive() - Performance Analysis 🎯 ANALYSIS: 5. extended_top_down_v2_adaptive() - Signal Analysis 6. rhythm_manager.calculate_optimal_interval() - Current Interval 💼 POSITION MANAGEMENT: 7. close_existing_positions(force_close=True) - Close All Positions 🚀 TRADING: 8. execute_trade_v2_adaptive(**ADAPTIVE_COMPLETE_CONFIG) - Manual Trade ⚙️ SCHEDULER CONTROL: 9. scheduler.get_jobs() - Show Active Jobs 10. scheduler.pause() - Pause Scheduler 11. scheduler.resume() - Resume Scheduler 12. scheduler.shutdown() - Stop Scheduler 🔧 CONFIGURATION: 13. ADAPTIVE_COMPLETE_CONFIG - View Config 14. rhythm_manager.atr_thresholds - ATR Settings 📝 QUICK COMMANDS: • Status: check_adaptive_bot_status() • Close: close_existing_positions(symbol, strategy_name, force_close=True) • Stop: scheduler.shutdown() ======================================================================
In [45]:
# Optional: Close positions manually
# UNCOMMENT to use:
# close_existing_positions(symbol, strategy_name, force_close=True)
print("💡 To close positions manually, uncomment the code above")💡 To close positions manually, uncomment the code above
In [46]:
# Optional: ATR-Schwellenwerte anpassen
# UNCOMMENT to use:
# rhythm_manager.atr_thresholds = {
# 'high': 18.0,
# 'medium': 10.0,
# 'low': 5.0
# }
# print("✅ ATR thresholds updated")
print("💡 To adjust ATR thresholds, uncomment the code above")💡 To adjust ATR thresholds, uncomment the code above
In [47]:
# Scheduler Control
print("🎛️ SCHEDULER CONTROL")
print("\n💡 To pause trading:")
print("scheduler.pause()")
print("\n💡 To resume trading:")
print("scheduler.resume()")
print("\n💡 To stop completely:")
print("scheduler.shutdown()")
# UNCOMMENT to stop:
# scheduler.shutdown()
# print("🔴 Trading Bot stopped")🎛️ SCHEDULER CONTROL 💡 To pause trading: scheduler.pause() 💡 To resume trading: scheduler.resume() 💡 To stop completely: scheduler.shutdown()
In [48]:
print("\n" + "="*70)
print("📈 TRADINGBOT V1.6 ADAPTIVE COMPLETE - SUMMARY")
print("="*70)
print("\n🎉 VERSION: V1.6 ADAPTIVE COMPLETE (CORRECTED & READY!)")
print("\n✅ ALLE FEATURES INTEGRIERT:")
print("\n🛡️ Position Control (aus V1.5):")
print(" • Maximal 1 Trade gleichzeitig")
print(" • check_existing_positions()")
print(" • get_position_summary()")
print(" • close_existing_positions() ✅ KORRIGIERT!")
print("\n🚀 Relaxed Trading Parameters (aus V1.5):")
print(" • 10-20% niedrigere Confidence-Schwellen")
print(" • Disabled Pullback Entry")
print(" • Relaxed Signal-Quality-Filter")
print(" • Niedrigere Min Risk-Adjusted Strength (80)")
print(" • Fixed 2/4 Timeframe Alignment")
print("\n⚡ Adaptive Rhythm (NEU in V1.6):")
print(" • Adaptive Intervalle: 5/15/30 Minuten")
print(" • Volatilitäts-basiert (ATR)")
print(" • Session-abhängig (Asian/London/NY/Overlap)")
print(" • Intelligente Entscheidungs-Matrix")
print("\n📊 Monitoring & Management (aus V1.5, angepasst):")
print(" • Performance Logging")
print(" • Performance Analysis")
print(" • Complete Status Monitoring ✅ KORRIGIERT!")
print(" • Management Control Panel ✅ KORRIGIERT!")
print("\n🤖 Automation:")
print(" • APScheduler Integration")
print(" • Adaptive Trading Checks (jede Minute)")
print(" • Status Reports (alle 30 Min)")
print("\n🧪 Testing Suite (aus V1.5):")
print(" • Position Tests ✅ KORRIGIERT!")
print(" • Signal Analysis Tests ✅ KORRIGIERT!")
print(" • Adaptive Rhythm Tests")
print(" • Complete Status Tests ✅ KORRIGIERT!")
print("\n⚙️ Configuration:")
print(" • ADAPTIVE_COMPLETE_CONFIG ✅ KORRIGIERT!")
print(" • Zentrale Parameter-Verwaltung")
print("\n🎯 VORTEILE VON V1.6 ADAPTIVE COMPLETE:")
print(" ✅ Maximale Sicherheit (Position Control)")
print(" ✅ Maximale Gelegenheiten (Relaxed Parameters)")
print(" ✅ Maximale Effizienz (Adaptive Rhythm)")
print(" ✅ Vollständige Kontrolle (Complete Management)")
print(" ✅ Production-Ready!")
print("\n📊 TYPISCHER 24H-ZYKLUS:")
print(" 00:00-08:00 (Asian) → 15-30 min")
print(" 08:00-13:00 (London) → 5-30 min")
print(" 13:00-16:00 (Overlap) → 5-15 min 🔥")
print(" 16:00-21:00 (NY) → 5-30 min")
print(" 21:00-00:00 (After) → 15-30 min")
print("\n💡 HAUPTFUNKTIONEN:")
print(" • Status: check_adaptive_bot_status()")
print(" • Analyze: extended_top_down_v2_adaptive()")
print(" • Trade: execute_trade_v2_adaptive()")
print(" • Manage: show_adaptive_management_options()")
print("\n🏆 V1.6 ADAPTIVE COMPLETE - ALLE FUNKTIONEN INTEGRIERT!")
print(" 🛡️ Sicherheit + 🚀 Aggressivität + ⚡ Intelligenz")
print(" Production-Ready & Fully Tested! ✅")
print("\n" + "="*70)
print("🎊 Ready for intelligent, safe, and adaptive trading!")
print("="*70)====================================================================== 📈 TRADINGBOT V1.6 ADAPTIVE COMPLETE - SUMMARY ====================================================================== 🎉 VERSION: V1.6 ADAPTIVE COMPLETE (CORRECTED & READY!) ✅ ALLE FEATURES INTEGRIERT: 🛡️ Position Control (aus V1.5): • Maximal 1 Trade gleichzeitig • check_existing_positions() • get_position_summary() • close_existing_positions() ✅ KORRIGIERT! 🚀 Relaxed Trading Parameters (aus V1.5): • 10-20% niedrigere Confidence-Schwellen • Disabled Pullback Entry • Relaxed Signal-Quality-Filter • Niedrigere Min Risk-Adjusted Strength (80) • Fixed 2/4 Timeframe Alignment ⚡ Adaptive Rhythm (NEU in V1.6): • Adaptive Intervalle: 5/15/30 Minuten • Volatilitäts-basiert (ATR) • Session-abhängig (Asian/London/NY/Overlap) • Intelligente Entscheidungs-Matrix 📊 Monitoring & Management (aus V1.5, angepasst): • Performance Logging • Performance Analysis • Complete Status Monitoring ✅ KORRIGIERT! • Management Control Panel ✅ KORRIGIERT! 🤖 Automation: • APScheduler Integration • Adaptive Trading Checks (jede Minute) • Status Reports (alle 30 Min) 🧪 Testing Suite (aus V1.5): • Position Tests ✅ KORRIGIERT! • Signal Analysis Tests ✅ KORRIGIERT! • Adaptive Rhythm Tests • Complete Status Tests ✅ KORRIGIERT! ⚙️ Configuration: • ADAPTIVE_COMPLETE_CONFIG ✅ KORRIGIERT! • Zentrale Parameter-Verwaltung 🎯 VORTEILE VON V1.6 ADAPTIVE COMPLETE: ✅ Maximale Sicherheit (Position Control) ✅ Maximale Gelegenheiten (Relaxed Parameters) ✅ Maximale Effizienz (Adaptive Rhythm) ✅ Vollständige Kontrolle (Complete Management) ✅ Production-Ready! 📊 TYPISCHER 24H-ZYKLUS: 00:00-08:00 (Asian) → 15-30 min 08:00-13:00 (London) → 5-30 min 13:00-16:00 (Overlap) → 5-15 min 🔥 16:00-21:00 (NY) → 5-30 min 21:00-00:00 (After) → 15-30 min 💡 HAUPTFUNKTIONEN: • Status: check_adaptive_bot_status() • Analyze: extended_top_down_v2_adaptive() • Trade: execute_trade_v2_adaptive() • Manage: show_adaptive_management_options() 🏆 V1.6 ADAPTIVE COMPLETE - ALLE FUNKTIONEN INTEGRIERT! 🛡️ Sicherheit + 🚀 Aggressivität + ⚡ Intelligenz Production-Ready & Fully Tested! ✅ ====================================================================== 🎊 Ready for intelligent, safe, and adaptive trading! ======================================================================
In [49]:
# Check Drawdown Protection Status
print("🔍 Drawdown Protection Debug:")
print(f" trading_paused: {drawdown_protection.trading_paused}")
print(f" pause_until: {drawdown_protection.pause_until}")
print(f" pause_reason: {drawdown_protection.pause_reason}")
# Force clear everything
drawdown_protection.trading_paused = False
drawdown_protection.pause_until = None
drawdown_protection.pause_reason = None
# Test
can_trade, reason = drawdown_protection.can_trade()
print(f"\n✅ After force clear:")
print(f" Can trade: {can_trade}")
print(f" Reason: {reason}")
# Check consecutive losses in DB
consecutive = drawdown_protection._get_consecutive_losses()
print(f"\n📊 Consecutive losses from DB: {consecutive}")🔍 Drawdown Protection Debug: trading_paused: False pause_until: None pause_reason: None ✅ After force clear: Can trade: True Reason: OK 📊 Consecutive losses from DB: 0
In [50]:
# # ==========================================
# # RESET CONSECUTIVE LOSSES (V2.2)
# # ==========================================
# from datetime import datetime
# print("🔧 Resetting consecutive losses counter...")
# # Try to find the database instance
# db_instance = None
# if 'db' in globals():
# db_instance = db
# elif 'infra' in globals() and hasattr(infra, 'db'):
# db_instance = infra.db
# print(" Found DB via infra.db")
# elif 'drawdown_protection' in globals() and hasattr(drawdown_protection, 'db'):
# db_instance = drawdown_protection.db
# print(" Found DB via drawdown_protection.db")
# if db_instance:
# try:
# # Insert dummy winning trade directly via SQL
# db_instance.cursor.execute("""
# INSERT INTO trades (
# ticket, symbol, strategy_name, type, volume,
# entry_price, sl_price, tp_price, entry_time,
# session, regime, quality, confidence,
# status, exit_time, profit, net_profit, exit_reason
# ) VALUES (
# 999999999, 'XAUUSD', 'TradingBot_V2.2_Reset', 'BUY', 0.01,
# 2650.00, 2640.00, 2660.00, ?,
# 'manual', 'reset', 'manual_reset', 100.0,
# 'closed', ?, 1.00, 1.00, 'consecutive_loss_reset'
# )
# """, (datetime.now().isoformat(), datetime.now().isoformat()))
# db_instance.conn.commit()
# print("✅ Dummy winning trade inserted!")
# # Check consecutive losses
# consecutive = drawdown_protection._get_consecutive_losses()
# print(f"📊 Consecutive losses after reset: {consecutive}")
# # Clear pause
# drawdown_protection.trading_paused = False
# drawdown_protection.pause_until = None
# drawdown_protection.pause_reason = None
# # Test
# can_trade, reason = drawdown_protection.can_trade()
# print(f"\n✅ FINAL STATUS:")
# print(f" Can trade: {can_trade}")
# print(f" Reason: {reason if not can_trade else 'All systems GO! 🚀'}")
# if can_trade:
# print("\n🎉 SUCCESS! Trading is now ACTIVE!")
# print(" 🛑 Ranging Filter protects you")
# print(" 💾 Exit logging works")
# print(" 📊 Drawdown Protection active")
# else:
# print(f"\n⚠️ Still blocked: {reason}")
# print(" Trying nuclear option...")
# # Override the limit temporarily
# drawdown_protection.max_consecutive_losses = 100
# print(" ✅ Consecutive loss limit raised to 100")
# except Exception as e:
# print(f"❌ Error: {e}")
# import traceback
# traceback.print_exc()
# else:
# print("❌ Could not find database instance!")
# print(" Available globals:", [k for k in globals().keys() if 'db' in k.lower() or 'infra' in k.lower()])In [51]:
# Prüfe ob Filter aktiv ist
print(SESSION_WHITELIST_CONFIG)
# Teste manuell verschiedene Sessions
for session in ['asian', 'london', 'overlap', 'ny']:
allowed, reason = is_session_allowed(session)
emoji = "✅" if allowed else "❌"
print(f"{emoji} {session}: {reason}"){'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}
✅ asian: Asian allowed: 97.8% WR, $151/trade (EXCELLENT!)
❌ london: London blocked: 12.5% win-rate, -$10/trade
❌ overlap: Overlap blocked: 14.3% win-rate, -$7/trade
✅ ny: NY allowed: 43.3% WR, $48/trade (needs >=97% conf)
In [52]:
# Verschiedene Timeframes checken
print("📊 ADX auf verschiedenen Timeframes:\n")
for tf_name, tf in [('M15', mt.TIMEFRAME_M15), ('H1', mt.TIMEFRAME_H1), ('H4', mt.TIMEFRAME_H4), ('D1', mt.TIMEFRAME_D1)]:
rates = mt.copy_rates_from_pos("XAUUSD", tf, 0, 100)
df = pd.DataFrame(rates)
adx_data = ta.adx(df['high'], df['low'], df['close'], length=14)
current_adx = adx_data['ADX_14'].iloc[-1]
# Preis letzte 10 Bars
price_change = ((df['close'].iloc[-1] - df['close'].iloc[-10]) / df['close'].iloc[-10]) * 100
print(f"{tf_name:4s}: ADX = {current_adx:5.2f} | Preis-Change (10 bars): {price_change:+.2f}%")
# Aktueller Preis
print(f"\n💰 Aktueller Preis: {mt.symbol_info_tick('XAUUSD').bid:.2f}")📊 ADX auf verschiedenen Timeframes: M15 : ADX = 29.97 | Preis-Change (10 bars): -0.98% H1 : ADX = 37.29 | Preis-Change (10 bars): -1.37% H4 : ADX = 36.53 | Preis-Change (10 bars): +1.01% D1 : ADX = 34.69 | Preis-Change (10 bars): +6.11% 💰 Aktueller Preis: 4785.21
In [53]:
# Check 1: Base Risk
print(f"Base Risk: {adv_position_mgr.adaptive_sizing.base_risk}")
# Expected: 0.02
# Check 2: Test Volume Calculation
test_vol = adv_position_mgr.adaptive_sizing.calculate_position_size(
confidence=85, balance=10000, stop_loss_distance=50, symbol="XAUUSD"
)
print(f"Test Volume: {test_vol}")
# Expected: >= 0.10 und <= 0.202026-01-22 01:40:06,636 - INFO - 📊 Adaptive Position Sizing: 2026-01-22 01:40:06,638 - INFO - Confidence: 85.0% (HIGH) 2026-01-22 01:40:06,640 - INFO - Base Risk: 2.0% 2026-01-22 01:40:06,641 - INFO - Multiplier: 1.5x 2026-01-22 01:40:06,642 - INFO - Adjusted Risk: 3.0% 2026-01-22 01:40:06,645 - INFO - 💰 Position Size: 0.20 lots 2026-01-22 01:40:06,647 - INFO - Risk Amount: $300.00 2026-01-22 01:40:06,650 - INFO - SL Distance: 50.00 pips
Base Risk: 0.02 Test Volume: 0.2
In [54]:
# ==========================================
# ADVANCED OPTIMIZATION SETUP (V1.8)
# ==========================================
from dynamic_threshold_optimizer import DynamicThresholdOptimizer, auto_optimize_thresholds
from enhanced_signal_scoring import EnhancedSignalScorer
from enhanced_trailing_stop import EnhancedTrailingStopManager, create_enhanced_position_monitor
print("🚀 INITIALIZING ADVANCED OPTIMIZATIONS...")
print("=" * 70)
print()
# 1. Dynamic Threshold Optimizer
threshold_optimizer = DynamicThresholdOptimizer(
db_path="trading_bot.db",
lookback_trades=20, # Letzte 20 Trades analysieren
target_win_rate=0.60, # 60% Ziel Win Rate
min_threshold=60, # Minimum 60% Confidence
max_threshold=95, # Maximum 95% Confidence
adjustment_step=5 # 5% Schritte
)
print("✅ Dynamic Threshold Optimizer initialized")
# 2. Enhanced Signal Scorer
signal_scorer = EnhancedSignalScorer(
weights={
'trend': 0.30, # Existing Trend System
'volume': 0.20, # Volume Analysis
'momentum': 0.20, # RSI + MACD
'support_resistance': 0.15, # S/R Levels
'fibonacci': 0.15 # Fibonacci Levels
}
)
print("✅ Enhanced Signal Scorer initialized")
# 3. Enhanced Trailing Stop
enhanced_trailing = EnhancedTrailingStopManager(
# Early Breakeven (GOLD-OPTIMIERT!)
breakeven_trigger_pct=0.30, # Bei 30% zu TP (früher!)
breakeven_buffer_pips=300, # +$3 über BE (300 × 0.01 für Gold)
# Multi-tier Profit Locking
tier1_trigger=0.50, # Bei 50% → Lock 25%
tier1_lock_pct=0.25,
tier2_trigger=0.75, # Bei 75% → Lock 50%
tier2_lock_pct=0.50,
tier3_trigger=0.90, # Bei 90% → Lock 75%
tier3_lock_pct=0.75,
# ATR-based Trailing (GOLD-OPTIMIERT!)
use_atr_trailing=True,
atr_multiplier=1.5, # 1.5 × ATR für mehr Spielraum
# Time-based Breakeven
time_based_breakeven=True,
hours_to_breakeven=4.0, # Auto-BE nach 4h
# Minimum Distance (GOLD-OPTIMIERT!)
min_distance_points=500, # Min $5 Abstand (500 × 0.01)
# Session-aware Multipliers
session_trailing_multipliers={
'asian': 1.0, # Standard
'ny': 1.5, # Größer (mehr Volatilität)
'london': 1.2,
'overlap': 1.3
}
)
print("✅ Enhanced Trailing Stop Manager initialized")
print()
# 4. Run initial threshold optimization
print("🔄 Running initial threshold optimization...")
try:
results = auto_optimize_thresholds(threshold_optimizer, apply_changes=True)
except Exception as e:
print(f"⚠️ Optimization skipped (not enough data): {e}")
print(" Will use default thresholds until 20+ trades collected")
print()
print("=" * 70)
print("🎯 ALL ADVANCED OPTIMIZATIONS ACTIVE!")
print("=" * 70)
print()
print("📊 Summary:")
print(" • Dynamic Thresholds: ✅ (auto-adjusts daily)")
print(" • Enhanced Scoring: ✅ (5-factor analysis)")
print(" • Enhanced Trailing: ✅ (multi-tier protection)")
print()
print("💡 Tip: Use 'threshold_optimizer.generate_report()' for details")2026-01-22 01:40:06,762 - INFO - ✅ Enhanced Trailing Stop Manager initialized
🚀 INITIALIZING ADVANCED OPTIMIZATIONS... ====================================================================== ✅ Dynamic Threshold Optimizer initialized Lookback: 20 trades Target Win Rate: 60.0% Range: 60% - 95% ✅ Dynamic Threshold Optimizer initialized ✅ Enhanced Signal Scorer initialized
2026-01-22 01:40:06,764 - INFO - Breakeven: 30% + 5 pips 2026-01-22 01:40:06,765 - INFO - Multi-tier: 50%/75%/90% 2026-01-22 01:40:06,766 - INFO - ATR Trailing: ✅ 2026-01-22 01:40:06,768 - INFO - Time-based BE: ✅ (4.0h)
✅ Enhanced Trailing Stop Manager initialized 🔄 Running initial threshold optimization... ====================================================================== 🔄 AUTO-OPTIMIZATION STARTED - 2026-01-22 01:40:06 ====================================================================== ASIAN : 70% → 60% 🔽 | WR: 100.0% (20 trades) NY : 70% → 60% 🔽 | WR: 100.0% (20 trades) LONDON : 70% → 80% 🔼 | WR: 46.2% (13 trades) OVERLAP : 70% → 70% ➡️ | WR: 25.0% (8 trades) ✅ Thresholds saved to: dynamic_thresholds.json ✅ Changes applied and saved! ====================================================================== ====================================================================== 🎯 ALL ADVANCED OPTIMIZATIONS ACTIVE! ====================================================================== 📊 Summary: • Dynamic Thresholds: ✅ (auto-adjusts daily) • Enhanced Scoring: ✅ (5-factor analysis) • Enhanced Trailing: ✅ (multi-tier protection) 💡 Tip: Use 'threshold_optimizer.generate_report()' for details
In [55]:
# ==========================================
# UPDATE SCHEDULER WITH OPTIMIZATIONS
# ==========================================
print("🔄 Updating scheduler with advanced optimizations...")
print()
# 1. Add Daily Threshold Optimization (midnight UTC)
try:
scheduler.remove_job('threshold_optimization')
except:
pass
scheduler.add_job(
func=lambda: auto_optimize_thresholds(threshold_optimizer, apply_changes=True),
trigger='cron',
hour=0, # Midnight UTC
id='threshold_optimization'
)
print("✅ Threshold optimization scheduled (daily at 00:00 UTC)")
# 2. Replace old trailing stop with enhanced version
try:
scheduler.remove_job('advanced_position_management')
print(" Removed old trailing stop")
except:
pass
# Create enhanced monitor
enhanced_monitor = create_enhanced_position_monitor(
enhanced_trailing,
rhythm_manager,
symbol="XAUUSD"
)
scheduler.add_job(
func=enhanced_monitor,
trigger='interval',
minutes=1,
id='enhanced_trailing_stop'
)
print("✅ Enhanced trailing stop scheduled (every 1 min)")
print()
# Print all active jobs
print("📋 Active Scheduler Jobs:")
for job in scheduler.get_jobs():
print(f" • {job.id}: {job.trigger}")
print()
print("✅ Scheduler updated successfully!")2026-01-22 01:40:07,461 - INFO - Added job "<lambda>" to job store "default" 2026-01-22 01:40:07,461 - INFO - Removed job advanced_position_management 2026-01-22 01:40:07,461 - INFO - Added job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor" to job store "default"
🔄 Updating scheduler with advanced optimizations... ✅ Threshold optimization scheduled (daily at 00:00 UTC) Removed old trailing stop ✅ Enhanced trailing stop scheduled (every 1 min) 📋 Active Scheduler Jobs: • adaptive_trading_check: cron[minute='*'] • position_monitor: interval[0:01:00] • enhanced_trailing_stop: interval[0:01:00] • status_report: cron[minute='0,30'] • daily_report: cron[hour='22', minute='0'] • threshold_optimization: cron[hour='0'] • weekly_report: cron[day_of_week='sun', hour='23', minute='0'] ✅ Scheduler updated successfully!
In [56]:
# ==========================================
# TEST: Threshold Optimization Report
# ==========================================
print(threshold_optimizer.generate_report())====================================================================== 🎯 DYNAMIC THRESHOLD OPTIMIZATION REPORT ====================================================================== Generated: 2026-01-22 01:40:07 Lookback: 20 trades Target Win Rate: 60.0% ====================================================================== 📊 ASIAN SESSION ====================================================================== Recent Trades: 20 Win Rate: 100.0% (20W / 0L) Avg Confidence: 89.0% Total Profit: $229.41 Performance: EXCELLENT Current Threshold: 60% Recommended: Keep at 60% ✅ ====================================================================== 📊 NY SESSION ====================================================================== Recent Trades: 20 Win Rate: 100.0% (20W / 0L) Avg Confidence: 91.0% Total Profit: $274.40 Performance: EXCELLENT Current Threshold: 60% Recommended: Keep at 60% ✅ ====================================================================== 📊 LONDON SESSION ====================================================================== Recent Trades: 13 Win Rate: 46.2% (6W / 7L) Avg Confidence: 99.8% Total Profit: $-19.39 Performance: POOR Current Threshold: 80% Recommended: 90% (🔼 +10%) Reason: Poor WR 46.2% → Raise threshold significantly ====================================================================== 📊 OVERLAP SESSION ====================================================================== Recent Trades: 8 Win Rate: 25.0% (2W / 6L) Avg Confidence: 99.8% Total Profit: $-32.58 Performance: CRITICAL Current Threshold: 70% Recommended: Keep at 70% ✅ ====================================================================== ✅ Optimization Complete ======================================================================
In [57]:
# ==========================================
# TEST: Enhanced Signal Scoring
# ==========================================
symbol = "XAUUSD"
# Get base signal
signal_info = extended_top_down_v2_adaptive(symbol)
if signal_info:
price = signal_info['trend_info']['M5']['price']
# Calculate enhanced score
enhanced = signal_scorer.calculate_enhanced_score(
symbol=symbol,
base_confidence=signal_info['confidence'],
trend_direction=signal_info['entry_signal'],
current_price=price
)
print("🎯 ENHANCED SIGNAL TEST")
print("=" * 50)
print(f"Base Confidence: {signal_info['confidence']:.1f}%")
print(f"Enhanced Score: {enhanced.total_score:.1f}%")
print(f"Signal Quality: {enhanced.signal_quality.upper()}")
print(f"Direction: {'LONG' if enhanced.direction == 1 else 'SHORT' if enhanced.direction == -1 else 'NONE'}")
print()
print("📊 Component Breakdown:")
print(f" Trend: {enhanced.trend_score:.1f}/100")
print(f" Volume: {enhanced.volume_score:.1f}/100")
print(f" Momentum: {enhanced.momentum_score:.1f}/100")
print(f" S/R: {enhanced.support_resistance_score:.1f}/100")
print(f" Fibonacci: {enhanced.fibonacci_score:.1f}/100")
print()
print(f"💡 Reason: {enhanced.reason}")
else:
print("❌ No signal available for testing")🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.73 | 84.7866 | 9.76399 | 4785.12 | | H4 | uptrend | 403.71 | 45.1131 | 2.73188 | 4785.12 | | H1 | uptrend | 337.79 | 32.9001 | 1.66701 | 4785.13 | | M30 | uptrend | 483.75 | 25.1227 | 1.82298 | 4785.13 | | M15 | uptrend | 313.49 | 17.7354 | 0.833975 | 4785.13 | | M5 | downtrend | 448.55 | 8.2275 | -0.553562 | 4785.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.12) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143753.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' 🎯 ENHANCED SIGNAL TEST ================================================== Base Confidence: 93.7% Enhanced Score: 69.1% Signal Quality: GOOD Direction: LONG 📊 Component Breakdown: Trend: 93.7/100 Volume: 60.0/100 Momentum: 70.0/100 S/R: 50.0/100 Fibonacci: 50.0/100 💡 Reason: Strong trend (94%)
In [58]:
# ==========================================
# TEST: Enhanced Trailing Stop Status
# ==========================================
positions = mt.positions_get(symbol="XAUUSD")
if positions:
print("📈 ENHANCED TRAILING STOP STATUS")
print("=" * 50)
for pos in positions:
tier = enhanced_trailing.position_tiers.get(pos.ticket, 0)
# Calculate profit
if pos.type == 0: # BUY
profit_pips = (mt.symbol_info_tick(pos.symbol).bid - pos.price_open) / mt.symbol_info(pos.symbol).point
else: # SELL
profit_pips = (pos.price_open - mt.symbol_info_tick(pos.symbol).ask) / mt.symbol_info(pos.symbol).point
# Calculate progress to TP
if pos.type == 0:
tp_distance = pos.tp - pos.price_open
current_distance = mt.symbol_info_tick(pos.symbol).bid - pos.price_open
else:
tp_distance = pos.price_open - pos.tp
current_distance = pos.price_open - mt.symbol_info_tick(pos.symbol).ask
progress = (current_distance / tp_distance * 100) if tp_distance > 0 else 0
print(f"\nPosition #{pos.ticket}:")
print(f" Type: {'LONG' if pos.type == 0 else 'SHORT'}")
print(f" Entry: {pos.price_open:.2f}")
print(f" Current SL: {pos.sl:.2f}")
print(f" TP: {pos.tp:.2f}")
print(f" Profit: {pos.profit:.2f} USD ({profit_pips:.1f} pips)")
print(f" Progress: {progress:.1f}%")
print(f" Tier: {tier}/3")
# Next tier info
if tier == 0:
print(f" Next: Breakeven @ 30%")
elif tier == 0 and progress >= 30:
print(f" Next: Tier 1 @ 50%")
elif tier == 1:
print(f" Next: Tier 2 @ 75%")
elif tier == 2:
print(f" Next: Tier 3 @ 90%")
else:
print(f" Status: Max protection active!")
else:
print("📭 No open positions")📈 ENHANCED TRAILING STOP STATUS ================================================== Position #692708945: Type: LONG Entry: 4784.78 Current SL: 4773.46 TP: 4812.32 Profit: 5.20 USD (52.0 pips) Progress: 1.9% Tier: 0/3 Next: Breakeven @ 30%
In [59]:
# ==========================================
# ENHANCED TRADING CHECK WITH SIGNAL SCORING
# ==========================================
def enhanced_trading_check_wrapper(symbol="XAUUSD", debug=False):
"""
Enhanced wrapper around execute_trade_v2_adaptive
Adds multi-factor signal scoring before execution
"""
try:
# SCHRITT 1: Position Check (wie vorher)
max_positions = TRADING_CONFIG['risk']['max_positions']
has_position, position_info = check_existing_positions(symbol)
if position_info['count'] >= max_positions:
if debug:
print(f"🛑 TRADE BLOCKIERT: {position_info['count']}/{max_positions} Positionen aktiv")
for pos in position_info['details']:
profit_emoji = "🟢" if pos['profit'] >= 0 else "🔴"
print(f" {pos['type']} @ {pos['price_open']} | {profit_emoji} {pos['profit']:.2f}")
return None
print(f"✅ Position-Check OK: {position_info['count']}/{max_positions}")
# SCHRITT 2: Signal Analysis (wie vorher)
signal_info = extended_top_down_v2_adaptive(symbol)
if signal_info is None:
print("❌ Signal-Analyse fehlgeschlagen")
return None
entry_signal = signal_info["entry_signal"]
base_confidence = signal_info["confidence"]
adaptive_threshold = signal_info["adaptive_threshold"]
print(f"\n📊 Base Signal Analysis:")
print(f" Direction: {entry_signal}")
print(f" Base Confidence: {base_confidence:.1f}%")
print(f" Adaptive Threshold: {adaptive_threshold:.1f}%")
# ⭐ SCHRITT 3: ENHANCED SIGNAL SCORING (NEU!)
print(f"\n🎯 Calculating Enhanced Signal Score...")
try:
enhanced = signal_scorer.calculate_enhanced_score(
symbol=symbol,
base_confidence=base_confidence,
trend_direction=entry_signal,
current_price=signal_info['trend_info']['M5']['price']
)
# Verwende enhanced score statt base confidence
final_confidence = enhanced.total_score
print(f"\n✅ Enhanced Signal Scoring:")
print(f" Trend Score: {enhanced.trend_score:.1f}/100")
print(f" Volume Score: {enhanced.volume_score:.1f}/100")
print(f" Momentum Score: {enhanced.momentum_score:.1f}/100")
print(f" S/R Score: {enhanced.support_resistance_score:.1f}/100")
print(f" Fibonacci Score: {enhanced.fibonacci_score:.1f}/100")
print(f" ─────────────────────────────────────")
print(f" 📊 Base Confidence: {base_confidence:.1f}%")
print(f" 🎯 Enhanced Score: {final_confidence:.1f}%")
print(f" 📈 Signal Quality: {enhanced.signal_quality}")
# Show reasoning
if enhanced.reason:
print(f"\n💡 Analysis: {enhanced.reason}")
except Exception as e:
print(f"⚠️ Enhanced scoring failed: {e}")
print(" Falling back to base confidence")
final_confidence = base_confidence
# SCHRITT 4: Threshold Check
if entry_signal in ["LONG", "SHORT"]:
if final_confidence >= adaptive_threshold:
print(f"\n🎯 Signal qualified! {final_confidence:.1f}% >= {adaptive_threshold:.1f}%")
# Execute trade with ENHANCED confidence
result = execute_trade_v2_adaptive(
symbol=symbol,
entry_signal=entry_signal,
confidence=final_confidence, # ← Use enhanced score!
signal_info=signal_info
)
return result
else:
print(f"\n❌ Signal below threshold: {final_confidence:.1f}% < {adaptive_threshold:.1f}%")
print(f" Base would have been: {base_confidence:.1f}%")
if final_confidence < base_confidence:
print(f" ⚠️ Enhanced scoring filtered out weak setup!")
return None
else:
print(f"\n⏸️ No clear signal: {entry_signal}")
return None
except Exception as e:
print(f"❌ Enhanced trading check error: {e}")
import traceback
traceback.print_exc()
return None
print("✅ Enhanced trading check wrapper created!")
print(" This will use multi-factor analysis for all trades")
✅ Enhanced trading check wrapper created! This will use multi-factor analysis for all trades
In [60]:
# ==========================================
# UPDATE SCHEDULER WITH ENHANCED VERSION
# ==========================================
print("🔄 Updating scheduler with enhanced trading check...")
# Remove old job
try:
scheduler.remove_job('adaptive_trading_check')
print(" Removed old adaptive_trading_check job")
except:
pass
# Add enhanced version
scheduler.add_job(
func=lambda: enhanced_trading_check_wrapper("XAUUSD", debug=True),
trigger='interval',
minutes=1,
id='adaptive_trading_check',
name='Enhanced Adaptive Trading Check',
replace_existing=True,
max_instances=1
)
print("\n✅ Enhanced Trading Check activated!")
print(" Scheduler updated with multi-factor signal scoring")
# Show active jobs
print("\n📋 Active Scheduler Jobs:")
for job in scheduler.get_jobs():
print(f" • {job.id}: {job.trigger}")
print("\n" + "=" * 70)
print("🎯 ENHANCED SIGNAL SCORING NOW ACTIVE!")
print("=" * 70)
print("\nBot will now use 5-factor analysis for all trading signals:")
print(" ✅ Trend Alignment (30%)")
print(" ✅ Volume Analysis (20%)")
print(" ✅ Momentum (RSI/MACD) (20%)")
print(" ✅ Support/Resistance (15%)")
print(" ✅ Fibonacci Levels (15%)")
print("\n💡 Expected improvement: +5-10% Win Rate")
print("=" * 70)
2026-01-22 01:40:08,477 - INFO - Removed job adaptive_trading_check 2026-01-22 01:40:08,479 - INFO - Added job "Enhanced Adaptive Trading Check" to job store "default"
🔄 Updating scheduler with enhanced trading check... Removed old adaptive_trading_check job ✅ Enhanced Trading Check activated! Scheduler updated with multi-factor signal scoring 📋 Active Scheduler Jobs: • position_monitor: interval[0:01:00] • enhanced_trailing_stop: interval[0:01:00] • adaptive_trading_check: interval[0:01:00] • status_report: cron[minute='0,30'] • daily_report: cron[hour='22', minute='0'] • threshold_optimization: cron[hour='0'] • weekly_report: cron[day_of_week='sun', hour='23', minute='0'] ====================================================================== 🎯 ENHANCED SIGNAL SCORING NOW ACTIVE! ====================================================================== Bot will now use 5-factor analysis for all trading signals: ✅ Trend Alignment (30%) ✅ Volume Analysis (20%) ✅ Momentum (RSI/MACD) (20%) ✅ Support/Resistance (15%) ✅ Fibonacci Levels (15%) 💡 Expected improvement: +5-10% Win Rate ======================================================================
In [61]:
# ==========================================
# TEST ENHANCED SIGNAL SCORING
# ==========================================
print("🧪 Testing Enhanced Signal Scoring...")
print("=" * 70)
# Get current signal
signal_info = extended_top_down_v2_adaptive("XAUUSD")
if signal_info:
base_confidence = signal_info["confidence"]
entry_signal = signal_info["entry_signal"]
print(f"\n📊 Base Signal:")
print(f" Direction: {entry_signal}")
print(f" Confidence: {base_confidence:.1f}%")
# Calculate enhanced score
enhanced = signal_scorer.calculate_enhanced_score(
symbol="XAUUSD",
base_confidence=base_confidence,
trend_direction=entry_signal,
current_price=signal_info['trend_info']['M5']['price']
)
print(f"\n🎯 Enhanced Analysis:")
print(f" Trend: {enhanced.trend_score:.1f}/100 (30%)")
print(f" Volume: {enhanced.volume_score:.1f}/100 (20%)")
print(f" Momentum: {enhanced.momentum_score:.1f}/100 (20%)")
print(f" S/R: {enhanced.support_resistance_score:.1f}/100 (15%)")
print(f" Fibonacci: {enhanced.fibonacci_score:.1f}/100 (15%)")
print(f" ─────────────────────────────────────")
print(f" Total Score: {enhanced.total_score:.1f}%")
print(f" Quality: {enhanced.signal_quality}")
# Compare
diff = enhanced.total_score - base_confidence
if diff > 0:
print(f"\n✅ Enhanced score HIGHER by {diff:.1f}%")
print(f" Setup has strong confirmation factors")
elif diff < 0:
print(f"\n⚠️ Enhanced score LOWER by {abs(diff):.1f}%")
print(f" Setup has weak confirmation factors")
else:
print(f"\n⚪ Enhanced score same as base")
# Show reasoning
if enhanced.reason:
print(f"\n💡 {enhanced.reason}")
else:
print("❌ No signal data available")
print("\n" + "=" * 70)
print("✅ Test complete!")
🧪 Testing Enhanced Signal Scoring... ====================================================================== 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.73 | 84.7866 | 9.76404 | 4785.34 | | H4 | uptrend | 403.72 | 45.1131 | 2.73193 | 4785.34 | | H1 | uptrend | 337.8 | 32.9001 | 1.66707 | 4785.34 | | M30 | uptrend | 483.77 | 25.1227 | 1.82303 | 4785.34 | | M15 | uptrend | 313.51 | 17.7354 | 0.834024 | 4785.34 | | M5 | downtrend | 448.51 | 8.2275 | -0.553512 | 4785.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143757.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal: Direction: 1 Confidence: 93.7% ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' 🎯 Enhanced Analysis: Trend: 93.7/100 (30%) Volume: 60.0/100 (20%) Momentum: 70.0/100 (20%) S/R: 50.0/100 (15%) Fibonacci: 50.0/100 (15%) ───────────────────────────────────── Total Score: 69.1% Quality: good ⚠️ Enhanced score LOWER by 24.6% Setup has weak confirmation factors 💡 Strong trend (94%) ====================================================================== ✅ Test complete!
In [62]:
# ==========================================
# ENHANCED TRADING CHECK WITH SIGNAL SCORING
# ==========================================
def enhanced_trading_check_wrapper(symbol="XAUUSD", debug=False):
"""
Enhanced wrapper around execute_trade_v2_adaptive
Adds multi-factor signal scoring before execution
"""
try:
# SCHRITT 1: Position Check (wie vorher)
max_positions = TRADING_CONFIG['risk']['max_positions']
has_position, position_info = check_existing_positions(symbol)
if position_info['count'] >= max_positions:
if debug:
print(f"🛑 TRADE BLOCKIERT: {position_info['count']}/{max_positions} Positionen aktiv")
for pos in position_info['details']:
profit_emoji = "🟢" if pos['profit'] >= 0 else "🔴"
print(f" {pos['type']} @ {pos['price_open']} | {profit_emoji} {pos['profit']:.2f}")
return None
print(f"✅ Position-Check OK: {position_info['count']}/{max_positions}")
# SCHRITT 2: Signal Analysis (wie vorher)
signal_info = extended_top_down_v2_adaptive(symbol)
if signal_info is None:
print("❌ Signal-Analyse fehlgeschlagen")
return None
entry_signal = signal_info["entry_signal"]
base_confidence = signal_info["confidence"]
adaptive_threshold = signal_info["adaptive_threshold"]
print(f"\n📊 Base Signal Analysis:")
print(f" Direction: {entry_signal}")
print(f" Base Confidence: {base_confidence:.1f}%")
print(f" Adaptive Threshold: {adaptive_threshold:.1f}%")
# ⭐ SCHRITT 3: ENHANCED SIGNAL SCORING (NEU!)
print(f"\n🎯 Calculating Enhanced Signal Score...")
try:
enhanced = signal_scorer.calculate_enhanced_score(
symbol=symbol,
base_confidence=base_confidence,
trend_direction=entry_signal,
current_price=signal_info['trend_info']['M5']['price']
)
# Verwende enhanced score statt base confidence
final_confidence = enhanced.total_score
print(f"\n✅ Enhanced Signal Scoring:")
print(f" Trend Score: {enhanced.trend_score:.1f}/100")
print(f" Volume Score: {enhanced.volume_score:.1f}/100")
print(f" Momentum Score: {enhanced.momentum_score:.1f}/100")
print(f" S/R Score: {enhanced.support_resistance_score:.1f}/100")
print(f" Fibonacci Score: {enhanced.fibonacci_score:.1f}/100")
print(f" ─────────────────────────────────────")
print(f" 📊 Base Confidence: {base_confidence:.1f}%")
print(f" 🎯 Enhanced Score: {final_confidence:.1f}%")
print(f" 📈 Signal Quality: {enhanced.signal_quality}")
# Show reasoning
if enhanced.reason:
print(f"\n💡 Analysis: {enhanced.reason}")
except Exception as e:
print(f"⚠️ Enhanced scoring failed: {e}")
print(" Falling back to base confidence")
final_confidence = base_confidence
# SCHRITT 4: Threshold Check
if entry_signal in ["LONG", "SHORT"]:
if final_confidence >= adaptive_threshold:
print(f"\n🎯 Signal qualified! {final_confidence:.1f}% >= {adaptive_threshold:.1f}%")
# Execute trade with ENHANCED confidence
result = execute_trade_v2_adaptive(
symbol=symbol,
entry_signal=entry_signal,
confidence=final_confidence, # ← Use enhanced score!
signal_info=signal_info
)
return result
else:
print(f"\n❌ Signal below threshold: {final_confidence:.1f}% < {adaptive_threshold:.1f}%")
print(f" Base would have been: {base_confidence:.1f}%")
if final_confidence < base_confidence:
print(f" ⚠️ Enhanced scoring filtered out weak setup!")
return None
else:
print(f"\n⏸️ No clear signal: {entry_signal}")
return None
except Exception as e:
print(f"❌ Enhanced trading check error: {e}")
import traceback
traceback.print_exc()
return None
print("✅ Enhanced trading check wrapper created!")
print(" This will use multi-factor analysis for all trades")
✅ Enhanced trading check wrapper created! This will use multi-factor analysis for all trades
In [63]:
# ==========================================
# UPDATE SCHEDULER WITH ENHANCED VERSION
# ==========================================
print("🔄 Updating scheduler with enhanced trading check...")
# Remove old job
try:
scheduler.remove_job('adaptive_trading_check')
print(" Removed old adaptive_trading_check job")
except:
pass
# Add enhanced version
scheduler.add_job(
func=lambda: enhanced_trading_check_wrapper("XAUUSD", debug=True),
trigger='interval',
minutes=1,
id='adaptive_trading_check',
name='Enhanced Adaptive Trading Check',
replace_existing=True,
max_instances=1
)
print("\n✅ Enhanced Trading Check activated!")
print(" Scheduler updated with multi-factor signal scoring")
# Show active jobs
print("\n📋 Active Scheduler Jobs:")
for job in scheduler.get_jobs():
print(f" • {job.id}: {job.trigger}")
print("\n" + "=" * 70)
print("🎯 ENHANCED SIGNAL SCORING NOW ACTIVE!")
print("=" * 70)
print("\nBot will now use 5-factor analysis for all trading signals:")
print(" ✅ Trend Alignment (30%)")
print(" ✅ Volume Analysis (20%)")
print(" ✅ Momentum (RSI/MACD) (20%)")
print(" ✅ Support/Resistance (15%)")
print(" ✅ Fibonacci Levels (15%)")
print("\n💡 Expected improvement: +5-10% Win Rate")
print("=" * 70)
2026-01-22 01:40:08,847 - INFO - Removed job adaptive_trading_check 2026-01-22 01:40:08,847 - INFO - Added job "Enhanced Adaptive Trading Check" to job store "default"
🔄 Updating scheduler with enhanced trading check... Removed old adaptive_trading_check job ✅ Enhanced Trading Check activated! Scheduler updated with multi-factor signal scoring 📋 Active Scheduler Jobs: • position_monitor: interval[0:01:00] • enhanced_trailing_stop: interval[0:01:00] • adaptive_trading_check: interval[0:01:00] • status_report: cron[minute='0,30'] • daily_report: cron[hour='22', minute='0'] • threshold_optimization: cron[hour='0'] • weekly_report: cron[day_of_week='sun', hour='23', minute='0'] ====================================================================== 🎯 ENHANCED SIGNAL SCORING NOW ACTIVE! ====================================================================== Bot will now use 5-factor analysis for all trading signals: ✅ Trend Alignment (30%) ✅ Volume Analysis (20%) ✅ Momentum (RSI/MACD) (20%) ✅ Support/Resistance (15%) ✅ Fibonacci Levels (15%) 💡 Expected improvement: +5-10% Win Rate ======================================================================
In [64]:
# ==========================================
# TEST ENHANCED SIGNAL SCORING
# ==========================================
print("🧪 Testing Enhanced Signal Scoring...")
print("=" * 70)
# Get current signal
signal_info = extended_top_down_v2_adaptive("XAUUSD")
if signal_info:
base_confidence = signal_info["confidence"]
entry_signal = signal_info["entry_signal"]
print(f"\n📊 Base Signal:")
print(f" Direction: {entry_signal}")
print(f" Confidence: {base_confidence:.1f}%")
# Calculate enhanced score
enhanced = signal_scorer.calculate_enhanced_score(
symbol="XAUUSD",
base_confidence=base_confidence,
trend_direction=entry_signal,
current_price=signal_info['trend_info']['M5']['price']
)
print(f"\n🎯 Enhanced Analysis:")
print(f" Trend: {enhanced.trend_score:.1f}/100 (30%)")
print(f" Volume: {enhanced.volume_score:.1f}/100 (20%)")
print(f" Momentum: {enhanced.momentum_score:.1f}/100 (20%)")
print(f" S/R: {enhanced.support_resistance_score:.1f}/100 (15%)")
print(f" Fibonacci: {enhanced.fibonacci_score:.1f}/100 (15%)")
print(f" ─────────────────────────────────────")
print(f" Total Score: {enhanced.total_score:.1f}%")
print(f" Quality: {enhanced.signal_quality}")
# Compare
diff = enhanced.total_score - base_confidence
if diff > 0:
print(f"\n✅ Enhanced score HIGHER by {diff:.1f}%")
print(f" Setup has strong confirmation factors")
elif diff < 0:
print(f"\n⚠️ Enhanced score LOWER by {abs(diff):.1f}%")
print(f" Setup has weak confirmation factors")
else:
print(f"\n⚪ Enhanced score same as base")
# Show reasoning
if enhanced.reason:
print(f"\n💡 {enhanced.reason}")
else:
print("❌ No signal data available")
print("\n" + "=" * 70)
print("✅ Test complete!")
🧪 Testing Enhanced Signal Scoring... ====================================================================== 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.73 | 84.7866 | 9.76404 | 4785.35 | | H4 | uptrend | 403.72 | 45.1131 | 2.73193 | 4785.35 | | H1 | uptrend | 337.8 | 32.9001 | 1.66707 | 4785.35 | | M30 | uptrend | 483.77 | 25.1227 | 1.82303 | 4785.35 | | M15 | uptrend | 313.51 | 17.7354 | 0.834027 | 4785.35 | | M5 | downtrend | 448.5 | 8.2275 | -0.55351 | 4785.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143757.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal: Direction: 1 Confidence: 93.7% ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' 🎯 Enhanced Analysis: Trend: 93.7/100 (30%) Volume: 60.0/100 (20%) Momentum: 70.0/100 (20%) S/R: 50.0/100 (15%) Fibonacci: 50.0/100 (15%) ───────────────────────────────────── Total Score: 69.1% Quality: good ⚠️ Enhanced score LOWER by 24.6% Setup has weak confirmation factors 💡 Strong trend (94%) ====================================================================== ✅ Test complete!
In [65]:
# ==========================================
# SETUP P&L TRACKER
# ==========================================
from mt5_pnl_tracker import MT5PnLTracker, scheduled_pnl_sync
print("=" * 80)
print("🚀 INITIALIZING P&L TRACKER...")
print("=" * 80)
# Initialize tracker
pnl_tracker = MT5PnLTracker(
db_path="trading_bot.db",
magic_number=None # None = all trades, or specify your EA magic number
)
# Connect to database
pnl_tracker.connect_db()
print("\n✅ P&L Tracker initialized successfully!")
print(" Database: trading_bot.db")
print(" Tables: mt5_deals, matched_positions, pnl_summary")
print("=" * 80)
================================================================================ 🚀 INITIALIZING P&L TRACKER... ================================================================================ ✅ P&L Tracker initialized successfully! Database: trading_bot.db Tables: mt5_deals, matched_positions, pnl_summary ================================================================================
In [66]:
# ==========================================
# INITIAL SYNC: IMPORT MT5 HISTORY
# ==========================================
print("\n📥 Importing MT5 history...")
print(" This will import last 30 days of trades from MT5")
print(" Please wait...\n")
# Perform initial sync
sync_results = pnl_tracker.sync_and_update(days_back=30)
if sync_results['success']:
summary = sync_results['summary']
print("=" * 80)
print("✅ SYNC SUCCESSFUL!")
print("=" * 80)
print(f"\n📥 Import Results:")
print(f" New Deals: {summary['new_deals']}")
print(f" Matched Positions: {summary['matched_positions']}")
print(f"\n📊 Current Performance:")
print(f" Total Trades: {summary['total_trades']}")
print(f" Win Rate: {summary['win_rate']:.1f}%")
print(f" Net P&L: ${summary['net_profit']:.2f}")
print("=" * 80)
if summary['new_deals'] == 0:
print("\n💡 No new deals found. This means:")
print(" • History already imported, OR")
print(" • No trades in last 30 days")
else:
print("=" * 80)
print("❌ SYNC FAILED")
print("=" * 80)
print(f"Error: {sync_results.get('error', 'Unknown error')}")
print("\n💡 Troubleshooting:")
print(" • Check MT5 is running")
print(" • Verify MT5 connection")
print(" • Check trading history exists")
📥 Importing MT5 history... This will import last 30 days of trades from MT5 Please wait... ================================================================================ ✅ SYNC SUCCESSFUL! ================================================================================ 📥 Import Results: New Deals: 1 Matched Positions: 242 📊 Current Performance: Total Trades: 242 Win Rate: 43.4% Net P&L: $-31.63 ================================================================================
In [67]:
# ==========================================
# ADD P&L SYNC TO SCHEDULER
# ==========================================
from apscheduler.triggers.interval import IntervalTrigger
print("\n🔄 Adding P&L sync to scheduler...")
# Remove old job if exists
try:
scheduler.remove_job('pnl_sync')
print(" Removed old P&L sync job")
except:
pass
# Add hourly P&L sync
scheduler.add_job(
scheduled_pnl_sync,
trigger=IntervalTrigger(hours=1),
args=[pnl_tracker, 7], # Sync last 7 days
id='pnl_sync',
name='P&L Sync',
replace_existing=True,
max_instances=1
)
print("✅ P&L sync scheduled (every 1 hour)")
print(" Syncs last 7 days from MT5")
# Show all scheduler jobs
print("\n📋 Active Scheduler Jobs:")
for job in scheduler.get_jobs():
print(f" • {job.id}: {job.trigger}")
print("\n✅ Scheduler updated successfully!")
print("=" * 80)
2026-01-22 01:40:09,465 - INFO - Added job "P&L Sync" to job store "default"
🔄 Adding P&L sync to scheduler... ✅ P&L sync scheduled (every 1 hour) Syncs last 7 days from MT5 📋 Active Scheduler Jobs: • position_monitor: interval[0:01:00] • enhanced_trailing_stop: interval[0:01:00] • adaptive_trading_check: interval[0:01:00] • status_report: cron[minute='0,30'] • pnl_sync: interval[1:00:00] • daily_report: cron[hour='22', minute='0'] • threshold_optimization: cron[hour='0'] • weekly_report: cron[day_of_week='sun', hour='23', minute='0'] ✅ Scheduler updated successfully! ================================================================================
In [ ]:
# ==========================================
# 💰 P&L PERFORMANCE DASHBOARD
# ==========================================
# Generate and display dashboard
dashboard = pnl_tracker.generate_dashboard()
print(dashboard)
# Show recent trades
print("\n" + "=" * 80)
print("📜 RECENT TRADES (Last 10)")
print("=" * 80)
recent_trades = pnl_tracker.get_recent_trades(limit=10)
if not recent_trades.empty:
# Format for display
recent_trades['entry_time'] = pd.to_datetime(recent_trades['entry_time']).dt.strftime('%Y-%m-%d %H:%M')
recent_trades['exit_time'] = pd.to_datetime(recent_trades['exit_time']).dt.strftime('%Y-%m-%d %H:%M')
recent_trades['net_profit'] = recent_trades['net_profit'].round(2)
recent_trades['pips'] = recent_trades['pips'].round(1)
recent_trades['duration_hours'] = recent_trades['duration_hours'].round(1)
recent_trades['status'] = recent_trades['is_win'].apply(lambda x: '✅ WIN' if x else '❌ LOSS')
# Select columns to display
display_cols = ['position_id', 'symbol', 'type', 'entry_time', 'exit_time',
'net_profit', 'pips', 'duration_hours', 'status']
print("\n" + recent_trades[display_cols].to_string(index=False))
else:
print("\n❌ No recent trades found")
print("\n" + "=" * 80)
print("✅ Dashboard refresh complete!")
print(f"Last updated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
print("=" * 80)
================================================================================ 💰 MT5 P&L TRACKER - LIVE PERFORMANCE DASHBOARD ================================================================================ Generated: 2026-01-22 01:40:09 ================================================================================ 📊 ALL TIME PERFORMANCE ================================================================================ Total Trades: 242 Winning Trades: 105 (43.4%) Losing Trades: 137 Net Profit: $-31.63 Total Profit: $3336.27 Total Loss: $3367.90 Profit Factor: 0.99 Average Win: $31.77 Average Loss: $-24.58 Largest Win: $267.30 Largest Loss: $-118.30 Max Drawdown: $-1981.78 Avg Duration: 1.1 hours Total Pips: 1545500.0 ================================================================================ 📅 THIS MONTH ================================================================================ Trades: 235 (43.4% WR) Net Profit: $-29.22 Profit/Loss: +$3318.68 / -$3347.90 ================================================================================ 📅 THIS WEEK ================================================================================ Trades: 58 (37.9% WR) Net Profit: $164.12 Profit/Loss: +$2605.25 / -$2441.13 ================================================================================ 📅 TODAY ================================================================================ ❌ No trades today ================================================================================ ================================================================================ 📜 RECENT TRADES (Last 10) ================================================================================ position_id symbol type entry_time exit_time net_profit pips duration_hours status 687904350 XAUUSD LONG 2026-01-21 12:08 2026-01-21 16:55 204.4 204400.0 4.8 ✅ WIN 687540064 XAUUSD LONG 2026-01-21 10:15 2026-01-21 11:05 252.5 252500.0 0.8 ✅ WIN 687477396 XAUUSD LONG 2026-01-21 10:00 2026-01-21 10:04 -106.9 -106900.0 0.1 ❌ LOSS 687409983 XAUUSD LONG 2026-01-21 09:45 2026-01-21 09:56 -91.6 -91600.0 0.2 ❌ LOSS 687349400 XAUUSD LONG 2026-01-21 09:30 2026-01-21 09:37 -86.8 -86800.0 0.1 ❌ LOSS 687070782 XAUUSD LONG 2026-01-21 07:45 2026-01-21 09:27 203.4 203400.0 1.7 ✅ WIN 686678333 XAUUSD LONG 2026-01-21 05:15 2026-01-21 07:33 267.3 267300.0 2.3 ✅ WIN 686637686 XAUUSD LONG 2026-01-21 05:00 2026-01-21 05:12 -106.4 -106400.0 0.2 ❌ LOSS 686591262 XAUUSD LONG 2026-01-21 04:45 2026-01-21 04:54 242.3 242300.0 0.2 ✅ WIN 686539846 XAUUSD LONG 2026-01-21 04:30 2026-01-21 04:34 -82.7 -82700.0 0.1 ❌ LOSS ================================================================================ ✅ Dashboard refresh complete! Last updated: 2026-01-22 01:40:09 ================================================================================
2026-01-22 01:40:13,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:40:23,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:40:33,904 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:40:43,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:40:53,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:41:03 CET)" (scheduled at 2026-01-22 01:41:03.329776+01:00) 2026-01-22 01:41:03,489 - WARNING - No history found for ticket 692708945 2026-01-22 01:41:03,490 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:42:03 CET)" executed successfully 2026-01-22 01:41:03,986 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:42:07 CET)" (scheduled at 2026-01-22 01:41:07.461608+01:00) 2026-01-22 01:41:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:42:07 CET)" executed successfully 2026-01-22 01:41:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:42:08 CET)" (scheduled at 2026-01-22 01:41:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.81 | 84.7866 | 9.76501 | 4789.43 | | H4 | uptrend | 403.86 | 45.1131 | 2.7329 | 4789.43 | | H1 | uptrend | 338 | 32.9001 | 1.66803 | 4789.43 | | M30 | uptrend | 482.55 | 25.1991 | 1.824 | 4789.43 | | M15 | uptrend | 312.52 | 17.8118 | 0.834991 | 4789.43 | | M5 | downtrend | 431.25 | 8.5418 | -0.552546 | 4789.43 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143991.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 01:41:09,056 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:42:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 01:41:14,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:24,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:34,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:44,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:41:54,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:03,927 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:03 CET)" (scheduled at 2026-01-22 01:42:03.329776+01:00) 2026-01-22 01:42:03,930 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:03 CET)" executed successfully 2026-01-22 01:42:04,145 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:07 CET)" (scheduled at 2026-01-22 01:42:07.461608+01:00) 2026-01-22 01:42:07,589 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:42:07,591 - INFO - Session: ASIAN | ATR: 8.27643 2026-01-22 01:42:07,593 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:07 CET)" executed successfully 2026-01-22 01:42:09,575 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:08 CET)" (scheduled at 2026-01-22 01:42:08.847423+01:00) 2026-01-22 01:42:09,587 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:43:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 53.50
2026-01-22 01:42:14,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:24,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:34,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:44,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:42:54,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:03 CET)" (scheduled at 2026-01-22 01:43:03.329776+01:00) 2026-01-22 01:43:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:03 CET)" executed successfully 2026-01-22 01:43:04,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:07 CET)" (scheduled at 2026-01-22 01:43:07.461608+01:00) 2026-01-22 01:43:07,468 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:43:07,468 - INFO - Session: ASIAN | ATR: 8.41714 2026-01-22 01:43:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:07 CET)" executed successfully 2026-01-22 01:43:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:08 CET)" (scheduled at 2026-01-22 01:43:08.847423+01:00) 2026-01-22 01:43:08,851 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:44:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 78.90
2026-01-22 01:43:14,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:24,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:34,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:44,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:43:54,435 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:03 CET)" (scheduled at 2026-01-22 01:44:03.329776+01:00) 2026-01-22 01:44:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:03 CET)" executed successfully 2026-01-22 01:44:04,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:07 CET)" (scheduled at 2026-01-22 01:44:07.461608+01:00) 2026-01-22 01:44:07,484 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:44:07,485 - INFO - Session: ASIAN | ATR: 8.63214 2026-01-22 01:44:07,486 - INFO - 📈 Trailing Trigger for #692708945: Early BE at 37.4% (+5 pips buffer) 2026-01-22 01:44:07,950 - INFO - ✅ Enhanced Trailing Stop updated for #692708945 2026-01-22 01:44:07,952 - INFO - Old SL: 4773.46000 2026-01-22 01:44:07,954 - INFO - New SL: 4784.83000 2026-01-22 01:44:07,955 - INFO - Buffer: 11.37000 2026-01-22 01:44:07,957 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:07 CET)" executed successfully 2026-01-22 01:44:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:08 CET)" (scheduled at 2026-01-22 01:44:08.847423+01:00) 2026-01-22 01:44:08,854 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:45:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 93.80
2026-01-22 01:44:14,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:24,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:34,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:44,550 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:44:54,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:03 CET)" (scheduled at 2026-01-22 01:45:03.329776+01:00) 2026-01-22 01:45:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:03 CET)" executed successfully 2026-01-22 01:45:04,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:07 CET)" (scheduled at 2026-01-22 01:45:07.461608+01:00) 2026-01-22 01:45:07,478 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:45:07,485 - INFO - Session: ASIAN | ATR: 8.21571 2026-01-22 01:45:07,487 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:07 CET)" executed successfully 2026-01-22 01:45:08,993 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:08 CET)" (scheduled at 2026-01-22 01:45:08.847423+01:00) 2026-01-22 01:45:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:46:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 89.80
2026-01-22 01:45:14,617 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:24,642 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:34,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:44,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:45:54,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:03 CET)" (scheduled at 2026-01-22 01:46:03.329776+01:00) 2026-01-22 01:46:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:03 CET)" executed successfully 2026-01-22 01:46:04,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:07,712 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:07 CET)" (scheduled at 2026-01-22 01:46:07.461608+01:00) 2026-01-22 01:46:07,712 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:46:07,712 - INFO - Session: ASIAN | ATR: 8.31857 2026-01-22 01:46:07,712 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:07 CET)" executed successfully 2026-01-22 01:46:09,105 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:08 CET)" (scheduled at 2026-01-22 01:46:08.847423+01:00) 2026-01-22 01:46:09,107 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:47:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 76.30
2026-01-22 01:46:14,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:24,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:34,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:44,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:46:54,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:03 CET)" (scheduled at 2026-01-22 01:47:03.329776+01:00) 2026-01-22 01:47:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:03 CET)" executed successfully 2026-01-22 01:47:04,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:07 CET)" (scheduled at 2026-01-22 01:47:07.461608+01:00) 2026-01-22 01:47:07,475 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:47:07,484 - INFO - Session: ASIAN | ATR: 8.41429 2026-01-22 01:47:07,505 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:07 CET)" executed successfully 2026-01-22 01:47:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:08 CET)" (scheduled at 2026-01-22 01:47:08.847423+01:00) 2026-01-22 01:47:08,850 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:48:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 57.60
2026-01-22 01:47:14,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:24,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:34,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:44,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:47:55,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:03,635 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:03 CET)" (scheduled at 2026-01-22 01:48:03.329776+01:00) 2026-01-22 01:48:03,635 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:03 CET)" executed successfully 2026-01-22 01:48:05,052 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:07 CET)" (scheduled at 2026-01-22 01:48:07.461608+01:00) 2026-01-22 01:48:07,477 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:48:07,477 - INFO - Session: ASIAN | ATR: 8.41429 2026-01-22 01:48:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:07 CET)" executed successfully 2026-01-22 01:48:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:08 CET)" (scheduled at 2026-01-22 01:48:08.847423+01:00) 2026-01-22 01:48:09,041 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:49:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 62.50
2026-01-22 01:48:15,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:25,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:35,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:45,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:48:55,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:03 CET)" (scheduled at 2026-01-22 01:49:03.329776+01:00) 2026-01-22 01:49:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:03 CET)" executed successfully 2026-01-22 01:49:05,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:07 CET)" (scheduled at 2026-01-22 01:49:07.461608+01:00) 2026-01-22 01:49:07,473 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:49:07,473 - INFO - Session: ASIAN | ATR: 8.61357 2026-01-22 01:49:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:07 CET)" executed successfully 2026-01-22 01:49:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:08 CET)" (scheduled at 2026-01-22 01:49:08.847423+01:00) 2026-01-22 01:49:08,862 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:50:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 36.20
2026-01-22 01:49:15,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:25,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:35,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:45,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:49:55,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:04,023 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:03 CET)" (scheduled at 2026-01-22 01:50:03.329776+01:00) 2026-01-22 01:50:04,023 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:03 CET)" executed successfully 2026-01-22 01:50:05,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:07,636 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:07 CET)" (scheduled at 2026-01-22 01:50:07.461608+01:00) 2026-01-22 01:50:07,703 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:50:07,779 - INFO - Session: ASIAN | ATR: 7.80786 2026-01-22 01:50:07,783 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:07 CET)" executed successfully 2026-01-22 01:50:09,280 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:08 CET)" (scheduled at 2026-01-22 01:50:08.847423+01:00) 2026-01-22 01:50:09,283 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:51:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 37.60
2026-01-22 01:50:15,367 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:25,394 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:35,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:45,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:50:55,470 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:03 CET)" (scheduled at 2026-01-22 01:51:03.329776+01:00) 2026-01-22 01:51:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:03 CET)" executed successfully 2026-01-22 01:51:05,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:07 CET)" (scheduled at 2026-01-22 01:51:07.461608+01:00) 2026-01-22 01:51:07,468 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:51:07,468 - INFO - Session: ASIAN | ATR: 7.88071 2026-01-22 01:51:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:07 CET)" executed successfully 2026-01-22 01:51:09,245 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:08 CET)" (scheduled at 2026-01-22 01:51:08.847423+01:00) 2026-01-22 01:51:09,245 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:52:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 36.30
2026-01-22 01:51:15,523 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:25,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:35,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:45,591 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:51:55,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:03,335 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:03 CET)" (scheduled at 2026-01-22 01:52:03.329776+01:00) 2026-01-22 01:52:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:03 CET)" executed successfully 2026-01-22 01:52:05,647 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:07 CET)" (scheduled at 2026-01-22 01:52:07.461608+01:00) 2026-01-22 01:52:07,466 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:52:07,474 - INFO - Session: ASIAN | ATR: 7.93286 2026-01-22 01:52:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:07 CET)" executed successfully 2026-01-22 01:52:08,964 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:08 CET)" (scheduled at 2026-01-22 01:52:08.847423+01:00) 2026-01-22 01:52:08,966 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:53:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 61.70
2026-01-22 01:52:15,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:25,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:35,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:45,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:52:55,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:03 CET)" (scheduled at 2026-01-22 01:53:03.329776+01:00) 2026-01-22 01:53:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:03 CET)" executed successfully 2026-01-22 01:53:05,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:07,492 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:07 CET)" (scheduled at 2026-01-22 01:53:07.461608+01:00) 2026-01-22 01:53:07,492 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:53:07,492 - INFO - Session: ASIAN | ATR: 7.97571 2026-01-22 01:53:07,501 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:07 CET)" executed successfully 2026-01-22 01:53:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:08 CET)" (scheduled at 2026-01-22 01:53:08.847423+01:00) 2026-01-22 01:53:08,857 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:54:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 62.60
2026-01-22 01:53:15,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:25,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:35,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:45,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:53:55,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:03 CET)" (scheduled at 2026-01-22 01:54:03.329776+01:00) 2026-01-22 01:54:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:03 CET)" executed successfully 2026-01-22 01:54:05,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:07 CET)" (scheduled at 2026-01-22 01:54:07.461608+01:00) 2026-01-22 01:54:07,466 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:54:07,466 - INFO - Session: ASIAN | ATR: 8.07071 2026-01-22 01:54:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:07 CET)" executed successfully 2026-01-22 01:54:08,887 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:08 CET)" (scheduled at 2026-01-22 01:54:08.847423+01:00) 2026-01-22 01:54:08,891 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:55:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 72.70
2026-01-22 01:54:15,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:25,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:36,011 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:46,048 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:54:56,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:03 CET)" (scheduled at 2026-01-22 01:55:03.329776+01:00) 2026-01-22 01:55:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:03 CET)" executed successfully 2026-01-22 01:55:06,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:07,579 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:07 CET)" (scheduled at 2026-01-22 01:55:07.461608+01:00) 2026-01-22 01:55:07,584 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:55:07,585 - INFO - Session: ASIAN | ATR: 7.81214 2026-01-22 01:55:07,588 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:07 CET)" executed successfully 2026-01-22 01:55:09,037 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:08 CET)" (scheduled at 2026-01-22 01:55:08.847423+01:00) 2026-01-22 01:55:09,039 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:56:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 102.70
2026-01-22 01:55:16,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:26,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:36,158 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:46,186 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:55:56,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:03 CET)" (scheduled at 2026-01-22 01:56:03.329776+01:00) 2026-01-22 01:56:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:03 CET)" executed successfully 2026-01-22 01:56:06,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:07 CET)" (scheduled at 2026-01-22 01:56:07.461608+01:00) 2026-01-22 01:56:07,469 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:56:07,470 - INFO - Session: ASIAN | ATR: 7.88714 2026-01-22 01:56:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:07 CET)" executed successfully 2026-01-22 01:56:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:08 CET)" (scheduled at 2026-01-22 01:56:08.847423+01:00) 2026-01-22 01:56:08,851 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:57:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 110.00
2026-01-22 01:56:16,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:26,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:36,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:46,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:56:56,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:03 CET)" (scheduled at 2026-01-22 01:57:03.329776+01:00) 2026-01-22 01:57:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:03 CET)" executed successfully 2026-01-22 01:57:06,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:07 CET)" (scheduled at 2026-01-22 01:57:07.461608+01:00) 2026-01-22 01:57:07,474 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:57:07,475 - INFO - Session: ASIAN | ATR: 7.97929 2026-01-22 01:57:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:07 CET)" executed successfully 2026-01-22 01:57:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:08 CET)" (scheduled at 2026-01-22 01:57:08.847423+01:00) 2026-01-22 01:57:08,851 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:58:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 123.20
2026-01-22 01:57:16,518 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:26,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:36,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:46,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:57:56,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:03 CET)" (scheduled at 2026-01-22 01:58:03.329776+01:00) 2026-01-22 01:58:03,330 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:03 CET)" executed successfully 2026-01-22 01:58:06,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:07,556 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:07 CET)" (scheduled at 2026-01-22 01:58:07.461608+01:00) 2026-01-22 01:58:07,563 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:58:07,564 - INFO - Session: ASIAN | ATR: 8.04714 2026-01-22 01:58:07,566 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:07 CET)" executed successfully 2026-01-22 01:58:08,983 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:08 CET)" (scheduled at 2026-01-22 01:58:08.847423+01:00) 2026-01-22 01:58:08,986 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 01:59:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 134.20
2026-01-22 01:58:16,648 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:26,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:36,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:46,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:58:56,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:03,593 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:03 CET)" (scheduled at 2026-01-22 01:59:03.329776+01:00) 2026-01-22 01:59:03,593 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:03 CET)" executed successfully 2026-01-22 01:59:06,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:07,802 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:07 CET)" (scheduled at 2026-01-22 01:59:07.461608+01:00) 2026-01-22 01:59:07,809 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 01:59:07,814 - INFO - Session: ASIAN | ATR: 8.06643 2026-01-22 01:59:07,815 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:07 CET)" executed successfully 2026-01-22 01:59:08,874 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:08 CET)" (scheduled at 2026-01-22 01:59:08.847423+01:00) 2026-01-22 01:59:08,876 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:00:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 122.40
2026-01-22 01:59:16,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:26,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:36,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:46,855 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 01:59:56,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:00,009 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 02:30:00 CET)" (scheduled at 2026-01-22 02:00:00+01:00) 2026-01-22 02:00:00,235 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 02:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 02:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 30.87 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 02:00:03,827 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:03 CET)" (scheduled at 2026-01-22 02:00:03.329776+01:00) 2026-01-22 02:00:03,827 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:03 CET)" executed successfully 2026-01-22 02:00:06,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:07,594 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:07 CET)" (scheduled at 2026-01-22 02:00:07.461608+01:00) 2026-01-22 02:00:07,600 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 02:00:07,602 - INFO - Session: ASIAN | ATR: 7.75429 2026-01-22 02:00:07,604 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:07 CET)" executed successfully 2026-01-22 02:00:09,053 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:08 CET)" (scheduled at 2026-01-22 02:00:08.847423+01:00) 2026-01-22 02:00:09,062 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:01:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 85.30
2026-01-22 02:00:16,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:26,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:36,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:46,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:00:57,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:03 CET)" (scheduled at 2026-01-22 02:01:03.329776+01:00) 2026-01-22 02:01:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:03 CET)" executed successfully 2026-01-22 02:01:07,032 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:07,483 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:07 CET)" (scheduled at 2026-01-22 02:01:07.461608+01:00) 2026-01-22 02:01:07,498 - INFO - 🔍 Enhanced Position Monitor - 1 position(s) 2026-01-22 02:01:07,500 - INFO - Session: ASIAN | ATR: 8.28857 2026-01-22 02:01:07,502 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:07 CET)" executed successfully 2026-01-22 02:01:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:08 CET)" (scheduled at 2026-01-22 02:01:08.847423+01:00) 2026-01-22 02:01:08,856 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:02:08 CET)" executed successfully
🛑 TRADE BLOCKIERT: 1/1 Positionen aktiv BUY @ 4784.78 | 🟢 30.50
2026-01-22 02:01:17,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:27,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:37,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:47,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:01:57,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:03 CET)" (scheduled at 2026-01-22 02:02:03.329776+01:00) 2026-01-22 02:02:03,377 - INFO - ✅ Updated closed position 692708945: manual_close, Profit: -3.76 2026-01-22 02:02:04,694 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:03 CET)" executed successfully
⚠️ Telegram send failed: 400
2026-01-22 02:02:07,186 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:07,686 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:07 CET)" (scheduled at 2026-01-22 02:02:07.461608+01:00) 2026-01-22 02:02:07,692 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:07 CET)" executed successfully 2026-01-22 02:02:08,856 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:08 CET)" (scheduled at 2026-01-22 02:02:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.72 | 84.7866 | 9.76384 | 4784.5 | | H4 | uptrend | 403.69 | 45.1131 | 2.73173 | 4784.5 | | H1 | uptrend | 348.31 | 32.1007 | 1.67714 | 4784.64 | | M30 | uptrend | 474.72 | 25.2455 | 1.79768 | 4784.64 | | M15 | uptrend | 298.08 | 17.71 | 0.791857 | 4784.64 | | M5 | downtrend | 413.03 | 8.9707 | -0.555779 | 4784.64 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143897.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 02:02:09,101 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:03:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:02:17,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:27,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:37,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:47,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:02:57,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:03 CET)" (scheduled at 2026-01-22 02:03:03.329776+01:00) 2026-01-22 02:03:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:03 CET)" executed successfully 2026-01-22 02:03:07,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:07,962 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:07 CET)" (scheduled at 2026-01-22 02:03:07.461608+01:00) 2026-01-22 02:03:07,962 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:07 CET)" executed successfully 2026-01-22 02:03:09,490 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:08 CET)" (scheduled at 2026-01-22 02:03:08.847423+01:00) 2026-01-22 02:03:09,769 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 767.61 | 84.7866 | 9.76249 | 4778.78 | | H4 | uptrend | 403.49 | 45.1131 | 2.73043 | 4778.97 | | H1 | uptrend | 346.51 | 32.2414 | 1.67579 | 4778.97 | | M30 | uptrend | 471.76 | 25.3863 | 1.79643 | 4779.37 | | M15 | uptrend | 295.27 | 17.8507 | 0.790609 | 4779.36 | | M5 | downtrend | 407.61 | 9.1114 | -0.557088 | 4779.1 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.17% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143425.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:03:17,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:27,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:37,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:47,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:03:57,435 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:03,930 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:05:03 CET)" (scheduled at 2026-01-22 02:04:03.329776+01:00) 2026-01-22 02:04:03,930 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:05:03 CET)" executed successfully 2026-01-22 02:04:07,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:07 CET)" (scheduled at 2026-01-22 02:04:07.461608+01:00) 2026-01-22 02:04:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:04:07 CET)" executed successfully 2026-01-22 02:04:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:05:08 CET)" (scheduled at 2026-01-22 02:04:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect...
2026-01-22 02:04:11,871 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:05:08 CET)" executed successfully
⚠️ Keine Daten für D1 ❌ Signal-Analyse fehlgeschlagen
2026-01-22 02:04:17,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:27,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:37,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:47,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:04:57,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:03 CET)" (scheduled at 2026-01-22 02:05:03.329776+01:00) 2026-01-22 02:05:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:03 CET)" executed successfully 2026-01-22 02:05:07,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:07,797 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:07 CET)" (scheduled at 2026-01-22 02:05:07.461608+01:00) 2026-01-22 02:05:07,799 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:07 CET)" executed successfully 2026-01-22 02:05:08,990 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:08 CET)" (scheduled at 2026-01-22 02:05:08.847423+01:00) 2026-01-22 02:05:09,203 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.24 | 85.153 | 9.76161 | 4775.07 | | H4 | uptrend | 400.11 | 45.4796 | 2.72951 | 4775.09 | | H1 | uptrend | 341.54 | 32.6928 | 1.67488 | 4775.09 | | M30 | uptrend | 463.26 | 25.8377 | 1.79542 | 4775.09 | | M15 | uptrend | 287.62 | 18.3021 | 0.7896 | 4775.09 | | M5 | downtrend | 411.93 | 9.1184 | -0.563413 | 4775.03 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.59) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141400.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:05:17,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:27,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:37,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:47,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:05:57,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:03 CET)" (scheduled at 2026-01-22 02:06:03.329776+01:00) 2026-01-22 02:06:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:03 CET)" executed successfully 2026-01-22 02:06:07,684 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:07 CET)" (scheduled at 2026-01-22 02:06:07.461608+01:00) 2026-01-22 02:06:07,684 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:07 CET)" executed successfully 2026-01-22 02:06:07,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:09,202 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:08 CET)" (scheduled at 2026-01-22 02:06:08.847423+01:00) 2026-01-22 02:06:09,480 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:07:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.4 | 85.153 | 9.7636 | 4783.48 | | H4 | uptrend | 400.4 | 45.4796 | 2.73149 | 4783.48 | | H1 | uptrend | 341.94 | 32.6928 | 1.67686 | 4783.48 | | M30 | uptrend | 463.77 | 25.8377 | 1.7974 | 4783.48 | | M15 | uptrend | 288.34 | 18.3021 | 0.791595 | 4783.53 | | M5 | downtrend | 392.94 | 9.5248 | -0.561398 | 4783.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.80) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.33% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141944.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:06:17,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:27,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:37,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:47,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:06:57,857 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:03 CET)" (scheduled at 2026-01-22 02:07:03.329776+01:00) 2026-01-22 02:07:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:03 CET)" executed successfully 2026-01-22 02:07:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:07 CET)" (scheduled at 2026-01-22 02:07:07.461608+01:00) 2026-01-22 02:07:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:07 CET)" executed successfully 2026-01-22 02:07:07,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:09,077 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:08 CET)" (scheduled at 2026-01-22 02:07:08.847423+01:00) 2026-01-22 02:07:09,302 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:08:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.37 | 85.153 | 9.76325 | 4782.01 | | H4 | uptrend | 400.35 | 45.4796 | 2.73115 | 4782.05 | | H1 | uptrend | 341.87 | 32.6928 | 1.67652 | 4782.05 | | M30 | uptrend | 463.68 | 25.8377 | 1.79707 | 4782.1 | | M15 | uptrend | 288.22 | 18.3021 | 0.791257 | 4782.1 | | M5 | downtrend | 392.65 | 9.5377 | -0.561743 | 4782.1 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.76) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.33% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141920.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:07:17,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:27,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:37,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:47,970 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:07:57,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:03,619 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:03 CET)" (scheduled at 2026-01-22 02:08:03.329776+01:00) 2026-01-22 02:08:03,619 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:03 CET)" executed successfully 2026-01-22 02:08:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:07 CET)" (scheduled at 2026-01-22 02:08:07.461608+01:00) 2026-01-22 02:08:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:07 CET)" executed successfully 2026-01-22 02:08:08,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:08,881 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:08 CET)" (scheduled at 2026-01-22 02:08:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:08:09,298 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:09:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.41 | 85.153 | 9.76377 | 4784.22 | | H4 | uptrend | 400.42 | 45.4796 | 2.73167 | 4784.22 | | H1 | uptrend | 341.96 | 32.6928 | 1.67696 | 4783.89 | | M30 | uptrend | 463.79 | 25.8377 | 1.7975 | 4783.88 | | M15 | uptrend | 288.38 | 18.3021 | 0.791682 | 4783.9 | | M5 | downtrend | 384.24 | 9.7391 | -0.561318 | 4783.9 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.82) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142116.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:08:18,039 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:28,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:38,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:48,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:08:58,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:03,633 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:03 CET)" (scheduled at 2026-01-22 02:09:03.329776+01:00) 2026-01-22 02:09:03,633 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:03 CET)" executed successfully 2026-01-22 02:09:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:07 CET)" (scheduled at 2026-01-22 02:09:07.461608+01:00) 2026-01-22 02:09:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:07 CET)" executed successfully 2026-01-22 02:09:08,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:08,911 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:08 CET)" (scheduled at 2026-01-22 02:09:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:09:09,142 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:10:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.4 | 85.153 | 9.76371 | 4783.93 | | H4 | uptrend | 400.41 | 45.4796 | 2.7316 | 4783.93 | | H1 | uptrend | 341.96 | 32.6928 | 1.67697 | 4783.93 | | M30 | uptrend | 463.8 | 25.8377 | 1.79751 | 4783.94 | | M15 | uptrend | 288.38 | 18.3021 | 0.791691 | 4783.94 | | M5 | downtrend | 383.39 | 9.7605 | -0.561308 | 4783.94 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.81) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142146.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:09:18,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:28,215 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:38,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:48,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:09:58,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:03 CET)" (scheduled at 2026-01-22 02:10:03.329776+01:00) 2026-01-22 02:10:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:03 CET)" executed successfully 2026-01-22 02:10:07,474 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:07 CET)" (scheduled at 2026-01-22 02:10:07.461608+01:00) 2026-01-22 02:10:07,474 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:07 CET)" executed successfully 2026-01-22 02:10:08,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:09,149 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:08 CET)" (scheduled at 2026-01-22 02:10:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:10:09,442 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:11:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76427 | 4786.32 | | H4 | uptrend | 400.5 | 45.4796 | 2.7322 | 4786.46 | | H1 | uptrend | 342.08 | 32.6928 | 1.67755 | 4786.38 | | M30 | uptrend | 463.94 | 25.8377 | 1.79808 | 4786.37 | | M15 | uptrend | 288.59 | 18.3021 | 0.792266 | 4786.37 | | M5 | downtrend | 411.6 | 9.1312 | -0.56376 | 4786.37 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.87) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.07% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141599.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:10:18,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:28,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:38,367 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:48,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:10:58,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:03,852 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:03 CET)" (scheduled at 2026-01-22 02:11:03.329776+01:00) 2026-01-22 02:11:03,852 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:03 CET)" executed successfully 2026-01-22 02:11:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:07 CET)" (scheduled at 2026-01-22 02:11:07.461608+01:00) 2026-01-22 02:11:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:07 CET)" executed successfully 2026-01-22 02:11:08,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:08,896 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:08 CET)" (scheduled at 2026-01-22 02:11:08.847423+01:00) 2026-01-22 02:11:09,149 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:12:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.44 | 85.153 | 9.76415 | 4785.82 | | H4 | uptrend | 400.48 | 45.4796 | 2.73207 | 4785.94 | | H1 | uptrend | 342.06 | 32.6928 | 1.67744 | 4785.93 | | M30 | uptrend | 463.92 | 25.8377 | 1.79798 | 4785.94 | | M15 | uptrend | 288.55 | 18.3021 | 0.792164 | 4785.94 | | M5 | downtrend | 404.52 | 9.2926 | -0.563861 | 4785.94 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.86) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.17% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141743.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:11:18,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:28,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:38,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:48,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:11:58,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:03 CET)" (scheduled at 2026-01-22 02:12:03.329776+01:00) 2026-01-22 02:12:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:03 CET)" executed successfully 2026-01-22 02:12:07,696 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:07 CET)" (scheduled at 2026-01-22 02:12:07.461608+01:00) 2026-01-22 02:12:07,696 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:07 CET)" executed successfully 2026-01-22 02:12:08,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:09,050 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:08 CET)" (scheduled at 2026-01-22 02:12:08.847423+01:00) 2026-01-22 02:12:09,194 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.41 | 85.153 | 9.7638 | 4784.35 | | H4 | uptrend | 400.43 | 45.4796 | 2.7317 | 4784.35 | | H1 | uptrend | 341.98 | 32.6928 | 1.67707 | 4784.35 | | M30 | uptrend | 463.82 | 25.8377 | 1.79761 | 4784.35 | | M15 | uptrend | 288.41 | 18.3021 | 0.791788 | 4784.35 | | M5 | downtrend | 401.61 | 9.3662 | -0.564237 | 4784.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.82) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141777.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:12:18,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:28,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:38,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:48,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:12:58,695 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:03 CET)" (scheduled at 2026-01-22 02:13:03.329776+01:00) 2026-01-22 02:13:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:03 CET)" executed successfully 2026-01-22 02:13:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:07 CET)" (scheduled at 2026-01-22 02:13:07.461608+01:00) 2026-01-22 02:13:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:07 CET)" executed successfully 2026-01-22 02:13:08,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:08 CET)" (scheduled at 2026-01-22 02:13:08.847423+01:00) 2026-01-22 02:13:09,049 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.4 | 85.153 | 9.76364 | 4783.65 | | H4 | uptrend | 400.4 | 45.4796 | 2.73154 | 4783.67 | | H1 | uptrend | 341.95 | 32.6928 | 1.67691 | 4783.67 | | M30 | uptrend | 463.78 | 25.8377 | 1.79745 | 4783.67 | | M15 | uptrend | 288.36 | 18.3021 | 0.791628 | 4783.67 | | M5 | downtrend | 393.77 | 9.5555 | -0.564398 | 4783.67 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.80) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141916.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:13:18,742 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:28,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:39,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:49,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:13:59,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:03 CET)" (scheduled at 2026-01-22 02:14:03.329776+01:00) 2026-01-22 02:14:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:03 CET)" executed successfully 2026-01-22 02:14:07,487 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:07 CET)" (scheduled at 2026-01-22 02:14:07.461608+01:00) 2026-01-22 02:14:07,487 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:07 CET)" executed successfully 2026-01-22 02:14:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:08 CET)" (scheduled at 2026-01-22 02:14:08.847423+01:00) 2026-01-22 02:14:09,038 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:15:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.43 | 85.153 | 9.76407 | 4785.49 | | H4 | uptrend | 400.47 | 45.4796 | 2.73197 | 4785.49 | | H1 | uptrend | 342.04 | 32.6928 | 1.67734 | 4785.5 | | M30 | uptrend | 463.89 | 25.8377 | 1.79788 | 4785.5 | | M15 | uptrend | 288.51 | 18.3021 | 0.79206 | 4785.5 | | M5 | downtrend | 393.47 | 9.5555 | -0.563965 | 4785.5 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.85) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.32% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141961.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:14:09,083 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:19,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:29,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:39,148 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:49,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:14:59,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:15:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:03 CET)" (scheduled at 2026-01-22 02:15:03.329776+01:00) 2026-01-22 02:15:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:03 CET)" executed successfully 2026-01-22 02:15:07,601 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:07 CET)" (scheduled at 2026-01-22 02:15:07.461608+01:00) 2026-01-22 02:15:07,601 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:07 CET)" executed successfully 2026-01-22 02:15:09,032 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:08 CET)" (scheduled at 2026-01-22 02:15:08.847423+01:00) 2026-01-22 02:15:09,203 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:16:08 CET)" executed successfully 2026-01-22 02:15:09,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.52 | 85.153 | 9.76515 | 4790.02 | | H4 | uptrend | 400.62 | 45.4796 | 2.73304 | 4790.02 | | H1 | uptrend | 342.26 | 32.6928 | 1.67841 | 4790.02 | | M30 | uptrend | 464.17 | 25.8377 | 1.79895 | 4790.02 | | M15 | uptrend | 300.1 | 17.1105 | 0.770219 | 4790.01 | | M5 | downtrend | 408.5 | 9.2069 | -0.564145 | 4790.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.13% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142381.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:15:19,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:15:29,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:15:39,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:15:49,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:15:59,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:03 CET)" (scheduled at 2026-01-22 02:16:03.329776+01:00) 2026-01-22 02:16:03,331 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:03 CET)" executed successfully 2026-01-22 02:16:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:07 CET)" (scheduled at 2026-01-22 02:16:07.461608+01:00) 2026-01-22 02:16:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:07 CET)" executed successfully 2026-01-22 02:16:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:08 CET)" (scheduled at 2026-01-22 02:16:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:16:09,173 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:17:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.7651 | 4789.84 | | H4 | uptrend | 400.62 | 45.4796 | 2.73299 | 4789.84 | | H1 | uptrend | 342.25 | 32.6928 | 1.67837 | 4789.88 | | M30 | uptrend | 464.16 | 25.8377 | 1.7989 | 4789.84 | | M15 | uptrend | 298.14 | 17.222 | 0.770179 | 4789.84 | | M5 | downtrend | 403.65 | 9.3183 | -0.564202 | 4789.77 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 618.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.19% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142360.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:16:09,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:19,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:29,474 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:39,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:49,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:16:59,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:03,672 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:03 CET)" (scheduled at 2026-01-22 02:17:03.329776+01:00) 2026-01-22 02:17:03,672 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:03 CET)" executed successfully 2026-01-22 02:17:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:07 CET)" (scheduled at 2026-01-22 02:17:07.461608+01:00) 2026-01-22 02:17:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:07 CET)" executed successfully 2026-01-22 02:17:09,043 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:08 CET)" (scheduled at 2026-01-22 02:17:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:17:09,441 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:18:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.55 | 85.153 | 9.7656 | 4791.95 | | H4 | uptrend | 400.69 | 45.4796 | 2.7335 | 4791.98 | | H1 | uptrend | 342.34 | 32.6928 | 1.6788 | 4791.69 | | M30 | uptrend | 464.26 | 25.8377 | 1.79932 | 4791.61 | | M15 | uptrend | 295.52 | 17.3841 | 0.770595 | 4791.6 | | M5 | downtrend | 396.44 | 9.4804 | -0.56377 | 4791.6 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.01) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142384.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:17:09,574 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:19,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:29,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:39,652 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:49,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:17:59,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:03 CET)" (scheduled at 2026-01-22 02:18:03.329776+01:00) 2026-01-22 02:18:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:03 CET)" executed successfully 2026-01-22 02:18:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:07 CET)" (scheduled at 2026-01-22 02:18:07.461608+01:00) 2026-01-22 02:18:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:07 CET)" executed successfully 2026-01-22 02:18:09,140 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:08 CET)" (scheduled at 2026-01-22 02:18:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:18:09,554 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:19:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76632 | 4794.98 | | H4 | uptrend | 400.8 | 45.4796 | 2.73421 | 4794.98 | | H1 | uptrend | 342.5 | 32.6928 | 1.67958 | 4794.98 | | M30 | uptrend | 464.47 | 25.8377 | 1.80012 | 4794.98 | | M15 | uptrend | 293.63 | 17.5141 | 0.771398 | 4795 | | M5 | downtrend | 390.52 | 9.6104 | -0.562966 | 4795 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.08) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142435.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 66.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:18:09,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:19,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:29,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:39,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:49,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:18:59,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:19:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:03 CET)" (scheduled at 2026-01-22 02:19:03.329776+01:00) 2026-01-22 02:19:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:03 CET)" executed successfully 2026-01-22 02:19:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:07 CET)" (scheduled at 2026-01-22 02:19:07.461608+01:00) 2026-01-22 02:19:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:07 CET)" executed successfully 2026-01-22 02:19:08,867 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:08 CET)" (scheduled at 2026-01-22 02:19:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:19:09,442 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:20:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76628 | 4794.81 | | H4 | uptrend | 400.79 | 45.4796 | 2.73418 | 4794.86 | | H1 | uptrend | 342.5 | 32.6928 | 1.67958 | 4794.97 | | M30 | uptrend | 464.47 | 25.8377 | 1.80014 | 4795.06 | | M15 | uptrend | 293.63 | 17.5141 | 0.771412 | 4795.06 | | M5 | downtrend | 390.51 | 9.6104 | -0.562945 | 4795.09 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.08) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142436.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:19:09,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:19:19,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:19:29,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:19:39,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:19:49,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:00,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:03 CET)" (scheduled at 2026-01-22 02:20:03.329776+01:00) 2026-01-22 02:20:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:03 CET)" executed successfully 2026-01-22 02:20:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:07 CET)" (scheduled at 2026-01-22 02:20:07.461608+01:00) 2026-01-22 02:20:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:07 CET)" executed successfully 2026-01-22 02:20:09,019 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:08 CET)" (scheduled at 2026-01-22 02:20:08.847423+01:00) 2026-01-22 02:20:09,185 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.72 | 85.153 | 9.76767 | 4800.71 | | H4 | uptrend | 400.99 | 45.4796 | 2.73554 | 4800.61 | | H1 | uptrend | 340.47 | 32.9135 | 1.68091 | 4800.61 | | M30 | uptrend | 460.88 | 26.0584 | 1.80145 | 4800.62 | | M15 | uptrend | 287.66 | 17.9084 | 0.772726 | 4800.62 | | M5 | downtrend | 402.04 | 9.2953 | -0.560566 | 4800.62 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.2% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141393.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:20:10,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:20,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:30,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:40,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:20:50,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:00,171 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:03 CET)" (scheduled at 2026-01-22 02:21:03.329776+01:00) 2026-01-22 02:21:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:03 CET)" executed successfully 2026-01-22 02:21:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:07 CET)" (scheduled at 2026-01-22 02:21:07.461608+01:00) 2026-01-22 02:21:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:07 CET)" executed successfully 2026-01-22 02:21:09,170 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:08 CET)" (scheduled at 2026-01-22 02:21:08.847423+01:00) 2026-01-22 02:21:09,353 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.78 | 85.153 | 9.76854 | 4804.39 | | H4 | uptrend | 401.13 | 45.4796 | 2.73651 | 4804.74 | | H1 | uptrend | 338.09 | 33.1642 | 1.68188 | 4804.74 | | M30 | uptrend | 456.73 | 26.3091 | 1.80242 | 4804.71 | | M15 | uptrend | 284.04 | 18.1591 | 0.773693 | 4804.71 | | M5 | downtrend | 389.36 | 9.5817 | -0.559607 | 4804.68 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.32) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140900.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:21:10,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:20,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:30,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:40,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:21:50,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:00,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:04,454 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:23:03 CET)" was missed by 0:00:01.124987 2026-01-22 02:22:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:23:07 CET)" (scheduled at 2026-01-22 02:22:07.461608+01:00) 2026-01-22 02:22:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:23:07 CET)" executed successfully 2026-01-22 02:22:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:23:08 CET)" (scheduled at 2026-01-22 02:22:08.847423+01:00) 2026-01-22 02:22:09,004 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:23:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.82 | 85.153 | 9.76901 | 4806.38 | | H4 | uptrend | 401.19 | 45.4796 | 2.7369 | 4806.38 | | H1 | uptrend | 336.21 | 33.3578 | 1.68227 | 4806.38 | | M30 | uptrend | 453.49 | 26.5027 | 1.80281 | 4806.38 | | M15 | uptrend | 281.19 | 18.3527 | 0.774087 | 4806.38 | | M5 | downtrend | 381.36 | 9.7753 | -0.559191 | 4806.44 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.37) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.45% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140455.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:22:10,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:20,371 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:30,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:40,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:22:50,437 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:00,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:03 CET)" (scheduled at 2026-01-22 02:23:03.329776+01:00) 2026-01-22 02:23:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:03 CET)" executed successfully 2026-01-22 02:23:07,617 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:07 CET)" (scheduled at 2026-01-22 02:23:07.461608+01:00) 2026-01-22 02:23:07,617 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:07 CET)" executed successfully 2026-01-22 02:23:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:08 CET)" (scheduled at 2026-01-22 02:23:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:23:09,291 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:24:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.82 | 85.153 | 9.76899 | 4806.3 | | H4 | uptrend | 401.19 | 45.4796 | 2.73688 | 4806.28 | | H1 | uptrend | 336.2 | 33.3578 | 1.68225 | 4806.28 | | M30 | uptrend | 453.49 | 26.5027 | 1.80279 | 4806.28 | | M15 | uptrend | 281.18 | 18.3527 | 0.774063 | 4806.28 | | M5 | downtrend | 381.39 | 9.7753 | -0.559229 | 4806.28 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.37) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.45% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140453.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:23:10,487 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:20,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:30,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:40,555 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:23:50,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:00,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:03,587 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:03 CET)" (scheduled at 2026-01-22 02:24:03.329776+01:00) 2026-01-22 02:24:03,587 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:03 CET)" executed successfully 2026-01-22 02:24:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:07 CET)" (scheduled at 2026-01-22 02:24:07.461608+01:00) 2026-01-22 02:24:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:07 CET)" executed successfully 2026-01-22 02:24:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:08 CET)" (scheduled at 2026-01-22 02:24:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:24:09,096 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:25:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.83 | 85.153 | 9.76918 | 4807.08 | | H4 | uptrend | 401.22 | 45.4796 | 2.73707 | 4807.08 | | H1 | uptrend | 336.02 | 33.3792 | 1.68243 | 4807.04 | | M30 | uptrend | 453.16 | 26.5241 | 1.80297 | 4807.04 | | M15 | uptrend | 280.92 | 18.3741 | 0.774243 | 4807.04 | | M5 | downtrend | 380.43 | 9.7967 | -0.559049 | 4807.04 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.39) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140428.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:24:10,630 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:20,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:30,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:40,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:24:50,727 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:00,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:03 CET)" (scheduled at 2026-01-22 02:25:03.329776+01:00) 2026-01-22 02:25:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:03 CET)" executed successfully 2026-01-22 02:25:07,481 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:07 CET)" (scheduled at 2026-01-22 02:25:07.461608+01:00) 2026-01-22 02:25:07,481 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:07 CET)" executed successfully 2026-01-22 02:25:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:08 CET)" (scheduled at 2026-01-22 02:25:08.847423+01:00) 2026-01-22 02:25:08,985 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:26:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.84 | 85.153 | 9.76924 | 4807.35 | | H4 | uptrend | 401.23 | 45.4796 | 2.73713 | 4807.35 | | H1 | uptrend | 334.68 | 33.5149 | 1.6825 | 4807.35 | | M30 | uptrend | 450.88 | 26.6598 | 1.80307 | 4807.47 | | M15 | uptrend | 278.9 | 18.5098 | 0.774345 | 4807.47 | | M5 | downtrend | 398.2 | 9.2844 | -0.554563 | 4807.47 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.39) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 139629.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:25:10,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:20,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:30,816 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:40,852 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:25:50,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:00,904 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:27:03 CET)" (scheduled at 2026-01-22 02:26:03.329776+01:00) 2026-01-22 02:26:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:27:03 CET)" executed successfully 2026-01-22 02:26:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:27:07 CET)" (scheduled at 2026-01-22 02:26:07.461608+01:00) 2026-01-22 02:26:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:27:07 CET)" executed successfully 2026-01-22 02:26:10,195 - WARNING - Run time of job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:27:08 CET)" was missed by 0:00:01.348344 2026-01-22 02:26:10,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:20,938 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:30,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:40,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:26:51,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:01,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:03 CET)" (scheduled at 2026-01-22 02:27:03.329776+01:00) 2026-01-22 02:27:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:03 CET)" executed successfully 2026-01-22 02:27:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:07 CET)" (scheduled at 2026-01-22 02:27:07.461608+01:00) 2026-01-22 02:27:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:07 CET)" executed successfully 2026-01-22 02:27:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:08 CET)" (scheduled at 2026-01-22 02:27:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:27:09,093 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:28:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.77 | 85.153 | 9.76839 | 4803.76 | | H4 | uptrend | 401.1 | 45.4796 | 2.73628 | 4803.76 | | H1 | uptrend | 334.51 | 33.5149 | 1.68165 | 4803.76 | | M30 | uptrend | 450.66 | 26.6598 | 1.80217 | 4803.67 | | M15 | uptrend | 278.62 | 18.5098 | 0.773577 | 4804.22 | | M5 | downtrend | 386.5 | 9.5787 | -0.555331 | 4804.22 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.30) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 139810.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:27:11,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:21,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:31,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:41,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:27:51,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:01,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:03,453 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:03 CET)" (scheduled at 2026-01-22 02:28:03.329776+01:00) 2026-01-22 02:28:03,453 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:03 CET)" executed successfully 2026-01-22 02:28:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:07 CET)" (scheduled at 2026-01-22 02:28:07.461608+01:00) 2026-01-22 02:28:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:07 CET)" executed successfully 2026-01-22 02:28:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:08 CET)" (scheduled at 2026-01-22 02:28:08.847423+01:00) 2026-01-22 02:28:08,998 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76696 | 4797.71 | | H4 | uptrend | 400.89 | 45.4796 | 2.73485 | 4797.71 | | H1 | uptrend | 334.23 | 33.5149 | 1.68025 | 4797.84 | | M30 | uptrend | 450.31 | 26.6598 | 1.80079 | 4797.84 | | M15 | uptrend | 278.08 | 18.5098 | 0.772069 | 4797.84 | | M5 | downtrend | 371.83 | 9.9837 | -0.556841 | 4797.83 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.57% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140008.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:28:11,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:21,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:31,289 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:41,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:28:51,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:01,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:03 CET)" (scheduled at 2026-01-22 02:29:03.329776+01:00) 2026-01-22 02:29:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:03 CET)" executed successfully 2026-01-22 02:29:07,501 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:07 CET)" (scheduled at 2026-01-22 02:29:07.461608+01:00) 2026-01-22 02:29:07,501 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:07 CET)" executed successfully 2026-01-22 02:29:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:08 CET)" (scheduled at 2026-01-22 02:29:08.847423+01:00) 2026-01-22 02:29:09,136 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76709 | 4798.26 | | H4 | uptrend | 400.91 | 45.4796 | 2.73498 | 4798.25 | | H1 | uptrend | 334.25 | 33.5149 | 1.68035 | 4798.23 | | M30 | uptrend | 450.34 | 26.6598 | 1.80089 | 4798.23 | | M15 | uptrend | 278.11 | 18.5098 | 0.772161 | 4798.23 | | M5 | downtrend | 358.14 | 10.3637 | -0.556746 | 4798.23 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.76% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140296.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.8% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:29:11,404 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:21,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:31,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:41,472 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:29:51,505 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:00,446 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 03:00:00 CET)" (scheduled at 2026-01-22 02:30:00+01:00) 2026-01-22 02:30:00,457 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 03:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 02:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 33.52 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 02:30:01,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:03 CET)" (scheduled at 2026-01-22 02:30:03.329776+01:00) 2026-01-22 02:30:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:03 CET)" executed successfully 2026-01-22 02:30:07,493 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:07 CET)" (scheduled at 2026-01-22 02:30:07.461608+01:00) 2026-01-22 02:30:07,493 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:07 CET)" executed successfully 2026-01-22 02:30:09,569 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:08 CET)" (scheduled at 2026-01-22 02:30:08.847423+01:00) 2026-01-22 02:30:09,736 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:31:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.7668 | 4797.03 | | H4 | uptrend | 400.87 | 45.4796 | 2.73469 | 4797.03 | | H1 | uptrend | 334.19 | 33.5149 | 1.68006 | 4797.03 | | M30 | uptrend | 476.49 | 24.9077 | 1.78024 | 4797.03 | | M15 | uptrend | 288.19 | 17.3398 | 0.749572 | 4797.03 | | M5 | downtrend | 378.71 | 9.7756 | -0.555323 | 4797.03 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.52% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142482.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:30:11,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:21,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:31,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:41,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:30:51,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:01,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:03 CET)" (scheduled at 2026-01-22 02:31:03.329776+01:00) 2026-01-22 02:31:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:03 CET)" executed successfully 2026-01-22 02:31:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:07 CET)" (scheduled at 2026-01-22 02:31:07.461608+01:00) 2026-01-22 02:31:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:07 CET)" executed successfully 2026-01-22 02:31:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:08 CET)" (scheduled at 2026-01-22 02:31:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:31:09,281 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:32:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76681 | 4797.09 | | H4 | uptrend | 400.87 | 45.4796 | 2.73471 | 4797.09 | | H1 | uptrend | 334.19 | 33.5149 | 1.68008 | 4797.09 | | M30 | uptrend | 476.44 | 24.9106 | 1.78025 | 4797.09 | | M15 | uptrend | 288.15 | 17.3427 | 0.749589 | 4797.1 | | M5 | downtrend | 378.59 | 9.7784 | -0.555306 | 4797.1 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.52% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142476.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:31:11,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:21,855 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:31,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:41,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:31:51,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:01,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:03 CET)" (scheduled at 2026-01-22 02:32:03.329776+01:00) 2026-01-22 02:32:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:03 CET)" executed successfully 2026-01-22 02:32:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:07 CET)" (scheduled at 2026-01-22 02:32:07.461608+01:00) 2026-01-22 02:32:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:07 CET)" executed successfully 2026-01-22 02:32:08,856 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:08 CET)" (scheduled at 2026-01-22 02:32:08.847423+01:00) 2026-01-22 02:32:09,053 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76619 | 4794.45 | | H4 | uptrend | 400.78 | 45.4796 | 2.73408 | 4794.45 | | H1 | uptrend | 334.07 | 33.5149 | 1.67945 | 4794.45 | | M30 | uptrend | 473.76 | 25.0427 | 1.77963 | 4794.45 | | M15 | uptrend | 285.69 | 17.4748 | 0.748845 | 4793.95 | | M5 | downtrend | 374.04 | 9.9106 | -0.556051 | 4793.95 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.58% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142206.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:32:11,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:21,992 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:32,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:42,038 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:32:52,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:02,091 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:03,360 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:03 CET)" (scheduled at 2026-01-22 02:33:03.329776+01:00) 2026-01-22 02:33:03,362 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:03 CET)" executed successfully 2026-01-22 02:33:07,810 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:07 CET)" (scheduled at 2026-01-22 02:33:07.461608+01:00) 2026-01-22 02:33:07,810 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:07 CET)" executed successfully 2026-01-22 02:33:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:08 CET)" (scheduled at 2026-01-22 02:33:08.847423+01:00) 2026-01-22 02:33:09,009 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:34:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76615 | 4794.26 | | H4 | uptrend | 400.77 | 45.4796 | 2.73404 | 4794.26 | | H1 | uptrend | 334.06 | 33.5149 | 1.67941 | 4794.26 | | M30 | uptrend | 473.65 | 25.0477 | 1.77959 | 4794.29 | | M15 | uptrend | 285.63 | 17.4798 | 0.748925 | 4794.29 | | M5 | downtrend | 373.8 | 9.9156 | -0.55597 | 4794.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.58% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142194.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:33:12,116 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:22,158 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:32,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:42,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:33:52,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:02,250 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:03 CET)" (scheduled at 2026-01-22 02:34:03.329776+01:00) 2026-01-22 02:34:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:03 CET)" executed successfully 2026-01-22 02:34:07,695 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:07 CET)" (scheduled at 2026-01-22 02:34:07.461608+01:00) 2026-01-22 02:34:07,695 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:07 CET)" executed successfully 2026-01-22 02:34:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:08 CET)" (scheduled at 2026-01-22 02:34:08.847423+01:00) 2026-01-22 02:34:09,037 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:35:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76681 | 4797.08 | | H4 | uptrend | 400.87 | 45.4796 | 2.7347 | 4797.08 | | H1 | uptrend | 334.19 | 33.5149 | 1.68007 | 4797.08 | | M30 | uptrend | 473.83 | 25.0477 | 1.78025 | 4797.08 | | M15 | uptrend | 285.88 | 17.4798 | 0.749577 | 4797.05 | | M5 | downtrend | 373.36 | 9.9156 | -0.555318 | 4797.05 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142256.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:34:12,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:22,308 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:32,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:42,356 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:34:52,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:02,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:03 CET)" (scheduled at 2026-01-22 02:35:03.329776+01:00) 2026-01-22 02:35:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:03 CET)" executed successfully 2026-01-22 02:35:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:07 CET)" (scheduled at 2026-01-22 02:35:07.461608+01:00) 2026-01-22 02:35:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:07 CET)" executed successfully 2026-01-22 02:35:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:08 CET)" (scheduled at 2026-01-22 02:35:08.847423+01:00) 2026-01-22 02:35:08,995 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:36:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76638 | 4795.23 | | H4 | uptrend | 400.81 | 45.4796 | 2.73427 | 4795.23 | | H1 | uptrend | 334.11 | 33.5149 | 1.67963 | 4795.22 | | M30 | uptrend | 473.63 | 25.052 | 1.77981 | 4795.22 | | M15 | uptrend | 285.65 | 17.4841 | 0.749145 | 4795.22 | | M5 | downtrend | 397.85 | 9.2949 | -0.554698 | 4795.22 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.09) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141719.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:35:12,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:22,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:32,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:42,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:35:52,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:02,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:03 CET)" (scheduled at 2026-01-22 02:36:03.329776+01:00) 2026-01-22 02:36:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:03 CET)" executed successfully 2026-01-22 02:36:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:07 CET)" (scheduled at 2026-01-22 02:36:07.461608+01:00) 2026-01-22 02:36:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:07 CET)" executed successfully 2026-01-22 02:36:08,866 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:08 CET)" (scheduled at 2026-01-22 02:36:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:36:09,181 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:37:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.71 | 85.153 | 9.76758 | 4800.31 | | H4 | uptrend | 400.98 | 45.4796 | 2.73547 | 4800.31 | | H1 | uptrend | 334.35 | 33.5149 | 1.68084 | 4800.31 | | M30 | uptrend | 467.3 | 25.4084 | 1.781 | 4800.28 | | M15 | uptrend | 280.39 | 17.8405 | 0.75034 | 4800.28 | | M5 | downtrend | 376.81 | 9.7928 | -0.553503 | 4800.28 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141382.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:36:12,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:22,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:32,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:42,641 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:36:52,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:02,691 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:03,564 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:03 CET)" (scheduled at 2026-01-22 02:37:03.329776+01:00) 2026-01-22 02:37:03,566 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:03 CET)" executed successfully 2026-01-22 02:37:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:07 CET)" (scheduled at 2026-01-22 02:37:07.461608+01:00) 2026-01-22 02:37:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:07 CET)" executed successfully 2026-01-22 02:37:08,969 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:08 CET)" (scheduled at 2026-01-22 02:37:08.847423+01:00) 2026-01-22 02:37:09,135 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:38:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.768 | 4802.09 | | H4 | uptrend | 401.04 | 45.4796 | 2.73589 | 4802.09 | | H1 | uptrend | 334.43 | 33.5149 | 1.68126 | 4802.09 | | M30 | uptrend | 466.87 | 25.4377 | 1.78143 | 4802.09 | | M15 | uptrend | 280.09 | 17.8698 | 0.750766 | 4802.08 | | M5 | downtrend | 375.4 | 9.822 | -0.553077 | 4802.08 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141375.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:37:12,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:22,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:32,767 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:42,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:37:52,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:02,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:03,757 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:03 CET)" (scheduled at 2026-01-22 02:38:03.329776+01:00) 2026-01-22 02:38:03,759 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:03 CET)" executed successfully 2026-01-22 02:38:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:07 CET)" (scheduled at 2026-01-22 02:38:07.461608+01:00) 2026-01-22 02:38:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:07 CET)" executed successfully 2026-01-22 02:38:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:08 CET)" (scheduled at 2026-01-22 02:38:08.847423+01:00) 2026-01-22 02:38:08,988 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:39:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76734 | 4799.31 | | H4 | uptrend | 400.95 | 45.4796 | 2.73523 | 4799.31 | | H1 | uptrend | 334.3 | 33.5149 | 1.6806 | 4799.31 | | M30 | uptrend | 466.7 | 25.4377 | 1.78077 | 4799.3 | | M15 | uptrend | 279.84 | 17.8698 | 0.750109 | 4799.3 | | M5 | downtrend | 375.84 | 9.822 | -0.553734 | 4799.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.54% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141314.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:38:12,861 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:22,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:32,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:42,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:38:52,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:02,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:03,501 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:03 CET)" (scheduled at 2026-01-22 02:39:03.329776+01:00) 2026-01-22 02:39:03,509 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:03 CET)" executed successfully 2026-01-22 02:39:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:07 CET)" (scheduled at 2026-01-22 02:39:07.461608+01:00) 2026-01-22 02:39:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:07 CET)" executed successfully 2026-01-22 02:39:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:08 CET)" (scheduled at 2026-01-22 02:39:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:39:09,267 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:40:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76618 | 4794.4 | | H4 | uptrend | 400.79 | 45.4796 | 2.73414 | 4794.71 | | H1 | uptrend | 334.08 | 33.5149 | 1.67949 | 4794.63 | | M30 | uptrend | 466.41 | 25.4377 | 1.77967 | 4794.63 | | M15 | uptrend | 279.43 | 17.8698 | 0.749005 | 4794.63 | | M5 | downtrend | 375.1 | 9.8613 | -0.554854 | 4794.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141252.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 70.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%) ⏸️ No clear signal: 1
2026-01-22 02:39:13,004 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:23,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:33,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:43,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:39:53,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:03,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:03,350 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:03 CET)" (scheduled at 2026-01-22 02:40:03.329776+01:00) 2026-01-22 02:40:03,350 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:03 CET)" executed successfully 2026-01-22 02:40:07,727 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:07 CET)" (scheduled at 2026-01-22 02:40:07.461608+01:00) 2026-01-22 02:40:07,727 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:07 CET)" executed successfully 2026-01-22 02:40:09,004 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:08 CET)" (scheduled at 2026-01-22 02:40:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:40:09,276 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:41:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76733 | 4799.29 | | H4 | uptrend | 400.95 | 45.4796 | 2.73523 | 4799.29 | | H1 | uptrend | 334.3 | 33.5149 | 1.6806 | 4799.29 | | M30 | uptrend | 466.7 | 25.4377 | 1.78077 | 4799.29 | | M15 | uptrend | 279.84 | 17.8698 | 0.750106 | 4799.29 | | M5 | downtrend | 399.09 | 9.2148 | -0.551629 | 4799.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.22% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140835.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:40:09,766 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 03:40:09 CET)" (scheduled at 2026-01-22 02:40:09.465739+01:00) 2026-01-22 02:40:09,785 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 03:40:09 CET)" executed successfully
[02:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 02:40:13,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:23,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:33,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:43,242 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:40:53,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:03,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:04,079 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:03 CET)" (scheduled at 2026-01-22 02:41:03.329776+01:00) 2026-01-22 02:41:04,082 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:03 CET)" executed successfully 2026-01-22 02:41:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:07 CET)" (scheduled at 2026-01-22 02:41:07.461608+01:00) 2026-01-22 02:41:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:07 CET)" executed successfully 2026-01-22 02:41:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:08 CET)" (scheduled at 2026-01-22 02:41:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:41:09,082 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:42:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.153 | 9.76753 | 4800.12 | | H4 | uptrend | 400.97 | 45.4796 | 2.73542 | 4800.12 | | H1 | uptrend | 334.34 | 33.5149 | 1.6808 | 4800.14 | | M30 | uptrend | 466.75 | 25.4377 | 1.78097 | 4800.14 | | M15 | uptrend | 279.92 | 17.8698 | 0.750307 | 4800.14 | | M5 | downtrend | 394.62 | 9.3155 | -0.551416 | 4800.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.28% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140939.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.3% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:41:13,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:23,336 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:33,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:43,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:41:53,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:03,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:04,377 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:43:03 CET)" was missed by 0:00:01.047404 2026-01-22 02:42:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:43:07 CET)" (scheduled at 2026-01-22 02:42:07.461608+01:00) 2026-01-22 02:42:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:43:07 CET)" executed successfully 2026-01-22 02:42:08,857 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:43:08 CET)" (scheduled at 2026-01-22 02:42:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:42:09,095 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:43:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.78 | 85.153 | 9.76851 | 4804.28 | | H4 | uptrend | 401.12 | 45.4796 | 2.73641 | 4804.28 | | H1 | uptrend | 334.53 | 33.5149 | 1.68178 | 4804.28 | | M30 | uptrend | 465.19 | 25.537 | 1.78194 | 4804.24 | | M15 | uptrend | 278.73 | 17.9691 | 0.751276 | 4804.24 | | M5 | downtrend | 383.87 | 9.5598 | -0.550461 | 4804.24 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.32) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141006.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:42:13,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:23,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:33,508 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:43,532 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:42:53,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:03,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:03,975 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:03 CET)" (scheduled at 2026-01-22 02:43:03.329776+01:00) 2026-01-22 02:43:03,978 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:03 CET)" executed successfully 2026-01-22 02:43:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:07 CET)" (scheduled at 2026-01-22 02:43:07.461608+01:00) 2026-01-22 02:43:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:07 CET)" executed successfully 2026-01-22 02:43:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:08 CET)" (scheduled at 2026-01-22 02:43:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:43:09,265 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:44:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.78 | 85.153 | 9.76845 | 4804.01 | | H4 | uptrend | 401.11 | 45.4796 | 2.73635 | 4804.04 | | H1 | uptrend | 334.52 | 33.5149 | 1.68172 | 4804.04 | | M30 | uptrend | 465.13 | 25.5399 | 1.78189 | 4804.04 | | M15 | uptrend | 278.67 | 17.972 | 0.751229 | 4804.04 | | M5 | downtrend | 383.8 | 9.5627 | -0.550525 | 4803.97 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.31) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140996.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:43:13,607 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:23,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:33,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:43,690 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:43:53,711 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:03,540 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:03 CET)" (scheduled at 2026-01-22 02:44:03.329776+01:00) 2026-01-22 02:44:03,540 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:03 CET)" executed successfully 2026-01-22 02:44:03,739 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:07 CET)" (scheduled at 2026-01-22 02:44:07.461608+01:00) 2026-01-22 02:44:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:07 CET)" executed successfully 2026-01-22 02:44:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:08 CET)" (scheduled at 2026-01-22 02:44:08.847423+01:00) 2026-01-22 02:44:09,041 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:45:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.76 | 85.153 | 9.76826 | 4803.2 | | H4 | uptrend | 401.08 | 45.4796 | 2.73615 | 4803.2 | | H1 | uptrend | 334.48 | 33.5149 | 1.68152 | 4803.2 | | M30 | uptrend | 465.08 | 25.5399 | 1.78169 | 4803.2 | | M15 | uptrend | 278.6 | 17.972 | 0.751056 | 4803.31 | | M5 | downtrend | 383.91 | 9.5627 | -0.550681 | 4803.31 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.29) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140983.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:44:13,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:23,802 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:33,815 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:43,852 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:44:53,867 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:03 CET)" (scheduled at 2026-01-22 02:45:03.329776+01:00) 2026-01-22 02:45:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:03 CET)" executed successfully 2026-01-22 02:45:03,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:07 CET)" (scheduled at 2026-01-22 02:45:07.461608+01:00) 2026-01-22 02:45:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:07 CET)" executed successfully 2026-01-22 02:45:09,045 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:08 CET)" (scheduled at 2026-01-22 02:45:08.847423+01:00) 2026-01-22 02:45:09,231 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:46:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.76802 | 4802.19 | | H4 | uptrend | 401.05 | 45.4796 | 2.73591 | 4802.19 | | H1 | uptrend | 334.43 | 33.5149 | 1.68128 | 4802.19 | | M30 | uptrend | 465.01 | 25.5399 | 1.78146 | 4802.19 | | M15 | uptrend | 290.03 | 16.7783 | 0.729927 | 4802.16 | | M5 | downtrend | 408.18 | 8.9696 | -0.549188 | 4802.16 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141139.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:45:13,913 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:23,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:33,961 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:43,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:45:54,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:03,368 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:03 CET)" (scheduled at 2026-01-22 02:46:03.329776+01:00) 2026-01-22 02:46:03,368 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:03 CET)" executed successfully 2026-01-22 02:46:04,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:07,665 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:07 CET)" (scheduled at 2026-01-22 02:46:07.461608+01:00) 2026-01-22 02:46:07,665 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:07 CET)" executed successfully 2026-01-22 02:46:08,882 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:08 CET)" (scheduled at 2026-01-22 02:46:08.847423+01:00) 2026-01-22 02:46:09,048 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:47:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.76797 | 4802 | | H4 | uptrend | 401.04 | 45.4796 | 2.73587 | 4802 | | H1 | uptrend | 334.43 | 33.5149 | 1.68124 | 4802 | | M30 | uptrend | 465 | 25.5399 | 1.78141 | 4802 | | M15 | uptrend | 288.89 | 16.8433 | 0.729889 | 4802 | | M5 | downtrend | 405.28 | 9.0346 | -0.549226 | 4802 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.15% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141133.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:46:14,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:24,091 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:34,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:44,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:46:54,153 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:03 CET)" (scheduled at 2026-01-22 02:47:03.329776+01:00) 2026-01-22 02:47:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:03 CET)" executed successfully 2026-01-22 02:47:04,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:07,461 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:07 CET)" (scheduled at 2026-01-22 02:47:07.461608+01:00) 2026-01-22 02:47:07,461 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:07 CET)" executed successfully 2026-01-22 02:47:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:08 CET)" (scheduled at 2026-01-22 02:47:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:47:09,152 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:48:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76735 | 4799.36 | | H4 | uptrend | 400.95 | 45.4796 | 2.73524 | 4799.36 | | H1 | uptrend | 334.31 | 33.5149 | 1.68064 | 4799.47 | | M30 | uptrend | 464.85 | 25.5399 | 1.78082 | 4799.49 | | M15 | uptrend | 285.88 | 17.0068 | 0.729296 | 4799.49 | | M5 | downtrend | 398.49 | 9.1982 | -0.549807 | 4799.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.24% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141068.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:47:14,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:24,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:34,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:44,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:47:54,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:03,683 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:03 CET)" (scheduled at 2026-01-22 02:48:03.329776+01:00) 2026-01-22 02:48:03,683 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:03 CET)" executed successfully 2026-01-22 02:48:04,609 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:07 CET)" (scheduled at 2026-01-22 02:48:07.461608+01:00) 2026-01-22 02:48:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:07 CET)" executed successfully 2026-01-22 02:48:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:08 CET)" (scheduled at 2026-01-22 02:48:08.847423+01:00) 2026-01-22 02:48:09,091 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:49:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.73 | 85.153 | 9.76783 | 4801.4 | | H4 | uptrend | 401.02 | 45.4796 | 2.73573 | 4801.41 | | H1 | uptrend | 334.4 | 33.5149 | 1.68111 | 4801.45 | | M30 | uptrend | 464.97 | 25.5399 | 1.78128 | 4801.45 | | M15 | uptrend | 285.86 | 17.019 | 0.729759 | 4801.45 | | M5 | downtrend | 397.64 | 9.2103 | -0.549356 | 4801.45 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.25% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141104.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:48:14,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:24,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:34,661 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:44,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:48:54,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:03,784 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:03 CET)" (scheduled at 2026-01-22 02:49:03.329776+01:00) 2026-01-22 02:49:03,784 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:03 CET)" executed successfully 2026-01-22 02:49:04,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:07 CET)" (scheduled at 2026-01-22 02:49:07.461608+01:00) 2026-01-22 02:49:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:07 CET)" executed successfully 2026-01-22 02:49:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:08 CET)" (scheduled at 2026-01-22 02:49:08.847423+01:00) 2026-01-22 02:49:09,001 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:50:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.71 | 85.153 | 9.7676 | 4800.42 | | H4 | uptrend | 400.99 | 45.4796 | 2.73549 | 4800.42 | | H1 | uptrend | 334.35 | 33.5149 | 1.68086 | 4800.42 | | M30 | uptrend | 464.9 | 25.5399 | 1.78104 | 4800.42 | | M15 | uptrend | 285.77 | 17.019 | 0.729516 | 4800.42 | | M5 | downtrend | 397.81 | 9.2103 | -0.549599 | 4800.42 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.24% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141072.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 70.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:49:14,750 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:24,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:34,787 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:44,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:49:54,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:03 CET)" (scheduled at 2026-01-22 02:50:03.329776+01:00) 2026-01-22 02:50:03,331 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:03 CET)" executed successfully 2026-01-22 02:50:04,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:07 CET)" (scheduled at 2026-01-22 02:50:07.461608+01:00) 2026-01-22 02:50:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:07 CET)" executed successfully 2026-01-22 02:50:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:08 CET)" (scheduled at 2026-01-22 02:50:08.847423+01:00) 2026-01-22 02:50:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:51:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.71 | 85.153 | 9.76764 | 4800.56 | | H4 | uptrend | 400.99 | 45.4796 | 2.73553 | 4800.56 | | H1 | uptrend | 334.36 | 33.5149 | 1.6809 | 4800.56 | | M30 | uptrend | 464.91 | 25.5399 | 1.78107 | 4800.56 | | M15 | uptrend | 285.78 | 17.019 | 0.729549 | 4800.56 | | M5 | downtrend | 423.32 | 8.6139 | -0.546969 | 4800.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.9% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140566.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:50:14,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:24,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:34,909 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:44,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:50:54,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:03 CET)" (scheduled at 2026-01-22 02:51:03.329776+01:00) 2026-01-22 02:51:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:03 CET)" executed successfully 2026-01-22 02:51:04,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:07 CET)" (scheduled at 2026-01-22 02:51:07.461608+01:00) 2026-01-22 02:51:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:07 CET)" executed successfully 2026-01-22 02:51:09,025 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:08 CET)" (scheduled at 2026-01-22 02:51:08.847423+01:00) 2026-01-22 02:51:09,164 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:52:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.153 | 9.76748 | 4799.9 | | H4 | uptrend | 400.97 | 45.4796 | 2.73537 | 4799.9 | | H1 | uptrend | 334.33 | 33.5149 | 1.68074 | 4799.9 | | M30 | uptrend | 464.87 | 25.5399 | 1.78091 | 4799.9 | | M15 | uptrend | 285.72 | 17.019 | 0.729393 | 4799.9 | | M5 | downtrend | 416.6 | 8.7553 | -0.547124 | 4799.9 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.99% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140690.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:51:14,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:25,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:35,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:45,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:51:55,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:03 CET)" (scheduled at 2026-01-22 02:52:03.329776+01:00) 2026-01-22 02:52:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:03 CET)" executed successfully 2026-01-22 02:52:05,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:07 CET)" (scheduled at 2026-01-22 02:52:07.461608+01:00) 2026-01-22 02:52:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:07 CET)" executed successfully 2026-01-22 02:52:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:08 CET)" (scheduled at 2026-01-22 02:52:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:52:09,173 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:53:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.72 | 85.153 | 9.76776 | 4801.1 | | H4 | uptrend | 401.01 | 45.4796 | 2.73565 | 4801.1 | | H1 | uptrend | 334.38 | 33.5149 | 1.68102 | 4801.1 | | M30 | uptrend | 464.95 | 25.5399 | 1.7812 | 4801.11 | | M15 | uptrend | 285.83 | 17.019 | 0.729679 | 4801.11 | | M5 | downtrend | 414.73 | 8.7903 | -0.546839 | 4801.11 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.02% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140755.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:52:15,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:25,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:35,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:45,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:52:55,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:03 CET)" (scheduled at 2026-01-22 02:53:03.329776+01:00) 2026-01-22 02:53:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:03 CET)" executed successfully 2026-01-22 02:53:05,218 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:07,665 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:07 CET)" (scheduled at 2026-01-22 02:53:07.461608+01:00) 2026-01-22 02:53:07,665 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:07 CET)" executed successfully 2026-01-22 02:53:09,024 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:08 CET)" (scheduled at 2026-01-22 02:53:08.847423+01:00) 2026-01-22 02:53:09,201 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.72 | 85.153 | 9.76773 | 4800.97 | | H4 | uptrend | 401 | 45.4796 | 2.73562 | 4800.97 | | H1 | uptrend | 334.38 | 33.5149 | 1.68099 | 4800.97 | | M30 | uptrend | 464.94 | 25.5399 | 1.78117 | 4800.97 | | M15 | uptrend | 285.82 | 17.019 | 0.729645 | 4800.97 | | M5 | downtrend | 414.75 | 8.7903 | -0.546865 | 4801 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.01% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140737.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:53:15,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:25,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:35,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:45,305 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:53:55,321 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:55:03 CET)" (scheduled at 2026-01-22 02:54:03.329776+01:00) 2026-01-22 02:54:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:55:03 CET)" executed successfully 2026-01-22 02:54:05,349 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:07,485 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:55:07 CET)" (scheduled at 2026-01-22 02:54:07.461608+01:00) 2026-01-22 02:54:07,485 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:55:07 CET)" executed successfully 2026-01-22 02:54:08,926 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:54:08 CET)" (scheduled at 2026-01-22 02:54:08.847423+01:00) 2026-01-22 02:54:09,109 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:55:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.78 | 85.153 | 9.76851 | 4804.25 | | H4 | uptrend | 401.12 | 45.4796 | 2.7364 | 4804.25 | | H1 | uptrend | 334.53 | 33.5149 | 1.68177 | 4804.25 | | M30 | uptrend | 465.14 | 25.5399 | 1.78194 | 4804.25 | | M15 | uptrend | 285.15 | 17.0768 | 0.730418 | 4804.24 | | M5 | downtrend | 408.3 | 8.9167 | -0.546099 | 4804.24 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.32) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.1% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140872.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 72.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:54:15,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:25,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:35,404 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:45,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:54:55,451 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:03 CET)" (scheduled at 2026-01-22 02:55:03.329776+01:00) 2026-01-22 02:55:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:03 CET)" executed successfully 2026-01-22 02:55:05,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:07 CET)" (scheduled at 2026-01-22 02:55:07.461608+01:00) 2026-01-22 02:55:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:07 CET)" executed successfully 2026-01-22 02:55:09,454 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:08 CET)" (scheduled at 2026-01-22 02:55:08.847423+01:00) 2026-01-22 02:55:09,608 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:56:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.79 | 85.153 | 9.76858 | 4804.54 | | H4 | uptrend | 401.13 | 45.4796 | 2.73647 | 4804.54 | | H1 | uptrend | 334.54 | 33.5149 | 1.68184 | 4804.54 | | M30 | uptrend | 464.86 | 25.5563 | 1.78201 | 4804.54 | | M15 | uptrend | 284.83 | 17.0976 | 0.730489 | 4804.54 | | M5 | downtrend | 433.3 | 8.3298 | -0.541398 | 4804.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.32) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.76% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140326.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 02:55:15,497 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:25,520 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:35,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:45,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:55:55,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:03 CET)" (scheduled at 2026-01-22 02:56:03.329776+01:00) 2026-01-22 02:56:03,330 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:03 CET)" executed successfully 2026-01-22 02:56:05,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:07,876 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:07 CET)" (scheduled at 2026-01-22 02:56:07.461608+01:00) 2026-01-22 02:56:07,876 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:07 CET)" executed successfully 2026-01-22 02:56:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:08 CET)" (scheduled at 2026-01-22 02:56:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 02:56:09,104 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:57:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.77 | 85.153 | 9.76833 | 4803.49 | | H4 | uptrend | 401.09 | 45.4796 | 2.73622 | 4803.49 | | H1 | uptrend | 334.5 | 33.5149 | 1.6816 | 4803.54 | | M30 | uptrend | 464.8 | 25.5563 | 1.78177 | 4803.54 | | M15 | uptrend | 284.74 | 17.0976 | 0.730255 | 4803.55 | | M5 | downtrend | 430.35 | 8.3905 | -0.541632 | 4803.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.30) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.8% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140369.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 70.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:56:15,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:25,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:35,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:45,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:56:55,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:03,954 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:03 CET)" (scheduled at 2026-01-22 02:57:03.329776+01:00) 2026-01-22 02:57:03,954 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:03 CET)" executed successfully 2026-01-22 02:57:05,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:07 CET)" (scheduled at 2026-01-22 02:57:07.461608+01:00) 2026-01-22 02:57:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:07 CET)" executed successfully 2026-01-22 02:57:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:08 CET)" (scheduled at 2026-01-22 02:57:08.847423+01:00) 2026-01-22 02:57:08,999 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.76795 | 4801.9 | | H4 | uptrend | 401.04 | 45.4796 | 2.73585 | 4801.95 | | H1 | uptrend | 334.42 | 33.5149 | 1.68122 | 4801.95 | | M30 | uptrend | 464.7 | 25.5563 | 1.7814 | 4801.97 | | M15 | uptrend | 284.6 | 17.0976 | 0.729882 | 4801.97 | | M5 | downtrend | 424.36 | 8.5148 | -0.542006 | 4801.97 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140463.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:57:15,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:25,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:35,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:45,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:57:55,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:03 CET)" (scheduled at 2026-01-22 02:58:03.329776+01:00) 2026-01-22 02:58:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:03 CET)" executed successfully 2026-01-22 02:58:05,908 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:07,731 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:07 CET)" (scheduled at 2026-01-22 02:58:07.461608+01:00) 2026-01-22 02:58:07,731 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:07 CET)" executed successfully 2026-01-22 02:58:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:08 CET)" (scheduled at 2026-01-22 02:58:08.847423+01:00) 2026-01-22 02:58:08,984 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 02:59:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.73 | 85.153 | 9.7679 | 4801.68 | | H4 | uptrend | 401.03 | 45.4796 | 2.73579 | 4801.68 | | H1 | uptrend | 334.41 | 33.5149 | 1.68116 | 4801.68 | | M30 | uptrend | 464.68 | 25.5563 | 1.78133 | 4801.65 | | M15 | uptrend | 284.57 | 17.0976 | 0.729806 | 4801.65 | | M5 | downtrend | 416.53 | 8.6762 | -0.542081 | 4801.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.25) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.99% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140622.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:58:15,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:25,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:35,976 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:45,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:58:56,006 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:03 CET)" (scheduled at 2026-01-22 02:59:03.329776+01:00) 2026-01-22 02:59:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:03 CET)" executed successfully 2026-01-22 02:59:06,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:07 CET)" (scheduled at 2026-01-22 02:59:07.461608+01:00) 2026-01-22 02:59:07,481 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:07 CET)" executed successfully 2026-01-22 02:59:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:08 CET)" (scheduled at 2026-01-22 02:59:08.847423+01:00) 2026-01-22 02:59:09,000 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:00:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 27%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76739 | 4799.5 | | H4 | uptrend | 400.95 | 45.4796 | 2.73528 | 4799.5 | | H1 | uptrend | 334.31 | 33.5149 | 1.68065 | 4799.5 | | M30 | uptrend | 464.55 | 25.5563 | 1.78082 | 4799.5 | | M15 | uptrend | 284.37 | 17.0976 | 0.729298 | 4799.5 | | M5 | downtrend | 416.78 | 8.6791 | -0.542589 | 4799.5 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 619.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.98% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 140571.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 70.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 02:59:16,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:26,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:36,086 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:46,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 02:59:56,124 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:00,024 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 03:30:00 CET)" (scheduled at 2026-01-22 03:00:00+01:00) 2026-01-22 03:00:00,073 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 03:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 03:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 33.52 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 03:00:03,770 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:03 CET)" (scheduled at 2026-01-22 03:00:03.329776+01:00) 2026-01-22 03:00:03,770 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:03 CET)" executed successfully 2026-01-22 03:00:06,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:07 CET)" (scheduled at 2026-01-22 03:00:07.461608+01:00) 2026-01-22 03:00:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:07 CET)" executed successfully 2026-01-22 03:00:08,855 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:08 CET)" (scheduled at 2026-01-22 03:00:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:00:09,258 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:01:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76697 | 4797.74 | | H4 | uptrend | 434.54 | 42.3096 | 2.75777 | 4797.74 | | H1 | uptrend | 361.4 | 31.1996 | 1.69133 | 4797.74 | | M30 | uptrend | 492.81 | 23.8094 | 1.76004 | 4797.74 | | M15 | uptrend | 293.51 | 16.0219 | 0.70538 | 4797.74 | | M5 | downtrend | 436.6 | 8.2312 | -0.539057 | 4797.74 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.61) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.93% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146941.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:00:16,180 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:26,202 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:36,221 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:46,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:00:56,258 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:04,122 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:03 CET)" (scheduled at 2026-01-22 03:01:03.329776+01:00) 2026-01-22 03:01:04,122 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:03 CET)" executed successfully 2026-01-22 03:01:06,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:07,491 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:07 CET)" (scheduled at 2026-01-22 03:01:07.461608+01:00) 2026-01-22 03:01:07,492 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:07 CET)" executed successfully 2026-01-22 03:01:09,118 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:08 CET)" (scheduled at 2026-01-22 03:01:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:01:09,430 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:02:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.7669 | 4797.47 | | H4 | uptrend | 433.36 | 42.4232 | 2.7577 | 4797.47 | | H1 | uptrend | 360.08 | 31.3132 | 1.69127 | 4797.47 | | M30 | uptrend | 490.46 | 23.923 | 1.75998 | 4797.47 | | M15 | uptrend | 291.41 | 16.1354 | 0.705316 | 4797.47 | | M5 | downtrend | 430.7 | 8.3448 | -0.53912 | 4797.47 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.99% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146570.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:01:16,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:26,319 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:36,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:46,370 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:01:56,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:03 CET)" (scheduled at 2026-01-22 03:02:03.329776+01:00) 2026-01-22 03:02:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:03 CET)" executed successfully 2026-01-22 03:02:06,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:07,492 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:07 CET)" (scheduled at 2026-01-22 03:02:07.461608+01:00) 2026-01-22 03:02:07,496 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:07 CET)" executed successfully 2026-01-22 03:02:09,376 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:08 CET)" (scheduled at 2026-01-22 03:02:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:02:09,741 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:03:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.53 | 85.153 | 9.76529 | 4790.62 | | H4 | uptrend | 429.4 | 42.7896 | 2.75606 | 4790.53 | | H1 | uptrend | 355.53 | 31.6825 | 1.68961 | 4790.48 | | M30 | uptrend | 482.55 | 24.2923 | 1.75833 | 4790.48 | | M15 | uptrend | 284.2 | 16.5062 | 0.70366 | 4790.46 | | M5 | downtrend | 413.65 | 8.7155 | -0.540777 | 4790.46 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.48) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.18% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145278.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 65.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:02:16,430 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:26,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:36,477 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:46,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:02:56,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:03,699 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:03 CET)" (scheduled at 2026-01-22 03:03:03.329776+01:00) 2026-01-22 03:03:03,699 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:03 CET)" executed successfully 2026-01-22 03:03:06,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:07 CET)" (scheduled at 2026-01-22 03:03:07.461608+01:00) 2026-01-22 03:03:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:07 CET)" executed successfully 2026-01-22 03:03:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:08 CET)" (scheduled at 2026-01-22 03:03:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:03:09,343 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:04:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.7659 | 4793.23 | | H4 | uptrend | 429.25 | 42.8139 | 2.75671 | 4793.26 | | H1 | uptrend | 355.43 | 31.7039 | 1.69027 | 4793.26 | | M30 | uptrend | 482.3 | 24.3137 | 1.75896 | 4793.15 | | M15 | uptrend | 284.11 | 16.5262 | 0.704295 | 4793.15 | | M5 | downtrend | 412.23 | 8.7355 | -0.540151 | 4793.11 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.45) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.19% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145258.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 66.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:03:16,571 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:26,586 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:36,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:46,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:03:56,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:03,384 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:03 CET)" (scheduled at 2026-01-22 03:04:03.329776+01:00) 2026-01-22 03:04:03,384 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:03 CET)" executed successfully 2026-01-22 03:04:06,924 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:07,937 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:07 CET)" (scheduled at 2026-01-22 03:04:07.461608+01:00) 2026-01-22 03:04:07,939 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:07 CET)" executed successfully 2026-01-22 03:04:08,851 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:08 CET)" (scheduled at 2026-01-22 03:04:08.847423+01:00) 2026-01-22 03:04:09,085 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:05:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76588 | 4793.13 | | H4 | uptrend | 429.25 | 42.8139 | 2.75668 | 4793.13 | | H1 | uptrend | 355.42 | 31.7039 | 1.69024 | 4793.13 | | M30 | uptrend | 482.29 | 24.3137 | 1.75895 | 4793.13 | | M15 | uptrend | 284.11 | 16.5262 | 0.704291 | 4793.13 | | M5 | downtrend | 412.22 | 8.7355 | -0.540146 | 4793.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.19% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145257.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 66.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:04:16,934 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:26,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:36,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:46,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:04:57,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:03 CET)" (scheduled at 2026-01-22 03:05:03.329776+01:00) 2026-01-22 03:05:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:03 CET)" executed successfully 2026-01-22 03:05:07,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:07,505 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:07 CET)" (scheduled at 2026-01-22 03:05:07.461608+01:00) 2026-01-22 03:05:07,505 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:07 CET)" executed successfully 2026-01-22 03:05:09,609 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:08 CET)" (scheduled at 2026-01-22 03:05:08.847423+01:00) 2026-01-22 03:05:09,737 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76508 | 4789.75 | | H4 | uptrend | 428.46 | 42.8803 | 2.75588 | 4789.76 | | H1 | uptrend | 354.51 | 31.7703 | 1.68944 | 4789.76 | | M30 | uptrend | 480.76 | 24.3801 | 1.75816 | 4789.76 | | M15 | uptrend | 282.65 | 16.5926 | 0.703494 | 4789.76 | | M5 | downtrend | 435.35 | 8.2589 | -0.539335 | 4789.81 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.09) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144463.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:05:17,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:27,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:37,156 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:47,183 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:05:57,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:03 CET)" (scheduled at 2026-01-22 03:06:03.329776+01:00) 2026-01-22 03:06:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:03 CET)" executed successfully 2026-01-22 03:06:07,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:07,970 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:07 CET)" (scheduled at 2026-01-22 03:06:07.461608+01:00) 2026-01-22 03:06:07,972 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:07 CET)" executed successfully 2026-01-22 03:06:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:08 CET)" (scheduled at 2026-01-22 03:06:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:06:09,158 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:07:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.55 | 85.153 | 9.76561 | 4791.97 | | H4 | uptrend | 428.54 | 42.8803 | 2.7564 | 4791.97 | | H1 | uptrend | 354.62 | 31.7703 | 1.68997 | 4791.97 | | M30 | uptrend | 480.91 | 24.3801 | 1.75868 | 4791.97 | | M15 | uptrend | 282.86 | 16.5926 | 0.704017 | 4791.97 | | M5 | downtrend | 424.84 | 8.4554 | -0.538825 | 4791.97 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.02% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144716.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:06:17,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:27,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:37,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:47,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:06:57,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:03,589 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:03 CET)" (scheduled at 2026-01-22 03:07:03.329776+01:00) 2026-01-22 03:07:03,589 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:03 CET)" executed successfully 2026-01-22 03:07:07,383 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:08,168 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:07 CET)" (scheduled at 2026-01-22 03:07:07.461608+01:00) 2026-01-22 03:07:08,170 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:07 CET)" executed successfully 2026-01-22 03:07:09,008 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:08 CET)" (scheduled at 2026-01-22 03:07:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:07:09,299 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:08:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.76472 | 4788.23 | | H4 | uptrend | 427.1 | 43.0118 | 2.75552 | 4788.24 | | H1 | uptrend | 352.98 | 31.9017 | 1.68912 | 4788.39 | | M30 | uptrend | 478.1 | 24.5115 | 1.75783 | 4788.39 | | M15 | uptrend | 280.31 | 16.724 | 0.703187 | 4788.46 | | M5 | downtrend | 418.87 | 8.5889 | -0.539654 | 4788.46 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.53) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.08% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144241.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:07:17,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:27,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:37,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:47,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:07:57,512 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:03 CET)" (scheduled at 2026-01-22 03:08:03.329776+01:00) 2026-01-22 03:08:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:03 CET)" executed successfully 2026-01-22 03:08:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:07 CET)" (scheduled at 2026-01-22 03:08:07.461608+01:00) 2026-01-22 03:08:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:07 CET)" executed successfully 2026-01-22 03:08:07,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:08 CET)" (scheduled at 2026-01-22 03:08:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:08:09,169 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:09:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76509 | 4789.8 | | H4 | uptrend | 427.15 | 43.0118 | 2.75589 | 4789.8 | | H1 | uptrend | 353.05 | 31.9017 | 1.68945 | 4789.79 | | M30 | uptrend | 478.19 | 24.5115 | 1.75817 | 4789.8 | | M15 | uptrend | 280.44 | 16.724 | 0.703504 | 4789.8 | | M5 | downtrend | 418.63 | 8.5889 | -0.539338 | 4789.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.57) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.09% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144280.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:08:17,583 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:27,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:37,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:47,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:08:57,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:03,822 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:03 CET)" (scheduled at 2026-01-22 03:09:03.329776+01:00) 2026-01-22 03:09:03,822 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:03 CET)" executed successfully 2026-01-22 03:09:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:07 CET)" (scheduled at 2026-01-22 03:09:07.461608+01:00) 2026-01-22 03:09:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:07 CET)" executed successfully 2026-01-22 03:09:07,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:08 CET)" (scheduled at 2026-01-22 03:09:08.847423+01:00) 2026-01-22 03:09:09,004 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:10:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.53 | 85.153 | 9.76527 | 4790.54 | | H4 | uptrend | 427.18 | 43.0118 | 2.75607 | 4790.54 | | H1 | uptrend | 353.09 | 31.9017 | 1.68963 | 4790.54 | | M30 | uptrend | 478.23 | 24.5115 | 1.75834 | 4790.54 | | M15 | uptrend | 280.51 | 16.724 | 0.703679 | 4790.54 | | M5 | downtrend | 418.5 | 8.5889 | -0.539167 | 4790.52 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.59) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.09% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144293.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.1% 🎯 Enhanced Score: 65.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:09:17,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:27,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:37,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:47,815 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:09:57,836 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:03 CET)" (scheduled at 2026-01-22 03:10:03.329776+01:00) 2026-01-22 03:10:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:03 CET)" executed successfully 2026-01-22 03:10:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:07 CET)" (scheduled at 2026-01-22 03:10:07.461608+01:00) 2026-01-22 03:10:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:07 CET)" executed successfully 2026-01-22 03:10:07,883 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:08,868 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:08 CET)" (scheduled at 2026-01-22 03:10:08.847423+01:00) 2026-01-22 03:10:09,011 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:11:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76503 | 4789.52 | | H4 | uptrend | 427.14 | 43.0118 | 2.75583 | 4789.52 | | H1 | uptrend | 353.04 | 31.9017 | 1.68939 | 4789.52 | | M30 | uptrend | 478.17 | 24.5115 | 1.7581 | 4789.52 | | M15 | uptrend | 280.41 | 16.724 | 0.703438 | 4789.52 | | M5 | downtrend | 446.76 | 8.0397 | -0.538778 | 4789.53 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.56) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.72% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143708.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:10:17,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:27,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:37,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:47,968 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:10:57,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:03 CET)" (scheduled at 2026-01-22 03:11:03.329776+01:00) 2026-01-22 03:11:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:03 CET)" executed successfully 2026-01-22 03:11:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:07 CET)" (scheduled at 2026-01-22 03:11:07.461608+01:00) 2026-01-22 03:11:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:07 CET)" executed successfully 2026-01-22 03:11:08,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:08 CET)" (scheduled at 2026-01-22 03:11:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect...
2026-01-22 03:11:12,000 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:12:08 CET)" executed successfully
⚠️ Keine Daten für D1 ❌ Signal-Analyse fehlgeschlagen
2026-01-22 03:11:18,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:28,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:38,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:48,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:11:58,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:03 CET)" (scheduled at 2026-01-22 03:12:03.329776+01:00) 2026-01-22 03:12:03,336 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:03 CET)" executed successfully 2026-01-22 03:12:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:07 CET)" (scheduled at 2026-01-22 03:12:07.461608+01:00) 2026-01-22 03:12:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:07 CET)" executed successfully 2026-01-22 03:12:08,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:08 CET)" (scheduled at 2026-01-22 03:12:08.847423+01:00) 2026-01-22 03:12:09,057 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76605 | 4793.85 | | H4 | uptrend | 427.3 | 43.0118 | 2.75685 | 4793.85 | | H1 | uptrend | 353.25 | 31.9017 | 1.69041 | 4793.85 | | M30 | uptrend | 478.45 | 24.5115 | 1.75912 | 4793.85 | | M15 | uptrend | 280.81 | 16.724 | 0.704447 | 4793.79 | | M5 | downtrend | 427.72 | 8.3819 | -0.53776 | 4793.84 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.97% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144166.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:12:18,196 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:28,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:38,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:48,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:12:58,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:03 CET)" (scheduled at 2026-01-22 03:13:03.329776+01:00) 2026-01-22 03:13:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:03 CET)" executed successfully 2026-01-22 03:13:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:07 CET)" (scheduled at 2026-01-22 03:13:07.461608+01:00) 2026-01-22 03:13:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:07 CET)" executed successfully 2026-01-22 03:13:08,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:08 CET)" (scheduled at 2026-01-22 03:13:08.847423+01:00) 2026-01-22 03:13:09,059 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76619 | 4794.46 | | H4 | uptrend | 427.32 | 43.0118 | 2.75699 | 4794.46 | | H1 | uptrend | 353.28 | 31.9017 | 1.69056 | 4794.46 | | M30 | uptrend | 478.49 | 24.5115 | 1.75927 | 4794.46 | | M15 | uptrend | 280.88 | 16.724 | 0.704605 | 4794.46 | | M5 | downtrend | 422.03 | 8.4926 | -0.537614 | 4794.46 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.69) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.05% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144299.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:13:18,350 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:28,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:38,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:48,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:13:58,448 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:03 CET)" (scheduled at 2026-01-22 03:14:03.329776+01:00) 2026-01-22 03:14:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:03 CET)" executed successfully 2026-01-22 03:14:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:07 CET)" (scheduled at 2026-01-22 03:14:07.461608+01:00) 2026-01-22 03:14:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:07 CET)" executed successfully 2026-01-22 03:14:08,473 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:08,886 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:08 CET)" (scheduled at 2026-01-22 03:14:08.847423+01:00) 2026-01-22 03:14:09,107 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:15:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.76595 | 4793.44 | | H4 | uptrend | 427.29 | 43.0118 | 2.75675 | 4793.42 | | H1 | uptrend | 353.23 | 31.9017 | 1.69031 | 4793.42 | | M30 | uptrend | 478.42 | 24.5115 | 1.75902 | 4793.42 | | M15 | uptrend | 280.78 | 16.724 | 0.704359 | 4793.42 | | M5 | downtrend | 422.22 | 8.4926 | -0.537859 | 4793.42 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.04% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144266.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.0% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:14:18,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:28,517 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:38,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:48,566 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:14:58,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:03 CET)" (scheduled at 2026-01-22 03:15:03.329776+01:00) 2026-01-22 03:15:03,330 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:03 CET)" executed successfully 2026-01-22 03:15:07,676 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:07 CET)" (scheduled at 2026-01-22 03:15:07.461608+01:00) 2026-01-22 03:15:07,676 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:07 CET)" executed successfully 2026-01-22 03:15:08,612 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:08 CET)" (scheduled at 2026-01-22 03:15:08.847423+01:00) 2026-01-22 03:15:09,036 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76605 | 4793.84 | | H4 | uptrend | 427.3 | 43.0118 | 2.75685 | 4793.84 | | H1 | uptrend | 353.25 | 31.9017 | 1.69041 | 4793.84 | | M30 | uptrend | 478.45 | 24.5115 | 1.75912 | 4793.84 | | M15 | uptrend | 291.41 | 15.5609 | 0.680199 | 4793.84 | | M5 | downtrend | 451 | 7.9174 | -0.535618 | 4793.84 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144301.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 66.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:15:18,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:28,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:38,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:48,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:15:58,724 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:03 CET)" (scheduled at 2026-01-22 03:16:03.329776+01:00) 2026-01-22 03:16:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:03 CET)" executed successfully 2026-01-22 03:16:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:07 CET)" (scheduled at 2026-01-22 03:16:07.461608+01:00) 2026-01-22 03:16:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:07 CET)" executed successfully 2026-01-22 03:16:08,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:08,892 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:08 CET)" (scheduled at 2026-01-22 03:16:08.847423+01:00) 2026-01-22 03:16:09,053 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:17:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.76593 | 4793.35 | | H4 | uptrend | 427.28 | 43.0118 | 2.75673 | 4793.35 | | H1 | uptrend | 353.23 | 31.9017 | 1.69029 | 4793.35 | | M30 | uptrend | 478.42 | 24.5115 | 1.759 | 4793.35 | | M15 | uptrend | 290.52 | 15.6059 | 0.680083 | 4793.35 | | M5 | downtrend | 448.55 | 7.9624 | -0.535734 | 4793.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.71% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144307.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 66.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:16:18,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:28,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:38,831 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:48,855 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:16:58,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:03,400 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:03 CET)" (scheduled at 2026-01-22 03:17:03.329776+01:00) 2026-01-22 03:17:03,400 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:03 CET)" executed successfully 2026-01-22 03:17:07,665 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:07 CET)" (scheduled at 2026-01-22 03:17:07.461608+01:00) 2026-01-22 03:17:07,665 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:07 CET)" executed successfully 2026-01-22 03:17:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:08 CET)" (scheduled at 2026-01-22 03:17:08.847423+01:00) 2026-01-22 03:17:08,965 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:09,005 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76576 | 4792.61 | | H4 | uptrend | 427.26 | 43.0118 | 2.75656 | 4792.61 | | H1 | uptrend | 353.19 | 31.9017 | 1.69012 | 4792.61 | | M30 | uptrend | 478.37 | 24.5115 | 1.75883 | 4792.61 | | M15 | uptrend | 287.62 | 15.7594 | 0.679908 | 4792.61 | | M5 | downtrend | 440.21 | 8.116 | -0.535909 | 4792.61 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.81% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144289.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 66.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:17:19,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:29,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:39,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:49,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:17:59,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:18:03,347 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:03 CET)" (scheduled at 2026-01-22 03:18:03.329776+01:00) 2026-01-22 03:18:03,347 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:03 CET)" executed successfully 2026-01-22 03:18:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:07 CET)" (scheduled at 2026-01-22 03:18:07.461608+01:00) 2026-01-22 03:18:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:07 CET)" executed successfully 2026-01-22 03:18:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:08 CET)" (scheduled at 2026-01-22 03:18:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:18:09,087 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:19:08 CET)" executed successfully 2026-01-22 03:18:09,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76576 | 4792.64 | | H4 | uptrend | 427.26 | 43.0118 | 2.75656 | 4792.64 | | H1 | uptrend | 353.19 | 31.9017 | 1.69013 | 4792.64 | | M30 | uptrend | 478.37 | 24.5115 | 1.75884 | 4792.64 | | M15 | uptrend | 287.58 | 15.7616 | 0.679915 | 4792.64 | | M5 | downtrend | 440.08 | 8.1181 | -0.535897 | 4792.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.81% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144287.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 66.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:18:19,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:18:29,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:18:39,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:18:49,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:18:59,283 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:03 CET)" (scheduled at 2026-01-22 03:19:03.329776+01:00) 2026-01-22 03:19:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:03 CET)" executed successfully 2026-01-22 03:19:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:07 CET)" (scheduled at 2026-01-22 03:19:07.461608+01:00) 2026-01-22 03:19:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:07 CET)" executed successfully 2026-01-22 03:19:09,053 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:08 CET)" (scheduled at 2026-01-22 03:19:08.847423+01:00) 2026-01-22 03:19:09,197 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:20:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.76596 | 4793.49 | | H4 | uptrend | 427.29 | 43.0118 | 2.75676 | 4793.49 | | H1 | uptrend | 353.24 | 31.9017 | 1.69033 | 4793.49 | | M30 | uptrend | 478.42 | 24.5115 | 1.75904 | 4793.49 | | M15 | uptrend | 286.68 | 15.8159 | 0.680109 | 4793.46 | | M5 | downtrend | 437.01 | 8.1724 | -0.535708 | 4793.46 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.85% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144308.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 66.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:19:09,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:19,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:29,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:39,395 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:49,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:19:59,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:20:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:03 CET)" (scheduled at 2026-01-22 03:20:03.329776+01:00) 2026-01-22 03:20:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:03 CET)" executed successfully 2026-01-22 03:20:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:07 CET)" (scheduled at 2026-01-22 03:20:07.461608+01:00) 2026-01-22 03:20:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:07 CET)" executed successfully 2026-01-22 03:20:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:08 CET)" (scheduled at 2026-01-22 03:20:08.847423+01:00) 2026-01-22 03:20:09,026 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.53 | 85.153 | 9.76534 | 4790.86 | | H4 | uptrend | 427.19 | 43.0118 | 2.75614 | 4790.86 | | H1 | uptrend | 353.11 | 31.9017 | 1.68971 | 4790.87 | | M30 | uptrend | 478.26 | 24.5115 | 1.75842 | 4790.87 | | M15 | uptrend | 285.79 | 15.8509 | 0.679497 | 4790.87 | | M5 | downtrend | 466.08 | 7.6484 | -0.534716 | 4790.87 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.60) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143642.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:20:09,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:20:19,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:20:30,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:20:40,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:20:50,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:00,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:03 CET)" (scheduled at 2026-01-22 03:21:03.329776+01:00) 2026-01-22 03:21:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:03 CET)" executed successfully 2026-01-22 03:21:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:07 CET)" (scheduled at 2026-01-22 03:21:07.461608+01:00) 2026-01-22 03:21:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:07 CET)" executed successfully 2026-01-22 03:21:08,983 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:08 CET)" (scheduled at 2026-01-22 03:21:08.847423+01:00) 2026-01-22 03:21:09,160 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76601 | 4793.69 | | H4 | uptrend | 427.3 | 43.0118 | 2.75681 | 4793.69 | | H1 | uptrend | 353.25 | 31.9017 | 1.69037 | 4793.69 | | M30 | uptrend | 478.44 | 24.5115 | 1.75909 | 4793.69 | | M15 | uptrend | 284.95 | 15.913 | 0.680163 | 4793.69 | | M5 | downtrend | 450.03 | 7.9113 | -0.534049 | 4793.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.68% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143952.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 66.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:21:10,152 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:20,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:30,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:40,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:21:50,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:00,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:03 CET)" (scheduled at 2026-01-22 03:22:03.329776+01:00) 2026-01-22 03:22:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:03 CET)" executed successfully 2026-01-22 03:22:07,587 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:07 CET)" (scheduled at 2026-01-22 03:22:07.461608+01:00) 2026-01-22 03:22:07,587 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:07 CET)" executed successfully 2026-01-22 03:22:08,987 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:08 CET)" (scheduled at 2026-01-22 03:22:08.847423+01:00) 2026-01-22 03:22:09,156 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:23:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76571 | 4792.39 | | H4 | uptrend | 427.25 | 43.0118 | 2.7565 | 4792.39 | | H1 | uptrend | 353.18 | 31.9017 | 1.69007 | 4792.39 | | M30 | uptrend | 478.35 | 24.5115 | 1.75878 | 4792.39 | | M15 | uptrend | 283.94 | 15.9623 | 0.679856 | 4792.39 | | M5 | downtrend | 443.92 | 8.0248 | -0.534357 | 4792.39 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.76% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144002.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:22:10,304 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:20,318 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:30,355 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:40,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:22:50,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:00,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:03 CET)" (scheduled at 2026-01-22 03:23:03.329776+01:00) 2026-01-22 03:23:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:03 CET)" executed successfully 2026-01-22 03:23:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:07 CET)" (scheduled at 2026-01-22 03:23:07.461608+01:00) 2026-01-22 03:23:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:07 CET)" executed successfully 2026-01-22 03:23:08,927 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:08 CET)" (scheduled at 2026-01-22 03:23:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76574 | 4792.54 | | H4 | uptrend | 427.25 | 43.0118 | 2.75654 | 4792.54 | | H1 | uptrend | 353.19 | 31.9017 | 1.6901 | 4792.54 | | M30 | uptrend | 478.36 | 24.5115 | 1.75881 | 4792.54 | | M15 | uptrend | 283.96 | 15.9623 | 0.679892 | 4792.54 | | M5 | downtrend | 443.89 | 8.0248 | -0.534321 | 4792.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.76% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144005.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 03:23:09,130 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:24:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:23:10,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:20,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:30,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:40,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:23:50,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:00,574 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:03 CET)" (scheduled at 2026-01-22 03:24:03.329776+01:00) 2026-01-22 03:24:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:03 CET)" executed successfully 2026-01-22 03:24:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:07 CET)" (scheduled at 2026-01-22 03:24:07.461608+01:00) 2026-01-22 03:24:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:07 CET)" executed successfully 2026-01-22 03:24:08,895 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:08 CET)" (scheduled at 2026-01-22 03:24:08.847423+01:00) 2026-01-22 03:24:09,089 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.53 | 85.153 | 9.7653 | 4790.7 | | H4 | uptrend | 427.19 | 43.0118 | 2.7561 | 4790.7 | | H1 | uptrend | 353.1 | 31.9017 | 1.68967 | 4790.7 | | M30 | uptrend | 478.24 | 24.5115 | 1.75838 | 4790.69 | | M15 | uptrend | 283.35 | 15.9866 | 0.679462 | 4790.72 | | M5 | downtrend | 442.91 | 8.0491 | -0.534751 | 4790.72 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.59) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.77% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143964.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.8% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:24:10,610 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:20,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:30,649 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:40,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:24:50,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:00,732 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:03 CET)" (scheduled at 2026-01-22 03:25:03.329776+01:00) 2026-01-22 03:25:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:03 CET)" executed successfully 2026-01-22 03:25:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:07 CET)" (scheduled at 2026-01-22 03:25:07.461608+01:00) 2026-01-22 03:25:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:07 CET)" executed successfully 2026-01-22 03:25:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:08 CET)" (scheduled at 2026-01-22 03:25:08.847423+01:00) 2026-01-22 03:25:09,007 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:26:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.49 | 85.153 | 9.7648 | 4788.56 | | H4 | uptrend | 427.1 | 43.0118 | 2.75557 | 4788.43 | | H1 | uptrend | 352.99 | 31.9017 | 1.68913 | 4788.43 | | M30 | uptrend | 478.1 | 24.5115 | 1.75784 | 4788.43 | | M15 | uptrend | 281.3 | 16.0902 | 0.678921 | 4788.43 | | M5 | downtrend | 467.27 | 7.6025 | -0.532865 | 4788.43 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.54) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.45% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143331.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:25:10,762 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:20,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:30,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:40,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:25:50,881 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:00,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:03 CET)" (scheduled at 2026-01-22 03:26:03.329776+01:00) 2026-01-22 03:26:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:03 CET)" executed successfully 2026-01-22 03:26:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:07 CET)" (scheduled at 2026-01-22 03:26:07.461608+01:00) 2026-01-22 03:26:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:07 CET)" executed successfully 2026-01-22 03:26:08,889 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:08 CET)" (scheduled at 2026-01-22 03:26:08.847423+01:00) 2026-01-22 03:26:09,059 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:27:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.52 | 85.153 | 9.76515 | 4790.04 | | H4 | uptrend | 427.16 | 43.0118 | 2.75594 | 4790.01 | | H1 | uptrend | 353.06 | 31.9017 | 1.6895 | 4790.01 | | M30 | uptrend | 478.2 | 24.5115 | 1.75822 | 4790.01 | | M15 | uptrend | 281.45 | 16.0902 | 0.679294 | 4790.01 | | M5 | downtrend | 456.44 | 7.7775 | -0.532491 | 4790.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.57) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143573.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:26:10,930 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:20,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:30,977 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:41,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:26:51,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:01,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:03 CET)" (scheduled at 2026-01-22 03:27:03.329776+01:00) 2026-01-22 03:27:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:03 CET)" executed successfully 2026-01-22 03:27:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:07 CET)" (scheduled at 2026-01-22 03:27:07.461608+01:00) 2026-01-22 03:27:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:07 CET)" executed successfully 2026-01-22 03:27:09,258 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:08 CET)" (scheduled at 2026-01-22 03:27:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:27:09,544 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:28:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.5 | 85.153 | 9.76492 | 4789.06 | | H4 | uptrend | 427.12 | 43.0118 | 2.7557 | 4789.01 | | H1 | uptrend | 353.01 | 31.9017 | 1.68927 | 4789.01 | | M30 | uptrend | 478.14 | 24.5115 | 1.75798 | 4789.01 | | M15 | uptrend | 281.36 | 16.0902 | 0.679058 | 4789.01 | | M5 | downtrend | 456.65 | 7.7775 | -0.532735 | 4788.98 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.55) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143556.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:27:11,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:21,156 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:31,184 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:41,211 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:27:51,226 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:01,249 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:03,667 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:03 CET)" (scheduled at 2026-01-22 03:28:03.329776+01:00) 2026-01-22 03:28:03,667 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:03 CET)" executed successfully 2026-01-22 03:28:07,666 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:07 CET)" (scheduled at 2026-01-22 03:28:07.461608+01:00) 2026-01-22 03:28:07,666 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:07 CET)" executed successfully 2026-01-22 03:28:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:08 CET)" (scheduled at 2026-01-22 03:28:08.847423+01:00) 2026-01-22 03:28:09,005 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.5 | 85.153 | 9.76488 | 4788.9 | | H4 | uptrend | 426.79 | 43.0453 | 2.75568 | 4788.89 | | H1 | uptrend | 352.64 | 31.9353 | 1.68924 | 4788.89 | | M30 | uptrend | 477.47 | 24.5451 | 1.75795 | 4788.89 | | M15 | uptrend | 280.19 | 16.1566 | 0.679029 | 4788.89 | | M5 | downtrend | 451.4 | 7.8682 | -0.532756 | 4788.89 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143485.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:28:11,278 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:21,310 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:31,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:41,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:28:51,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:01,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:03 CET)" (scheduled at 2026-01-22 03:29:03.329776+01:00) 2026-01-22 03:29:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:03 CET)" executed successfully 2026-01-22 03:29:07,734 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:07 CET)" (scheduled at 2026-01-22 03:29:07.461608+01:00) 2026-01-22 03:29:07,734 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:07 CET)" executed successfully 2026-01-22 03:29:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:08 CET)" (scheduled at 2026-01-22 03:29:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:29:09,100 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:30:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.7647 | 4788.13 | | H4 | uptrend | 426.76 | 43.0453 | 2.7555 | 4788.13 | | H1 | uptrend | 352.6 | 31.9353 | 1.68905 | 4788.11 | | M30 | uptrend | 477.43 | 24.5451 | 1.75777 | 4788.14 | | M15 | uptrend | 280.11 | 16.1566 | 0.678852 | 4788.14 | | M5 | downtrend | 451.55 | 7.8682 | -0.532933 | 4788.14 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.39) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143472.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:29:11,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:21,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:31,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:41,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:29:51,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:00,010 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 04:00:00 CET)" (scheduled at 2026-01-22 03:30:00+01:00) 2026-01-22 03:30:00,026 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 04:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 03:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 31.97 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 03:30:01,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:03,392 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:03 CET)" (scheduled at 2026-01-22 03:30:03.329776+01:00) 2026-01-22 03:30:03,392 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:03 CET)" executed successfully 2026-01-22 03:30:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:07 CET)" (scheduled at 2026-01-22 03:30:07.461608+01:00) 2026-01-22 03:30:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:07 CET)" executed successfully 2026-01-22 03:30:08,855 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:08 CET)" (scheduled at 2026-01-22 03:30:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:30:09,089 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:31:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76428 | 4786.38 | | H4 | uptrend | 425.89 | 43.1268 | 2.75508 | 4786.38 | | H1 | uptrend | 351.61 | 32.0167 | 1.68863 | 4786.33 | | M30 | uptrend | 502.3 | 22.9583 | 1.7298 | 4786.33 | | M15 | uptrend | 286.33 | 15.1689 | 0.651496 | 4786.33 | | M5 | downtrend | 475.12 | 7.4726 | -0.532561 | 4786.33 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.38% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145138.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:30:11,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:21,607 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:31,640 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:41,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:30:51,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:01,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:03 CET)" (scheduled at 2026-01-22 03:31:03.329776+01:00) 2026-01-22 03:31:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:03 CET)" executed successfully 2026-01-22 03:31:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:07 CET)" (scheduled at 2026-01-22 03:31:07.461608+01:00) 2026-01-22 03:31:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:07 CET)" executed successfully 2026-01-22 03:31:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:08 CET)" (scheduled at 2026-01-22 03:31:08.847423+01:00) 2026-01-22 03:31:08,992 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.43 | 85.153 | 9.764 | 4785.19 | | H4 | uptrend | 425.25 | 43.1875 | 2.7548 | 4785.19 | | H1 | uptrend | 350.89 | 32.0775 | 1.68836 | 4785.19 | | M30 | uptrend | 500.9 | 23.019 | 1.72953 | 4785.2 | | M15 | uptrend | 285.07 | 15.2297 | 0.651229 | 4785.2 | | M5 | downtrend | 471.53 | 7.5333 | -0.532828 | 4785.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 628.76) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.42% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144932.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:31:11,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:21,763 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:31,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:41,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:31:51,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:01,857 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:03,590 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:03 CET)" (scheduled at 2026-01-22 03:32:03.329776+01:00) 2026-01-22 03:32:03,590 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:03 CET)" executed successfully 2026-01-22 03:32:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:07 CET)" (scheduled at 2026-01-22 03:32:07.461608+01:00) 2026-01-22 03:32:07,545 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:07 CET)" executed successfully 2026-01-22 03:32:09,145 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:08 CET)" (scheduled at 2026-01-22 03:32:08.847423+01:00) 2026-01-22 03:32:09,334 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.42 | 85.153 | 9.76396 | 4785.01 | | H4 | uptrend | 425.14 | 43.1982 | 2.75476 | 4785.01 | | H1 | uptrend | 350.77 | 32.0882 | 1.68832 | 4785.01 | | M30 | uptrend | 500.65 | 23.0297 | 1.72949 | 4785.01 | | M15 | uptrend | 284.85 | 15.2404 | 0.651184 | 4785.01 | | M5 | downtrend | 470.89 | 7.544 | -0.532866 | 4785.04 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 628.71) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144901.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:32:11,870 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:21,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:31,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:41,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:32:51,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:01,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:03,668 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:03 CET)" (scheduled at 2026-01-22 03:33:03.329776+01:00) 2026-01-22 03:33:03,668 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:03 CET)" executed successfully 2026-01-22 03:33:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:07 CET)" (scheduled at 2026-01-22 03:33:07.461608+01:00) 2026-01-22 03:33:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:07 CET)" executed successfully 2026-01-22 03:33:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:08 CET)" (scheduled at 2026-01-22 03:33:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:33:09,833 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:34:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.38 | 85.153 | 9.76335 | 4782.44 | | H4 | uptrend | 423.3 | 43.376 | 2.75415 | 4782.44 | | H1 | uptrend | 348.61 | 32.2746 | 1.68768 | 4782.27 | | M30 | uptrend | 496.45 | 23.2162 | 1.72884 | 4782.27 | | M15 | uptrend | 281.13 | 15.4268 | 0.650539 | 4782.28 | | M5 | downtrend | 460.1 | 7.7305 | -0.533518 | 4782.28 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.95) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144290.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:33:12,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:22,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:32,070 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:42,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:33:52,128 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:02,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:03,567 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:03 CET)" (scheduled at 2026-01-22 03:34:03.329776+01:00) 2026-01-22 03:34:03,570 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:03 CET)" executed successfully 2026-01-22 03:34:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:07 CET)" (scheduled at 2026-01-22 03:34:07.461608+01:00) 2026-01-22 03:34:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:07 CET)" executed successfully 2026-01-22 03:34:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:08 CET)" (scheduled at 2026-01-22 03:34:08.847423+01:00) 2026-01-22 03:34:09,006 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:35:08 CET)" executed successfully
✅ Position-Check OK: 0/1
🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD
⚡ Adaptive Interval: 15 min | Session: ASIAN
🎯 Market Regime: RANGING (Strength: 31%)
🎚️ Adaptive Threshold: 70% (RELAXED)
+------+-----------+------------+---------+-----------+---------+
| TF | Trend | Strength | ATR | Slope | Price |
|------+-----------+------------+---------+-----------+---------|
| D1 | uptrend | 764.32 | 85.153 | 9.76263 | 4779.36 |
| H4 | uptrend | 421.09 | 43.5918 | 2.75343 | 4779.36 |
| H1 | uptrend | 346.24 | 32.4817 | 1.68699 | 4779.38 |
| M30 | uptrend | 491.86 | 23.4233 | 1.72816 | 4779.38 |
| M15 | uptrend | 277.11 | 15.6339 | 0.649854 | 4779.38 |
| M5 | downtrend | 448.67 | 7.9376 | -0.534203 | 4779.38 |
+------+-----------+------------+---------+-----------+---------+
➡️ Standard-Trend: uptrend (Strength: 627.03)
➡️ Fast-Trend: uptrend (Required: 2/4)
➡️ Top-Down-Trend: uptrend
➡️ Confidence: 93.67% (Threshold: 70%)
➡️ Risk-Adjusted Strength: 143599.0 (Min: 80)
➡️ Signal Quality: EXCELLENT
🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm
📊 Base Signal Analysis:
Direction: 1
Base Confidence: 93.7%
Adaptive Threshold: 70.0%
🎯 Calculating Enhanced Signal Score...
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list'
✅ Enhanced Signal Scoring:
Trend Score: 93.7/100
Volume Score: 40.0/100
Momentum Score: 70.0/100
S/R Score: 50.0/100
Fibonacci Score: 50.0/100
─────────────────────────────────────
📊 Base Confidence: 93.7%
🎯 Enhanced Score: 65.1%
📈 Signal Quality: good
💡 Analysis: Strong trend (94%)
⏸️ No clear signal: 1
2026-01-22 03:34:12,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:22,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:32,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:42,250 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:34:52,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:02,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:03,826 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:03 CET)" (scheduled at 2026-01-22 03:35:03.329776+01:00) 2026-01-22 03:35:03,826 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:03 CET)" executed successfully 2026-01-22 03:35:07,482 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:07 CET)" (scheduled at 2026-01-22 03:35:07.461608+01:00) 2026-01-22 03:35:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:07 CET)" executed successfully 2026-01-22 03:35:08,871 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:08 CET)" (scheduled at 2026-01-22 03:35:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:35:09,165 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:36:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+----------+---------| | D1 | uptrend | 764.41 | 85.153 | 9.76377 | 4784.2 | | H4 | uptrend | 421.27 | 43.5918 | 2.75457 | 4784.2 | | H1 | uptrend | 346.48 | 32.4817 | 1.68813 | 4784.2 | | M30 | uptrend | 492.19 | 23.4233 | 1.72929 | 4784.19 | | M15 | uptrend | 277.6 | 15.6339 | 0.65099 | 4784.19 | | M5 | downtrend | 478.2 | 7.4171 | -0.53203 | 4784.21 | +------+-----------+------------+---------+----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143101.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:35:12,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:22,356 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:32,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:42,413 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:35:52,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:02,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:03,764 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:03 CET)" (scheduled at 2026-01-22 03:36:03.329776+01:00) 2026-01-22 03:36:03,766 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:03 CET)" executed successfully 2026-01-22 03:36:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:07 CET)" (scheduled at 2026-01-22 03:36:07.461608+01:00) 2026-01-22 03:36:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:07 CET)" executed successfully 2026-01-22 03:36:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:08 CET)" (scheduled at 2026-01-22 03:36:08.847423+01:00) 2026-01-22 03:36:08,977 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:37:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.4 | 85.153 | 9.76368 | 4783.82 | | H4 | uptrend | 421.25 | 43.5918 | 2.75448 | 4783.82 | | H1 | uptrend | 346.46 | 32.4817 | 1.68804 | 4783.81 | | M30 | uptrend | 492.16 | 23.4233 | 1.7292 | 4783.81 | | M15 | uptrend | 277.56 | 15.6339 | 0.6509 | 4783.81 | | M5 | downtrend | 465.34 | 7.6235 | -0.532124 | 4783.81 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143355.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:36:12,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:22,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:32,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:42,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:36:52,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:02,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:03 CET)" (scheduled at 2026-01-22 03:37:03.329776+01:00) 2026-01-22 03:37:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:03 CET)" executed successfully 2026-01-22 03:37:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:07 CET)" (scheduled at 2026-01-22 03:37:07.461608+01:00) 2026-01-22 03:37:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:07 CET)" executed successfully 2026-01-22 03:37:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:08 CET)" (scheduled at 2026-01-22 03:37:08.847423+01:00) 2026-01-22 03:37:09,008 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:38:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.43 | 85.153 | 9.76404 | 4785.33 | | H4 | uptrend | 421.31 | 43.5918 | 2.75484 | 4785.34 | | H1 | uptrend | 346.53 | 32.4817 | 1.6884 | 4785.34 | | M30 | uptrend | 492.26 | 23.4233 | 1.72957 | 4785.34 | | M15 | uptrend | 277.71 | 15.6339 | 0.651262 | 4785.34 | | M5 | downtrend | 465.02 | 7.6235 | -0.531763 | 4785.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143382.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:37:12,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:22,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:32,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:43,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:37:53,045 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:03,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:03 CET)" (scheduled at 2026-01-22 03:38:03.329776+01:00) 2026-01-22 03:38:03,347 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:03 CET)" executed successfully 2026-01-22 03:38:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:07 CET)" (scheduled at 2026-01-22 03:38:07.461608+01:00) 2026-01-22 03:38:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:07 CET)" executed successfully 2026-01-22 03:38:09,029 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:08 CET)" (scheduled at 2026-01-22 03:38:08.847423+01:00) 2026-01-22 03:38:09,196 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:39:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.32 | 85.153 | 9.76257 | 4779.1 | | H4 | uptrend | 420.73 | 43.6282 | 2.75336 | 4779.1 | | H1 | uptrend | 345.84 | 32.5182 | 1.68693 | 4779.1 | | M30 | uptrend | 491.08 | 23.4597 | 1.72809 | 4779.1 | | M15 | uptrend | 276.44 | 15.6704 | 0.649788 | 4779.1 | | M5 | downtrend | 451.71 | 7.8699 | -0.533237 | 4779.1 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.88) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.63% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143389.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:38:13,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:23,120 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:33,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:43,171 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:38:53,186 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:03,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:03,350 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:03 CET)" (scheduled at 2026-01-22 03:39:03.329776+01:00) 2026-01-22 03:39:03,352 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:03 CET)" executed successfully 2026-01-22 03:39:07,712 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:07 CET)" (scheduled at 2026-01-22 03:39:07.461608+01:00) 2026-01-22 03:39:07,712 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:07 CET)" executed successfully 2026-01-22 03:39:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:08 CET)" (scheduled at 2026-01-22 03:39:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.31 | 85.153 | 9.76248 | 4778.75 | | H4 | uptrend | 420.63 | 43.6375 | 2.75328 | 4778.75 | | H1 | uptrend | 345.73 | 32.5275 | 1.68684 | 4778.75 | | M30 | uptrend | 490.86 | 23.469 | 1.72799 | 4778.69 | | M15 | uptrend | 276.24 | 15.6797 | 0.649691 | 4778.69 | | M5 | downtrend | 451.26 | 7.8792 | -0.533334 | 4778.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.84) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.63% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143346.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 03:39:09,068 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:40:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:39:13,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:23,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:33,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:43,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:39:53,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:03,362 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:03,892 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:03 CET)" (scheduled at 2026-01-22 03:40:03.329776+01:00) 2026-01-22 03:40:03,893 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:03 CET)" executed successfully 2026-01-22 03:40:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:07 CET)" (scheduled at 2026-01-22 03:40:07.461608+01:00) 2026-01-22 03:40:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:07 CET)" executed successfully 2026-01-22 03:40:08,873 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:08 CET)" (scheduled at 2026-01-22 03:40:08.847423+01:00) 2026-01-22 03:40:09,028 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:41:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.31 | 85.153 | 9.76243 | 4778.54 | | H4 | uptrend | 417.99 | 43.9118 | 2.75323 | 4778.54 | | H1 | uptrend | 342.83 | 32.8017 | 1.68679 | 4778.54 | | M30 | uptrend | 485.18 | 23.7433 | 1.72796 | 4778.54 | | M15 | uptrend | 271.47 | 15.9539 | 0.649655 | 4778.54 | | M5 | downtrend | 465.92 | 7.6297 | -0.533222 | 4778.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.78) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.41% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141948.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:40:09,757 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 04:40:09 CET)" (scheduled at 2026-01-22 03:40:09.465739+01:00) 2026-01-22 03:40:09,915 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 04:40:09 CET)" executed successfully
[03:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 03:40:13,387 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:23,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:33,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:43,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:40:53,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:03 CET)" (scheduled at 2026-01-22 03:41:03.329776+01:00) 2026-01-22 03:41:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:03 CET)" executed successfully 2026-01-22 03:41:03,514 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:07 CET)" (scheduled at 2026-01-22 03:41:07.461608+01:00) 2026-01-22 03:41:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:07 CET)" executed successfully 2026-01-22 03:41:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:08 CET)" (scheduled at 2026-01-22 03:41:08.847423+01:00) 2026-01-22 03:41:08,995 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:42:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.36 | 85.153 | 9.76311 | 4781.4 | | H4 | uptrend | 418.1 | 43.9118 | 2.75391 | 4781.4 | | H1 | uptrend | 342.96 | 32.8017 | 1.68747 | 4781.4 | | M30 | uptrend | 485.37 | 23.7433 | 1.72863 | 4781.4 | | M15 | uptrend | 271.74 | 15.9539 | 0.650305 | 4781.29 | | M5 | downtrend | 453.57 | 7.8276 | -0.532553 | 4781.37 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.85) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.58% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142256.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:41:13,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:23,558 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:33,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:43,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:41:53,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:03 CET)" (scheduled at 2026-01-22 03:42:03.329776+01:00) 2026-01-22 03:42:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:03 CET)" executed successfully 2026-01-22 03:42:03,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:07 CET)" (scheduled at 2026-01-22 03:42:07.461608+01:00) 2026-01-22 03:42:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:07 CET)" executed successfully 2026-01-22 03:42:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:08 CET)" (scheduled at 2026-01-22 03:42:08.847423+01:00) 2026-01-22 03:42:09,009 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:43:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.35 | 85.153 | 9.76297 | 4780.82 | | H4 | uptrend | 418.08 | 43.9118 | 2.75377 | 4780.82 | | H1 | uptrend | 342.94 | 32.8017 | 1.68733 | 4780.82 | | M30 | uptrend | 485.33 | 23.7433 | 1.7285 | 4780.82 | | M15 | uptrend | 271.7 | 15.9539 | 0.650194 | 4780.82 | | M5 | downtrend | 452.77 | 7.8433 | -0.532683 | 4780.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.84) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142262.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:42:13,774 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:23,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:33,819 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:43,844 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:42:53,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:03 CET)" (scheduled at 2026-01-22 03:43:03.329776+01:00) 2026-01-22 03:43:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:03 CET)" executed successfully 2026-01-22 03:43:03,897 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:07 CET)" (scheduled at 2026-01-22 03:43:07.461608+01:00) 2026-01-22 03:43:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:07 CET)" executed successfully 2026-01-22 03:43:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:08 CET)" (scheduled at 2026-01-22 03:43:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:43:09,095 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:44:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.33 | 85.153 | 9.76273 | 4779.82 | | H4 | uptrend | 418.04 | 43.9118 | 2.75352 | 4779.76 | | H1 | uptrend | 342.88 | 32.8017 | 1.68708 | 4779.76 | | M30 | uptrend | 485.26 | 23.7433 | 1.72825 | 4779.76 | | M15 | uptrend | 271.59 | 15.9539 | 0.649944 | 4779.76 | | M5 | downtrend | 452.99 | 7.8433 | -0.532934 | 4779.76 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.81) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.58% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142228.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:43:13,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:23,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:33,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:43,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:43:54,014 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:04,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:04,054 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:03 CET)" (scheduled at 2026-01-22 03:44:03.329776+01:00) 2026-01-22 03:44:04,057 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:03 CET)" executed successfully 2026-01-22 03:44:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:07 CET)" (scheduled at 2026-01-22 03:44:07.461608+01:00) 2026-01-22 03:44:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:07 CET)" executed successfully 2026-01-22 03:44:09,057 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:08 CET)" (scheduled at 2026-01-22 03:44:08.847423+01:00) 2026-01-22 03:44:09,246 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:45:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.36 | 85.153 | 9.76311 | 4781.4 | | H4 | uptrend | 418.1 | 43.9118 | 2.75391 | 4781.4 | | H1 | uptrend | 342.96 | 32.8017 | 1.68747 | 4781.4 | | M30 | uptrend | 485.37 | 23.7433 | 1.72863 | 4781.4 | | M15 | uptrend | 271.75 | 15.9539 | 0.650331 | 4781.4 | | M5 | downtrend | 451.71 | 7.8597 | -0.532546 | 4781.4 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.85) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.6% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142287.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:44:14,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:24,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:34,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:44,123 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:44:54,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:03 CET)" (scheduled at 2026-01-22 03:45:03.329776+01:00) 2026-01-22 03:45:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:03 CET)" executed successfully 2026-01-22 03:45:04,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:07 CET)" (scheduled at 2026-01-22 03:45:07.461608+01:00) 2026-01-22 03:45:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:07 CET)" executed successfully 2026-01-22 03:45:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:08 CET)" (scheduled at 2026-01-22 03:45:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:45:09,234 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:46:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.38 | 85.153 | 9.76337 | 4782.51 | | H4 | uptrend | 418.14 | 43.9118 | 2.75417 | 4782.52 | | H1 | uptrend | 343.02 | 32.8017 | 1.68773 | 4782.52 | | M30 | uptrend | 485.44 | 23.7433 | 1.7289 | 4782.52 | | M15 | uptrend | 278.45 | 14.8808 | 0.621526 | 4782.52 | | M5 | downtrend | 477.1 | 7.4151 | -0.530666 | 4782.52 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.88) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.27% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142173.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:45:14,200 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:24,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:34,253 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:44,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:45:54,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:03 CET)" (scheduled at 2026-01-22 03:46:03.329776+01:00) 2026-01-22 03:46:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:03 CET)" executed successfully 2026-01-22 03:46:04,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:07 CET)" (scheduled at 2026-01-22 03:46:07.461608+01:00) 2026-01-22 03:46:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:07 CET)" executed successfully 2026-01-22 03:46:08,899 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:08 CET)" (scheduled at 2026-01-22 03:46:08.847423+01:00) 2026-01-22 03:46:09,094 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:47:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.42 | 85.153 | 9.7639 | 4784.77 | | H4 | uptrend | 418.22 | 43.9118 | 2.75475 | 4784.96 | | H1 | uptrend | 343.13 | 32.8017 | 1.68829 | 4784.88 | | M30 | uptrend | 485.6 | 23.7433 | 1.72946 | 4784.88 | | M15 | uptrend | 274.96 | 15.0829 | 0.622083 | 4784.88 | | M5 | downtrend | 463.95 | 7.6173 | -0.530109 | 4784.88 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.94) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142265.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:46:14,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:24,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:34,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:44,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:46:54,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:03 CET)" (scheduled at 2026-01-22 03:47:03.329776+01:00) 2026-01-22 03:47:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:03 CET)" executed successfully 2026-01-22 03:47:04,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:07,681 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:07 CET)" (scheduled at 2026-01-22 03:47:07.461608+01:00) 2026-01-22 03:47:07,681 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:07 CET)" executed successfully 2026-01-22 03:47:08,873 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:08 CET)" (scheduled at 2026-01-22 03:47:08.847423+01:00) 2026-01-22 03:47:09,055 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:48:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76434 | 4786.6 | | H4 | uptrend | 418.28 | 43.9118 | 2.75514 | 4786.6 | | H1 | uptrend | 343.21 | 32.8017 | 1.6887 | 4786.6 | | M30 | uptrend | 485.71 | 23.7433 | 1.72986 | 4786.6 | | M15 | uptrend | 273.69 | 15.1629 | 0.62249 | 4786.6 | | M5 | downtrend | 458.78 | 7.6973 | -0.529702 | 4786.6 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.99) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.51% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142320.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:47:14,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:24,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:34,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:44,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:47:54,598 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:03 CET)" (scheduled at 2026-01-22 03:48:03.329776+01:00) 2026-01-22 03:48:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:03 CET)" executed successfully 2026-01-22 03:48:04,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:07 CET)" (scheduled at 2026-01-22 03:48:07.461608+01:00) 2026-01-22 03:48:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:07 CET)" executed successfully 2026-01-22 03:48:09,092 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:08 CET)" (scheduled at 2026-01-22 03:48:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:48:09,387 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:49:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.46 | 85.153 | 9.76436 | 4786.72 | | H4 | uptrend | 418.29 | 43.9118 | 2.75515 | 4786.68 | | H1 | uptrend | 343.22 | 32.8017 | 1.68872 | 4786.68 | | M30 | uptrend | 485.72 | 23.7433 | 1.72988 | 4786.68 | | M15 | uptrend | 273.17 | 15.1922 | 0.622509 | 4786.68 | | M5 | downtrend | 457.02 | 7.7266 | -0.529683 | 4786.68 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.99) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142322.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:48:14,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:24,692 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:34,720 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:44,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:48:54,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:04,055 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:03 CET)" (scheduled at 2026-01-22 03:49:03.329776+01:00) 2026-01-22 03:49:04,055 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:03 CET)" executed successfully 2026-01-22 03:49:04,800 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:07 CET)" (scheduled at 2026-01-22 03:49:07.461608+01:00) 2026-01-22 03:49:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:07 CET)" executed successfully 2026-01-22 03:49:08,851 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:08 CET)" (scheduled at 2026-01-22 03:49:08.847423+01:00) 2026-01-22 03:49:08,990 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:50:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.42 | 85.153 | 9.76392 | 4784.83 | | H4 | uptrend | 418.22 | 43.9118 | 2.75472 | 4784.83 | | H1 | uptrend | 343.13 | 32.8017 | 1.68828 | 4784.83 | | M30 | uptrend | 485.6 | 23.7433 | 1.72945 | 4784.87 | | M15 | uptrend | 272.89 | 15.1972 | 0.622081 | 4784.87 | | M5 | downtrend | 457.1 | 7.7316 | -0.530111 | 4784.87 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.94) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 142285.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:49:14,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:24,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:34,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:44,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:49:54,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:03 CET)" (scheduled at 2026-01-22 03:50:03.329776+01:00) 2026-01-22 03:50:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:03 CET)" executed successfully 2026-01-22 03:50:04,959 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:07,681 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:07 CET)" (scheduled at 2026-01-22 03:50:07.461608+01:00) 2026-01-22 03:50:07,682 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:07 CET)" executed successfully 2026-01-22 03:50:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:08 CET)" (scheduled at 2026-01-22 03:50:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.41 | 85.153 | 9.7638 | 4784.34 | | H4 | uptrend | 418.2 | 43.9118 | 2.7546 | 4784.34 | | H1 | uptrend | 343.1 | 32.8017 | 1.68816 | 4784.34 | | M30 | uptrend | 485.56 | 23.7433 | 1.72933 | 4784.34 | | M15 | uptrend | 272.84 | 15.1972 | 0.621956 | 4784.34 | | M5 | downtrend | 485.65 | 7.2515 | -0.528253 | 4784.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.93) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141713.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 03:50:09,249 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:51:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:50:14,974 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:24,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:35,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:45,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:50:55,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:03,567 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:03 CET)" (scheduled at 2026-01-22 03:51:03.329776+01:00) 2026-01-22 03:51:03,567 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:03 CET)" executed successfully 2026-01-22 03:51:05,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:07 CET)" (scheduled at 2026-01-22 03:51:07.461608+01:00) 2026-01-22 03:51:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:07 CET)" executed successfully 2026-01-22 03:51:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:08 CET)" (scheduled at 2026-01-22 03:51:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.42 | 85.153 | 9.76388 | 4784.68 | | H4 | uptrend | 418.21 | 43.9118 | 2.75468 | 4784.68 | | H1 | uptrend | 343.12 | 32.8017 | 1.68824 | 4784.68 | | M30 | uptrend | 485.59 | 23.7433 | 1.72941 | 4784.68 | | M15 | uptrend | 272.87 | 15.1972 | 0.622039 | 4784.69 | | M5 | downtrend | 484.95 | 7.2608 | -0.52817 | 4784.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.94) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141719.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:51:09,047 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:52:08 CET)" executed successfully 2026-01-22 03:51:15,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:25,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:35,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:45,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:51:55,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:03 CET)" (scheduled at 2026-01-22 03:52:03.329776+01:00) 2026-01-22 03:52:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:03 CET)" executed successfully 2026-01-22 03:52:05,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:07 CET)" (scheduled at 2026-01-22 03:52:07.461608+01:00) 2026-01-22 03:52:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:07 CET)" executed successfully 2026-01-22 03:52:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:08 CET)" (scheduled at 2026-01-22 03:52:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.49 | 85.153 | 9.76475 | 4788.36 | | H4 | uptrend | 418.35 | 43.9118 | 2.75555 | 4788.36 | | H1 | uptrend | 343.3 | 32.8017 | 1.68911 | 4788.36 | | M30 | uptrend | 484.97 | 23.7854 | 1.73028 | 4788.36 | | M15 | uptrend | 271.66 | 15.2865 | 0.622906 | 4788.36 | | M5 | downtrend | 469.11 | 7.4936 | -0.527303 | 4788.36 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141950.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 03:52:09,070 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:53:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:52:15,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:25,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:35,324 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:45,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:52:55,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:04,003 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:03 CET)" (scheduled at 2026-01-22 03:53:03.329776+01:00) 2026-01-22 03:53:04,003 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:03 CET)" executed successfully 2026-01-22 03:53:05,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:07 CET)" (scheduled at 2026-01-22 03:53:07.461608+01:00) 2026-01-22 03:53:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:07 CET)" executed successfully 2026-01-22 03:53:09,037 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:08 CET)" (scheduled at 2026-01-22 03:53:08.847423+01:00) 2026-01-22 03:53:09,159 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:54:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.5 | 85.153 | 9.76495 | 4789.2 | | H4 | uptrend | 418.38 | 43.9118 | 2.75575 | 4789.2 | | H1 | uptrend | 343.34 | 32.8017 | 1.68931 | 4789.2 | | M30 | uptrend | 483.33 | 23.869 | 1.73048 | 4789.2 | | M15 | uptrend | 270.27 | 15.3701 | 0.623104 | 4789.2 | | M5 | downtrend | 463.76 | 7.5772 | -0.527104 | 4789.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.05) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141861.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:53:15,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:25,439 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:35,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:45,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:53:55,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:03 CET)" (scheduled at 2026-01-22 03:54:03.329776+01:00) 2026-01-22 03:54:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:03 CET)" executed successfully 2026-01-22 03:54:05,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:07 CET)" (scheduled at 2026-01-22 03:54:07.461608+01:00) 2026-01-22 03:54:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:07 CET)" executed successfully 2026-01-22 03:54:09,076 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:08 CET)" (scheduled at 2026-01-22 03:54:08.847423+01:00) 2026-01-22 03:54:09,213 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:55:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76511 | 4789.89 | | H4 | uptrend | 418.4 | 43.9118 | 2.75591 | 4789.89 | | H1 | uptrend | 343.37 | 32.8017 | 1.68948 | 4789.89 | | M30 | uptrend | 482.82 | 23.8962 | 1.73064 | 4789.9 | | M15 | uptrend | 269.86 | 15.3972 | 0.62327 | 4789.9 | | M5 | downtrend | 461.96 | 7.6043 | -0.526939 | 4789.9 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141836.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:54:15,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:25,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:35,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:45,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:54:55,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:03 CET)" (scheduled at 2026-01-22 03:55:03.329776+01:00) 2026-01-22 03:55:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:03 CET)" executed successfully 2026-01-22 03:55:05,849 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:07,488 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:07 CET)" (scheduled at 2026-01-22 03:55:07.461608+01:00) 2026-01-22 03:55:07,489 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:07 CET)" executed successfully 2026-01-22 03:55:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:08 CET)" (scheduled at 2026-01-22 03:55:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:55:09,252 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:56:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76508 | 4789.73 | | H4 | uptrend | 418.4 | 43.9118 | 2.75588 | 4789.73 | | H1 | uptrend | 343.36 | 32.8017 | 1.68944 | 4789.75 | | M30 | uptrend | 482.06 | 23.9333 | 1.73061 | 4789.75 | | M15 | uptrend | 269.2 | 15.4344 | 0.623234 | 4789.75 | | M5 | downtrend | 486.22 | 7.1521 | -0.521625 | 4789.75 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.14% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141256.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.1% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:55:15,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:25,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:35,921 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:45,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:55:55,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:04,167 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:03 CET)" (scheduled at 2026-01-22 03:56:03.329776+01:00) 2026-01-22 03:56:04,167 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:03 CET)" executed successfully 2026-01-22 03:56:05,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:07 CET)" (scheduled at 2026-01-22 03:56:07.461608+01:00) 2026-01-22 03:56:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:07 CET)" executed successfully 2026-01-22 03:56:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:08 CET)" (scheduled at 2026-01-22 03:56:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:56:09,149 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:57:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76507 | 4789.69 | | H4 | uptrend | 418.39 | 43.9118 | 2.75586 | 4789.66 | | H1 | uptrend | 343.36 | 32.8017 | 1.68942 | 4789.66 | | M30 | uptrend | 482.06 | 23.9333 | 1.73059 | 4789.66 | | M15 | uptrend | 269.19 | 15.4344 | 0.623213 | 4789.66 | | M5 | downtrend | 483.1 | 7.1986 | -0.521646 | 4789.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.06) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.18% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141315.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:56:16,015 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:26,037 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:36,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:46,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:56:56,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:04,092 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:03 CET)" (scheduled at 2026-01-22 03:57:03.329776+01:00) 2026-01-22 03:57:04,092 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:03 CET)" executed successfully 2026-01-22 03:57:06,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:07 CET)" (scheduled at 2026-01-22 03:57:07.461608+01:00) 2026-01-22 03:57:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:07 CET)" executed successfully 2026-01-22 03:57:09,181 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:08 CET)" (scheduled at 2026-01-22 03:57:08.847423+01:00) 2026-01-22 03:57:09,343 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.7643 | 4786.44 | | H4 | uptrend | 418.28 | 43.9118 | 2.7551 | 4786.44 | | H1 | uptrend | 343.21 | 32.8017 | 1.68866 | 4786.44 | | M30 | uptrend | 481.85 | 23.9333 | 1.72983 | 4786.45 | | M15 | uptrend | 268.86 | 15.4344 | 0.622454 | 4786.45 | | M5 | downtrend | 471.14 | 7.3921 | -0.522404 | 4786.45 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.98) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.34% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141501.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:57:16,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:26,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:36,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:46,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:57:56,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:03,721 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:03 CET)" (scheduled at 2026-01-22 03:58:03.329776+01:00) 2026-01-22 03:58:03,721 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:03 CET)" executed successfully 2026-01-22 03:58:06,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:07,887 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:07 CET)" (scheduled at 2026-01-22 03:58:07.461608+01:00) 2026-01-22 03:58:07,890 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:07 CET)" executed successfully 2026-01-22 03:58:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:08 CET)" (scheduled at 2026-01-22 03:58:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:58:09,168 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 03:59:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76422 | 4786.11 | | H4 | uptrend | 418.27 | 43.9118 | 2.75502 | 4786.11 | | H1 | uptrend | 343.19 | 32.8017 | 1.68858 | 4786.11 | | M30 | uptrend | 481.82 | 23.9333 | 1.72975 | 4786.11 | | M15 | uptrend | 268.83 | 15.4344 | 0.622374 | 4786.11 | | M5 | downtrend | 466.3 | 7.47 | -0.522485 | 4786.11 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.97) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141586.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 03:58:16,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:26,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:36,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:46,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:58:56,391 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:03 CET)" (scheduled at 2026-01-22 03:59:03.329776+01:00) 2026-01-22 03:59:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:03 CET)" executed successfully 2026-01-22 03:59:06,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:07,474 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:07 CET)" (scheduled at 2026-01-22 03:59:07.461608+01:00) 2026-01-22 03:59:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:07 CET)" executed successfully 2026-01-22 03:59:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:08 CET)" (scheduled at 2026-01-22 03:59:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 03:59:09,143 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:00:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76563 | 4792.07 | | H4 | uptrend | 418.48 | 43.9118 | 2.75643 | 4792.07 | | H1 | uptrend | 343.47 | 32.8017 | 1.68995 | 4791.9 | | M30 | uptrend | 479.37 | 24.0747 | 1.73112 | 4791.9 | | M15 | uptrend | 266.97 | 15.5758 | 0.62373 | 4791.85 | | M5 | downtrend | 456.19 | 7.6157 | -0.521129 | 4791.85 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 141536.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 03:59:16,435 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:26,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:36,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:46,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 03:59:56,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:00,824 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 04:30:00 CET)" (scheduled at 2026-01-22 04:00:00+01:00) 2026-01-22 04:00:00,824 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 04:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 04:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 30.51 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 04:00:03,355 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:03 CET)" (scheduled at 2026-01-22 04:00:03.329776+01:00) 2026-01-22 04:00:03,355 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:03 CET)" executed successfully 2026-01-22 04:00:06,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:07 CET)" (scheduled at 2026-01-22 04:00:07.461608+01:00) 2026-01-22 04:00:07,474 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:07 CET)" executed successfully 2026-01-22 04:00:08,889 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:08 CET)" (scheduled at 2026-01-22 04:00:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:00:09,260 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:01:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76507 | 4789.69 | | H4 | uptrend | 418.39 | 43.9118 | 2.75586 | 4789.67 | | H1 | uptrend | 371.37 | 30.5123 | 1.69972 | 4789.67 | | M30 | uptrend | 506 | 22.4087 | 1.70081 | 4789.67 | | M15 | uptrend | 274.52 | 14.5168 | 0.597765 | 4789.67 | | M5 | downtrend | 481.33 | 7.1253 | -0.514445 | 4789.67 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.06) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146211.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:00:16,568 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:26,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:36,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:46,652 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:00:56,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:03,953 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:02:03 CET)" (scheduled at 2026-01-22 04:01:03.329776+01:00) 2026-01-22 04:01:03,953 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:02:03 CET)" executed successfully 2026-01-22 04:01:06,702 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:02:07 CET)" (scheduled at 2026-01-22 04:01:07.461608+01:00) 2026-01-22 04:01:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:02:07 CET)" executed successfully 2026-01-22 04:01:10,242 - WARNING - Run time of job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:02:08 CET)" was missed by 0:00:01.395017 2026-01-22 04:01:16,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:26,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:36,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:46,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:01:56,823 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:03 CET)" (scheduled at 2026-01-22 04:02:03.329776+01:00) 2026-01-22 04:02:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:03 CET)" executed successfully 2026-01-22 04:02:06,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:07,540 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:07 CET)" (scheduled at 2026-01-22 04:02:07.461608+01:00) 2026-01-22 04:02:07,541 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:07 CET)" executed successfully 2026-01-22 04:02:08,984 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:08 CET)" (scheduled at 2026-01-22 04:02:08.847423+01:00) 2026-01-22 04:02:09,157 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:03:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.44 | 85.153 | 9.76412 | 4785.69 | | H4 | uptrend | 418.25 | 43.9118 | 2.75492 | 4785.69 | | H1 | uptrend | 366.86 | 30.8709 | 1.69878 | 4785.69 | | M30 | uptrend | 497.75 | 22.7673 | 1.69987 | 4785.69 | | M15 | uptrend | 267.49 | 14.8754 | 0.596853 | 4785.81 | | M5 | downtrend | 459.07 | 7.4839 | -0.515348 | 4785.85 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.57% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145175.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:02:16,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:26,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:36,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:46,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:02:56,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:03 CET)" (scheduled at 2026-01-22 04:03:03.329776+01:00) 2026-01-22 04:03:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:03 CET)" executed successfully 2026-01-22 04:03:06,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:07,578 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:07 CET)" (scheduled at 2026-01-22 04:03:07.461608+01:00) 2026-01-22 04:03:07,581 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:07 CET)" executed successfully 2026-01-22 04:03:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:08 CET)" (scheduled at 2026-01-22 04:03:08.847423+01:00) 2026-01-22 04:03:09,010 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.43 | 85.153 | 9.76406 | 4785.42 | | H4 | uptrend | 418.24 | 43.9118 | 2.75486 | 4785.42 | | H1 | uptrend | 366.55 | 30.8959 | 1.69872 | 4785.42 | | M30 | uptrend | 497.19 | 22.7923 | 1.69981 | 4785.42 | | M15 | uptrend | 267 | 14.9004 | 0.596761 | 4785.42 | | M5 | downtrend | 457.64 | 7.5089 | -0.51545 | 4785.42 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145106.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:03:17,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:27,165 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:37,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:47,227 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:03:57,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:03,538 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:03 CET)" (scheduled at 2026-01-22 04:04:03.329776+01:00) 2026-01-22 04:04:03,538 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:03 CET)" executed successfully 2026-01-22 04:04:07,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:07 CET)" (scheduled at 2026-01-22 04:04:07.461608+01:00) 2026-01-22 04:04:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:07 CET)" executed successfully 2026-01-22 04:04:09,611 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:08 CET)" (scheduled at 2026-01-22 04:04:08.847423+01:00) 2026-01-22 04:04:09,862 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:05:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.44 | 85.153 | 9.7641 | 4785.59 | | H4 | uptrend | 418.25 | 43.9118 | 2.7549 | 4785.59 | | H1 | uptrend | 366.56 | 30.8959 | 1.69876 | 4785.59 | | M30 | uptrend | 497.2 | 22.7923 | 1.69985 | 4785.59 | | M15 | uptrend | 267.02 | 14.9004 | 0.596801 | 4785.59 | | M5 | downtrend | 457.6 | 7.5089 | -0.515409 | 4785.59 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.96) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145110.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:04:17,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:27,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:37,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:47,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:04:57,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:03 CET)" (scheduled at 2026-01-22 04:05:03.329776+01:00) 2026-01-22 04:05:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:03 CET)" executed successfully 2026-01-22 04:05:07,428 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:07,599 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:07 CET)" (scheduled at 2026-01-22 04:05:07.461608+01:00) 2026-01-22 04:05:07,599 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:07 CET)" executed successfully 2026-01-22 04:05:08,987 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:08 CET)" (scheduled at 2026-01-22 04:05:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:05:09,234 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:06:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76432 | 4786.53 | | H4 | uptrend | 418.28 | 43.9118 | 2.75512 | 4786.53 | | H1 | uptrend | 366.6 | 30.8959 | 1.69898 | 4786.53 | | M30 | uptrend | 497.26 | 22.7923 | 1.70007 | 4786.53 | | M15 | uptrend | 267.12 | 14.9004 | 0.597023 | 4786.53 | | M5 | downtrend | 479.26 | 7.0597 | -0.507511 | 4786.63 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.98) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144693.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:05:17,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:27,468 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:37,500 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:47,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:05:57,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:03 CET)" (scheduled at 2026-01-22 04:06:03.329776+01:00) 2026-01-22 04:06:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:03 CET)" executed successfully 2026-01-22 04:06:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:07 CET)" (scheduled at 2026-01-22 04:06:07.461608+01:00) 2026-01-22 04:06:07,483 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:07 CET)" executed successfully 2026-01-22 04:06:07,605 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:09,161 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:08 CET)" (scheduled at 2026-01-22 04:06:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.76469 | 4788.08 | | H4 | uptrend | 418.34 | 43.9118 | 2.75549 | 4788.08 | | H1 | uptrend | 366.68 | 30.8959 | 1.69935 | 4788.08 | | M30 | uptrend | 497.37 | 22.7923 | 1.70043 | 4788.08 | | M15 | uptrend | 267.28 | 14.9004 | 0.59739 | 4788.08 | | M5 | downtrend | 470.37 | 7.1883 | -0.507171 | 4788.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.02) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.42% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144891.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 04:06:10,381 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:07:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:06:17,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:27,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:37,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:47,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:06:57,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:03,556 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:03 CET)" (scheduled at 2026-01-22 04:07:03.329776+01:00) 2026-01-22 04:07:03,556 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:03 CET)" executed successfully 2026-01-22 04:07:07,540 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:07 CET)" (scheduled at 2026-01-22 04:07:07.461608+01:00) 2026-01-22 04:07:07,540 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:07 CET)" executed successfully 2026-01-22 04:07:07,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:09,172 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:08 CET)" (scheduled at 2026-01-22 04:07:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:07:09,533 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:08:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.54 | 85.153 | 9.76542 | 4791.19 | | H4 | uptrend | 418.45 | 43.9118 | 2.75622 | 4791.19 | | H1 | uptrend | 366.71 | 30.9073 | 1.70008 | 4791.19 | | M30 | uptrend | 497.34 | 22.8037 | 1.70118 | 4791.23 | | M15 | uptrend | 267.41 | 14.9118 | 0.598134 | 4791.23 | | M5 | downtrend | 456.43 | 7.3969 | -0.506424 | 4791.23 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.10) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145200.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:07:17,818 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:27,840 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:37,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:47,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:07:57,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:05,417 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:09:03 CET)" was missed by 0:00:02.087599 2026-01-22 04:08:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:09:07 CET)" (scheduled at 2026-01-22 04:08:07.461608+01:00) 2026-01-22 04:08:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:09:07 CET)" executed successfully 2026-01-22 04:08:07,942 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:09,168 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:09:08 CET)" (scheduled at 2026-01-22 04:08:08.847423+01:00) 2026-01-22 04:08:09,337 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:09:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.46 | 85.153 | 9.76446 | 4787.13 | | H4 | uptrend | 418.3 | 43.9118 | 2.75526 | 4787.13 | | H1 | uptrend | 366.5 | 30.9073 | 1.69912 | 4787.13 | | M30 | uptrend | 497.06 | 22.8037 | 1.70021 | 4787.13 | | M15 | uptrend | 266.98 | 14.9118 | 0.597165 | 4787.13 | | M5 | downtrend | 457.31 | 7.3969 | -0.507395 | 4787.12 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.00) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145095.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.6% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:08:17,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:27,989 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:38,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:48,035 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:08:58,055 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:03 CET)" (scheduled at 2026-01-22 04:09:03.329776+01:00) 2026-01-22 04:09:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:03 CET)" executed successfully 2026-01-22 04:09:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:07 CET)" (scheduled at 2026-01-22 04:09:07.461608+01:00) 2026-01-22 04:09:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:07 CET)" executed successfully 2026-01-22 04:09:08,089 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:09,172 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:08 CET)" (scheduled at 2026-01-22 04:09:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:09:09,458 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:10:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.44 | 85.153 | 9.76418 | 4785.93 | | H4 | uptrend | 418.26 | 43.9118 | 2.75498 | 4785.94 | | H1 | uptrend | 365.8 | 30.9616 | 1.69884 | 4785.94 | | M30 | uptrend | 495.79 | 22.858 | 1.69992 | 4785.91 | | M15 | uptrend | 265.89 | 14.9661 | 0.596893 | 4785.98 | | M5 | downtrend | 452.74 | 7.4754 | -0.507665 | 4785.98 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.97) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.65% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144963.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:09:18,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:28,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:38,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:48,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:09:58,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:03,369 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:03 CET)" (scheduled at 2026-01-22 04:10:03.329776+01:00) 2026-01-22 04:10:03,369 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:03 CET)" executed successfully 2026-01-22 04:10:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:07 CET)" (scheduled at 2026-01-22 04:10:07.461608+01:00) 2026-01-22 04:10:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:07 CET)" executed successfully 2026-01-22 04:10:08,240 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:08,857 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:08 CET)" (scheduled at 2026-01-22 04:10:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:10:09,141 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:11:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+----------+---------| | D1 | uptrend | 764.47 | 85.153 | 9.76455 | 4787.5 | | H4 | uptrend | 418.32 | 43.9118 | 2.75535 | 4787.5 | | H1 | uptrend | 365.87 | 30.9616 | 1.69921 | 4787.49 | | M30 | uptrend | 495.9 | 22.858 | 1.70029 | 4787.49 | | M15 | uptrend | 266.05 | 14.9661 | 0.59725 | 4787.49 | | M5 | downtrend | 475.21 | 6.9994 | -0.49892 | 4787.49 | +------+-----------+------------+---------+----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.01) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.35% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144527.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:10:18,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:28,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:38,433 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:48,450 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:10:58,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:03 CET)" (scheduled at 2026-01-22 04:11:03.329776+01:00) 2026-01-22 04:11:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:03 CET)" executed successfully 2026-01-22 04:11:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:07 CET)" (scheduled at 2026-01-22 04:11:07.461608+01:00) 2026-01-22 04:11:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:07 CET)" executed successfully 2026-01-22 04:11:08,507 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:09,188 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:08 CET)" (scheduled at 2026-01-22 04:11:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:11:10,389 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:12:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.47 | 85.153 | 9.76455 | 4787.52 | | H4 | uptrend | 418.32 | 43.9118 | 2.75535 | 4787.52 | | H1 | uptrend | 365.88 | 30.9616 | 1.69922 | 4787.52 | | M30 | uptrend | 495.9 | 22.858 | 1.7003 | 4787.52 | | M15 | uptrend | 266.05 | 14.9661 | 0.597267 | 4787.56 | | M5 | downtrend | 470.2 | 7.0736 | -0.498903 | 4787.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.01) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.42% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144636.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:11:18,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:28,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:38,581 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:48,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:11:58,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:03,409 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:03 CET)" (scheduled at 2026-01-22 04:12:03.329776+01:00) 2026-01-22 04:12:03,409 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:03 CET)" executed successfully 2026-01-22 04:12:07,922 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:07 CET)" (scheduled at 2026-01-22 04:12:07.461608+01:00) 2026-01-22 04:12:07,922 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:07 CET)" executed successfully 2026-01-22 04:12:08,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:09,471 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:08 CET)" (scheduled at 2026-01-22 04:12:08.847423+01:00) 2026-01-22 04:12:09,628 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.45 | 85.153 | 9.76427 | 4786.33 | | H4 | uptrend | 418.27 | 43.9118 | 2.75507 | 4786.33 | | H1 | uptrend | 365.82 | 30.9616 | 1.69894 | 4786.33 | | M30 | uptrend | 495.82 | 22.858 | 1.70002 | 4786.33 | | M15 | uptrend | 265.92 | 14.9661 | 0.596976 | 4786.33 | | M5 | downtrend | 461.17 | 7.2165 | -0.499203 | 4786.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.98) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.54% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144800.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:12:18,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:28,693 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:38,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:48,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:12:58,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:03,368 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:03 CET)" (scheduled at 2026-01-22 04:13:03.329776+01:00) 2026-01-22 04:13:03,368 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:03 CET)" executed successfully 2026-01-22 04:13:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:07 CET)" (scheduled at 2026-01-22 04:13:07.461608+01:00) 2026-01-22 04:13:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:07 CET)" executed successfully 2026-01-22 04:13:08,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:09,069 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:08 CET)" (scheduled at 2026-01-22 04:13:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:13:09,352 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:14:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.46 | 85.153 | 9.76446 | 4787.13 | | H4 | uptrend | 418.3 | 43.9118 | 2.75526 | 4787.13 | | H1 | uptrend | 365.86 | 30.9616 | 1.69912 | 4787.13 | | M30 | uptrend | 495.88 | 22.858 | 1.70021 | 4787.13 | | M15 | uptrend | 266.01 | 14.9661 | 0.597165 | 4787.13 | | M5 | downtrend | 460.98 | 7.2165 | -0.499005 | 4787.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.00) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.54% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144815.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:13:18,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:28,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:38,861 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:48,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:13:58,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:04,641 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:15:03 CET)" was missed by 0:00:01.312033 2026-01-22 04:14:07,603 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:15:07 CET)" (scheduled at 2026-01-22 04:14:07.461608+01:00) 2026-01-22 04:14:07,603 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:15:07 CET)" executed successfully 2026-01-22 04:14:08,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:09,255 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:15:08 CET)" (scheduled at 2026-01-22 04:14:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:14:09,647 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:15:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.47 | 85.153 | 9.76457 | 4787.6 | | H4 | uptrend | 418.32 | 43.9118 | 2.75538 | 4787.63 | | H1 | uptrend | 365.88 | 30.9616 | 1.69924 | 4787.63 | | M30 | uptrend | 495.91 | 22.858 | 1.70033 | 4787.63 | | M15 | uptrend | 266.06 | 14.9661 | 0.597283 | 4787.63 | | M5 | downtrend | 460.88 | 7.2165 | -0.498887 | 4787.63 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.01) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.54% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144824.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:14:19,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:29,050 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:39,067 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:49,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:14:59,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:04,027 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:03 CET)" (scheduled at 2026-01-22 04:15:03.329776+01:00) 2026-01-22 04:15:04,027 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:03 CET)" executed successfully 2026-01-22 04:15:07,474 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:07 CET)" (scheduled at 2026-01-22 04:15:07.461608+01:00) 2026-01-22 04:15:07,474 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:07 CET)" executed successfully 2026-01-22 04:15:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:08 CET)" (scheduled at 2026-01-22 04:15:08.847423+01:00) 2026-01-22 04:15:09,064 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76501 | 4789.46 | | H4 | uptrend | 418.39 | 43.9118 | 2.75581 | 4789.46 | | H1 | uptrend | 365.98 | 30.9616 | 1.69968 | 4789.46 | | M30 | uptrend | 496.04 | 22.858 | 1.70076 | 4789.44 | | M15 | uptrend | 272.97 | 13.9586 | 0.571546 | 4789.35 | | M5 | downtrend | 478.99 | 6.8282 | -0.490589 | 4789.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.06) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144877.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:15:09,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:19,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:29,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:39,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:49,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:15:59,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:16:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:03 CET)" (scheduled at 2026-01-22 04:16:03.329776+01:00) 2026-01-22 04:16:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:03 CET)" executed successfully 2026-01-22 04:16:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:07 CET)" (scheduled at 2026-01-22 04:16:07.461608+01:00) 2026-01-22 04:16:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:07 CET)" executed successfully 2026-01-22 04:16:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:08 CET)" (scheduled at 2026-01-22 04:16:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:16:09,297 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:17:08 CET)" executed successfully 2026-01-22 04:16:09,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.76469 | 4788.1 | | H4 | uptrend | 418.34 | 43.9118 | 2.75549 | 4788.1 | | H1 | uptrend | 365.91 | 30.9616 | 1.69935 | 4788.1 | | M30 | uptrend | 495.94 | 22.858 | 1.70044 | 4788.12 | | M15 | uptrend | 270.39 | 14.085 | 0.571258 | 4788.13 | | M5 | downtrend | 470.56 | 6.9546 | -0.490877 | 4788.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.02) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.42% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144886.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:16:19,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:16:29,368 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:16:39,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:16:49,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:16:59,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:03 CET)" (scheduled at 2026-01-22 04:17:03.329776+01:00) 2026-01-22 04:17:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:03 CET)" executed successfully 2026-01-22 04:17:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:07 CET)" (scheduled at 2026-01-22 04:17:07.461608+01:00) 2026-01-22 04:17:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:07 CET)" executed successfully 2026-01-22 04:17:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:08 CET)" (scheduled at 2026-01-22 04:17:08.847423+01:00) 2026-01-22 04:17:08,984 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.76473 | 4788.26 | | H4 | uptrend | 418.34 | 43.9118 | 2.75553 | 4788.26 | | H1 | uptrend | 365.91 | 30.9616 | 1.69939 | 4788.26 | | M30 | uptrend | 495.95 | 22.858 | 1.70048 | 4788.26 | | M15 | uptrend | 270.3 | 14.09 | 0.571289 | 4788.26 | | M5 | downtrend | 470.19 | 6.9596 | -0.490851 | 4788.24 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144899.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:17:09,482 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:19,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:29,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:39,554 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:49,575 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:17:59,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:03 CET)" (scheduled at 2026-01-22 04:18:03.329776+01:00) 2026-01-22 04:18:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:03 CET)" executed successfully 2026-01-22 04:18:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:07 CET)" (scheduled at 2026-01-22 04:18:07.461608+01:00) 2026-01-22 04:18:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:07 CET)" executed successfully 2026-01-22 04:18:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:08 CET)" (scheduled at 2026-01-22 04:18:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.52 | 85.153 | 9.76514 | 4789.98 | | H4 | uptrend | 418.4 | 43.9118 | 2.75593 | 4789.98 | | H1 | uptrend | 366 | 30.9616 | 1.69978 | 4789.9 | | M30 | uptrend | 496.07 | 22.858 | 1.70086 | 4789.9 | | M15 | uptrend | 270.49 | 14.09 | 0.571676 | 4789.9 | | M5 | downtrend | 469.82 | 6.9596 | -0.490459 | 4789.9 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144930.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list'
2026-01-22 04:18:09,067 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:19:08 CET)" executed successfully
✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:18:09,631 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:19,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:29,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:39,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:49,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:18:59,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:03,830 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:03 CET)" (scheduled at 2026-01-22 04:19:03.329776+01:00) 2026-01-22 04:19:03,830 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:03 CET)" executed successfully 2026-01-22 04:19:07,809 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:07 CET)" (scheduled at 2026-01-22 04:19:07.461608+01:00) 2026-01-22 04:19:07,809 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:07 CET)" executed successfully 2026-01-22 04:19:08,872 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:08 CET)" (scheduled at 2026-01-22 04:19:08.847423+01:00) 2026-01-22 04:19:09,008 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:20:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.49 | 85.153 | 9.76474 | 4788.3 | | H4 | uptrend | 418.34 | 43.9118 | 2.75554 | 4788.3 | | H1 | uptrend | 365.92 | 30.9616 | 1.6994 | 4788.3 | | M30 | uptrend | 495.96 | 22.858 | 1.70049 | 4788.3 | | M15 | uptrend | 270.1 | 14.1007 | 0.571298 | 4788.3 | | M5 | downtrend | 469.46 | 6.9703 | -0.490837 | 4788.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144888.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:19:09,778 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:19,789 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:29,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:39,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:49,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:19:59,888 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:20:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:03 CET)" (scheduled at 2026-01-22 04:20:03.329776+01:00) 2026-01-22 04:20:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:03 CET)" executed successfully 2026-01-22 04:20:07,493 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:07 CET)" (scheduled at 2026-01-22 04:20:07.461608+01:00) 2026-01-22 04:20:07,493 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:07 CET)" executed successfully 2026-01-22 04:20:09,191 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:08 CET)" (scheduled at 2026-01-22 04:20:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:20:09,577 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:21:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.46 | 85.153 | 9.76446 | 4787.13 | | H4 | uptrend | 418.3 | 43.9118 | 2.75526 | 4787.13 | | H1 | uptrend | 365.86 | 30.9616 | 1.69912 | 4787.13 | | M30 | uptrend | 495.86 | 22.858 | 1.70017 | 4786.97 | | M15 | uptrend | 268.46 | 14.1793 | 0.570984 | 4786.97 | | M5 | downtrend | 488.7 | 6.5904 | -0.483106 | 4786.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.00) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.18% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144393.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:20:09,928 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:20:19,950 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:20:30,170 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:20:40,226 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:20:50,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:00,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:03,353 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:03 CET)" (scheduled at 2026-01-22 04:21:03.329776+01:00) 2026-01-22 04:21:03,353 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:03 CET)" executed successfully 2026-01-22 04:21:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:07 CET)" (scheduled at 2026-01-22 04:21:07.461608+01:00) 2026-01-22 04:21:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:07 CET)" executed successfully 2026-01-22 04:21:09,069 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:08 CET)" (scheduled at 2026-01-22 04:21:08.847423+01:00) 2026-01-22 04:21:09,241 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.48 | 85.153 | 9.76462 | 4787.8 | | H4 | uptrend | 418.33 | 43.9118 | 2.75542 | 4787.8 | | H1 | uptrend | 365.89 | 30.9616 | 1.69928 | 4787.8 | | M30 | uptrend | 495.92 | 22.858 | 1.70037 | 4787.8 | | M15 | uptrend | 267.83 | 14.2178 | 0.571185 | 4787.82 | | M5 | downtrend | 481.57 | 6.6847 | -0.48287 | 4787.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.02) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.27% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144506.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:21:10,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:20,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:30,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:40,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:21:50,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:00,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:03 CET)" (scheduled at 2026-01-22 04:22:03.329776+01:00) 2026-01-22 04:22:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:03 CET)" executed successfully 2026-01-22 04:22:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:07 CET)" (scheduled at 2026-01-22 04:22:07.461608+01:00) 2026-01-22 04:22:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:07 CET)" executed successfully 2026-01-22 04:22:09,068 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:08 CET)" (scheduled at 2026-01-22 04:22:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:22:09,404 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:23:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.5 | 85.153 | 9.76487 | 4788.86 | | H4 | uptrend | 418.36 | 43.9118 | 2.75567 | 4788.86 | | H1 | uptrend | 365.94 | 30.9616 | 1.69953 | 4788.86 | | M30 | uptrend | 496 | 22.858 | 1.70062 | 4788.86 | | M15 | uptrend | 267.94 | 14.2178 | 0.571426 | 4788.84 | | M5 | downtrend | 474.43 | 6.7818 | -0.482629 | 4788.84 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.04) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144681.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:22:10,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:20,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:30,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:40,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:22:50,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:00,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:03 CET)" (scheduled at 2026-01-22 04:23:03.329776+01:00) 2026-01-22 04:23:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:03 CET)" executed successfully 2026-01-22 04:23:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:07 CET)" (scheduled at 2026-01-22 04:23:07.461608+01:00) 2026-01-22 04:23:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:07 CET)" executed successfully 2026-01-22 04:23:08,898 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:08 CET)" (scheduled at 2026-01-22 04:23:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:23:09,145 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:24:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.52 | 85.153 | 9.76518 | 4790.18 | | H4 | uptrend | 418.41 | 43.9118 | 2.75598 | 4790.18 | | H1 | uptrend | 366.01 | 30.9616 | 1.69985 | 4790.18 | | M30 | uptrend | 496.09 | 22.858 | 1.70093 | 4790.2 | | M15 | uptrend | 267.67 | 14.24 | 0.571747 | 4790.2 | | M5 | downtrend | 466.79 | 6.8883 | -0.482308 | 4790.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.08) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144837.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:23:10,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:20,625 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:30,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:40,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:23:50,700 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:00,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:03,549 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:03 CET)" (scheduled at 2026-01-22 04:24:03.329776+01:00) 2026-01-22 04:24:03,549 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:03 CET)" executed successfully 2026-01-22 04:24:07,474 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:07 CET)" (scheduled at 2026-01-22 04:24:07.461608+01:00) 2026-01-22 04:24:07,474 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:07 CET)" executed successfully 2026-01-22 04:24:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:08 CET)" (scheduled at 2026-01-22 04:24:08.847423+01:00) 2026-01-22 04:24:09,042 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.51 | 85.153 | 9.76511 | 4789.88 | | H4 | uptrend | 418.4 | 43.9118 | 2.75591 | 4789.87 | | H1 | uptrend | 366 | 30.9616 | 1.69977 | 4789.87 | | M30 | uptrend | 496.06 | 22.858 | 1.70084 | 4789.78 | | M15 | uptrend | 267.63 | 14.24 | 0.571648 | 4789.78 | | M5 | downtrend | 466.89 | 6.8883 | -0.482407 | 4789.78 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.07) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144830.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:24:10,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:20,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:30,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:40,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:24:50,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:00,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:03,364 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:03 CET)" (scheduled at 2026-01-22 04:25:03.329776+01:00) 2026-01-22 04:25:03,364 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:03 CET)" executed successfully 2026-01-22 04:25:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:07 CET)" (scheduled at 2026-01-22 04:25:07.461608+01:00) 2026-01-22 04:25:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:07 CET)" executed successfully 2026-01-22 04:25:08,851 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:08 CET)" (scheduled at 2026-01-22 04:25:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:25:09,763 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:26:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76566 | 4792.19 | | H4 | uptrend | 418.48 | 43.9118 | 2.75646 | 4792.19 | | H1 | uptrend | 365.34 | 31.0273 | 1.70032 | 4792.19 | | M30 | uptrend | 494.8 | 22.9237 | 1.70141 | 4792.19 | | M15 | uptrend | 265.72 | 14.3564 | 0.572217 | 4792.19 | | M5 | downtrend | 479.04 | 6.5758 | -0.472511 | 4792.09 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.3% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144310.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:25:10,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:20,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:31,008 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:41,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:25:51,062 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:01,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:03,572 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:03 CET)" (scheduled at 2026-01-22 04:26:03.329776+01:00) 2026-01-22 04:26:03,572 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:03 CET)" executed successfully 2026-01-22 04:26:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:07 CET)" (scheduled at 2026-01-22 04:26:07.461608+01:00) 2026-01-22 04:26:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:07 CET)" executed successfully 2026-01-22 04:26:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:08 CET)" (scheduled at 2026-01-22 04:26:08.847423+01:00) 2026-01-22 04:26:09,016 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:27:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76568 | 4792.29 | | H4 | uptrend | 418.49 | 43.9118 | 2.75648 | 4792.29 | | H1 | uptrend | 365.23 | 31.0366 | 1.70034 | 4792.29 | | M30 | uptrend | 494.61 | 22.933 | 1.70143 | 4792.29 | | M15 | uptrend | 265.56 | 14.3657 | 0.572241 | 4792.29 | | M5 | downtrend | 478.32 | 6.5851 | -0.472464 | 4792.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144293.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 65.0% 📈 Signal Quality: fair 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:26:11,105 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:21,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:31,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:41,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:26:51,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:01,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:03 CET)" (scheduled at 2026-01-22 04:27:03.329776+01:00) 2026-01-22 04:27:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:03 CET)" executed successfully 2026-01-22 04:27:07,484 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:07 CET)" (scheduled at 2026-01-22 04:27:07.461608+01:00) 2026-01-22 04:27:07,484 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:07 CET)" executed successfully 2026-01-22 04:27:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:08 CET)" (scheduled at 2026-01-22 04:27:08.847423+01:00) 2026-01-22 04:27:08,985 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:28:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76633 | 4795.03 | | H4 | uptrend | 418.59 | 43.9118 | 2.75713 | 4795.03 | | H1 | uptrend | 362.93 | 31.2452 | 1.70099 | 4795.03 | | M30 | uptrend | 490.34 | 23.1416 | 1.70208 | 4795.03 | | M15 | uptrend | 262.05 | 14.5743 | 0.572888 | 4795.03 | | M5 | downtrend | 463 | 6.7937 | -0.471817 | 4795.03 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.5% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143862.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:27:11,250 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:21,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:31,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:41,496 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:27:51,511 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:01,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:03 CET)" (scheduled at 2026-01-22 04:28:03.329776+01:00) 2026-01-22 04:28:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:03 CET)" executed successfully 2026-01-22 04:28:07,649 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:07 CET)" (scheduled at 2026-01-22 04:28:07.461608+01:00) 2026-01-22 04:28:07,650 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:07 CET)" executed successfully 2026-01-22 04:28:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:08 CET)" (scheduled at 2026-01-22 04:28:08.847423+01:00) 2026-01-22 04:28:09,012 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76612 | 4794.16 | | H4 | uptrend | 418.55 | 43.9118 | 2.75692 | 4794.16 | | H1 | uptrend | 362.34 | 31.2923 | 1.70079 | 4794.16 | | M30 | uptrend | 489.28 | 23.1887 | 1.70187 | 4794.16 | | M15 | uptrend | 261.12 | 14.6214 | 0.572683 | 4794.16 | | M5 | downtrend | 460 | 6.8408 | -0.472015 | 4794.19 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143719.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 70.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:28:11,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:21,574 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:31,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:41,622 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:28:51,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:01,657 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:03 CET)" (scheduled at 2026-01-22 04:29:03.329776+01:00) 2026-01-22 04:29:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:03 CET)" executed successfully 2026-01-22 04:29:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:07 CET)" (scheduled at 2026-01-22 04:29:07.461608+01:00) 2026-01-22 04:29:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:07 CET)" executed successfully 2026-01-22 04:29:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:08 CET)" (scheduled at 2026-01-22 04:29:08.847423+01:00) 2026-01-22 04:29:09,003 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76585 | 4792.99 | | H4 | uptrend | 418.51 | 43.9118 | 2.75664 | 4792.99 | | H1 | uptrend | 362.28 | 31.2923 | 1.70051 | 4792.98 | | M30 | uptrend | 489.2 | 23.1887 | 1.70159 | 4792.98 | | M15 | uptrend | 260.99 | 14.6214 | 0.572404 | 4792.98 | | M5 | downtrend | 460.28 | 6.8408 | -0.472301 | 4792.98 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143698.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 70.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%) ⏸️ No clear signal: 1
2026-01-22 04:29:11,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:21,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:31,716 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:41,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:29:51,765 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:00,029 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 05:00:00 CET)" (scheduled at 2026-01-22 04:30:00+01:00) 2026-01-22 04:30:00,029 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 05:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 04:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 31.33 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 04:30:01,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:03 CET)" (scheduled at 2026-01-22 04:30:03.329776+01:00) 2026-01-22 04:30:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:03 CET)" executed successfully 2026-01-22 04:30:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:07 CET)" (scheduled at 2026-01-22 04:30:07.461608+01:00) 2026-01-22 04:30:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:07 CET)" executed successfully 2026-01-22 04:30:08,892 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:08 CET)" (scheduled at 2026-01-22 04:30:08.847423+01:00) 2026-01-22 04:30:09,092 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:31:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76576 | 4792.63 | | H4 | uptrend | 418.5 | 43.9118 | 2.75656 | 4792.63 | | H1 | uptrend | 362.27 | 31.2923 | 1.70043 | 4792.63 | | M30 | uptrend | 517.37 | 21.5674 | 1.67373 | 4792.63 | | M15 | uptrend | 267.49 | 13.6121 | 0.546162 | 4792.63 | | M5 | downtrend | 488.37 | 6.3871 | -0.467895 | 4792.63 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145667.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:30:11,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:21,828 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:31,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:41,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:30:51,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:01,908 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:03,666 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:03 CET)" (scheduled at 2026-01-22 04:31:03.329776+01:00) 2026-01-22 04:31:03,666 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:03 CET)" executed successfully 2026-01-22 04:31:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:07 CET)" (scheduled at 2026-01-22 04:31:07.461608+01:00) 2026-01-22 04:31:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:07 CET)" executed successfully 2026-01-22 04:31:09,073 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:08 CET)" (scheduled at 2026-01-22 04:31:08.847423+01:00) 2026-01-22 04:31:09,278 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.76588 | 4793.15 | | H4 | uptrend | 418.52 | 43.9118 | 2.75668 | 4793.15 | | H1 | uptrend | 362.29 | 31.2923 | 1.70055 | 4793.16 | | M30 | uptrend | 514.15 | 21.7038 | 1.67386 | 4793.16 | | M15 | uptrend | 264.9 | 13.7485 | 0.546287 | 4793.16 | | M5 | downtrend | 478.03 | 6.5236 | -0.467767 | 4793.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.34% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145489.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:31:11,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:21,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:31,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:41,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:31:52,004 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:02,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:04,214 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:03 CET)" (scheduled at 2026-01-22 04:32:03.329776+01:00) 2026-01-22 04:32:04,214 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:03 CET)" executed successfully 2026-01-22 04:32:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:07 CET)" (scheduled at 2026-01-22 04:32:07.461608+01:00) 2026-01-22 04:32:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:07 CET)" executed successfully 2026-01-22 04:32:09,087 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:08 CET)" (scheduled at 2026-01-22 04:32:08.847423+01:00) 2026-01-22 04:32:09,267 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.766 | 4793.63 | | H4 | uptrend | 418.54 | 43.9118 | 2.75679 | 4793.62 | | H1 | uptrend | 362.32 | 31.2923 | 1.70066 | 4793.62 | | M30 | uptrend | 512.72 | 21.7659 | 1.67397 | 4793.62 | | M15 | uptrend | 263.76 | 13.8106 | 0.546396 | 4793.62 | | M5 | downtrend | 473.41 | 6.5857 | -0.467661 | 4793.62 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.39% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145399.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:32:12,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:22,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:32,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:42,112 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:32:52,136 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:02,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:03,574 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:03 CET)" (scheduled at 2026-01-22 04:33:03.329776+01:00) 2026-01-22 04:33:03,576 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:03 CET)" executed successfully 2026-01-22 04:33:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:07 CET)" (scheduled at 2026-01-22 04:33:07.461608+01:00) 2026-01-22 04:33:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:07 CET)" executed successfully 2026-01-22 04:33:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:08 CET)" (scheduled at 2026-01-22 04:33:08.847423+01:00) 2026-01-22 04:33:09,002 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:34:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76582 | 4792.89 | | H4 | uptrend | 418.51 | 43.9118 | 2.75662 | 4792.89 | | H1 | uptrend | 362.28 | 31.2923 | 1.70049 | 4792.89 | | M30 | uptrend | 512.66 | 21.7659 | 1.6738 | 4792.89 | | M15 | uptrend | 263.67 | 13.8106 | 0.546224 | 4792.89 | | M5 | downtrend | 473.58 | 6.5857 | -0.467833 | 4792.89 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.39% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145386.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.4% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:33:12,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:22,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:32,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:42,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:33:52,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:02,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:04,784 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:35:03 CET)" was missed by 0:00:01.454471 2026-01-22 04:34:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:35:07 CET)" (scheduled at 2026-01-22 04:34:07.461608+01:00) 2026-01-22 04:34:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:35:07 CET)" executed successfully 2026-01-22 04:34:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:35:08 CET)" (scheduled at 2026-01-22 04:34:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect... ⚠️ MT5 not initialized, attempting to reconnect...
2026-01-22 04:34:11,897 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:35:08 CET)" executed successfully
⚠️ Keine Daten für D1 ❌ Signal-Analyse fehlgeschlagen
2026-01-22 04:34:12,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:22,345 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:32,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:42,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:34:52,420 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:02,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:03,397 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:03 CET)" (scheduled at 2026-01-22 04:35:03.329776+01:00) 2026-01-22 04:35:03,398 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:03 CET)" executed successfully 2026-01-22 04:35:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:07 CET)" (scheduled at 2026-01-22 04:35:07.461608+01:00) 2026-01-22 04:35:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:07 CET)" executed successfully 2026-01-22 04:35:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:08 CET)" (scheduled at 2026-01-22 04:35:08.847423+01:00) 2026-01-22 04:35:09,048 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:36:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76581 | 4792.82 | | H4 | uptrend | 418.51 | 43.9118 | 2.7566 | 4792.82 | | H1 | uptrend | 362.28 | 31.2923 | 1.70047 | 4792.82 | | M30 | uptrend | 512.66 | 21.7659 | 1.67378 | 4792.8 | | M15 | uptrend | 263.66 | 13.8106 | 0.546202 | 4792.8 | | M5 | downtrend | 501.41 | 6.1288 | -0.460954 | 4792.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144824.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.0% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:35:12,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:22,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:32,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:42,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:35:52,533 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:02,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:03 CET)" (scheduled at 2026-01-22 04:36:03.329776+01:00) 2026-01-22 04:36:03,335 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:03 CET)" executed successfully 2026-01-22 04:36:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:07 CET)" (scheduled at 2026-01-22 04:36:07.461608+01:00) 2026-01-22 04:36:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:07 CET)" executed successfully 2026-01-22 04:36:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:08 CET)" (scheduled at 2026-01-22 04:36:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:36:09,231 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:37:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76577 | 4792.68 | | H4 | uptrend | 418.5 | 43.9118 | 2.75657 | 4792.68 | | H1 | uptrend | 362.27 | 31.2923 | 1.70044 | 4792.7 | | M30 | uptrend | 512.65 | 21.7659 | 1.67374 | 4792.66 | | M15 | uptrend | 263.65 | 13.8106 | 0.546174 | 4792.68 | | M5 | downtrend | 495.21 | 6.206 | -0.46099 | 4792.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144946.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.1% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:36:12,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:22,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:32,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:42,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:36:52,660 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:02,683 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:04,547 - WARNING - Run time of job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:38:03 CET)" was missed by 0:00:01.217280 2026-01-22 04:37:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:38:07 CET)" (scheduled at 2026-01-22 04:37:07.461608+01:00) 2026-01-22 04:37:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:38:07 CET)" executed successfully 2026-01-22 04:37:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:38:08 CET)" (scheduled at 2026-01-22 04:37:08.847423+01:00) 2026-01-22 04:37:08,984 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:38:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76574 | 4792.54 | | H4 | uptrend | 418.5 | 43.9118 | 2.75654 | 4792.54 | | H1 | uptrend | 362.26 | 31.2923 | 1.7004 | 4792.54 | | M30 | uptrend | 512.64 | 21.7659 | 1.67371 | 4792.54 | | M15 | uptrend | 263.63 | 13.8106 | 0.546141 | 4792.54 | | M5 | downtrend | 495.24 | 6.206 | -0.461013 | 4792.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144943.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.1% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:37:12,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:22,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:32,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:42,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:37:52,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:02,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:03,895 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:03 CET)" (scheduled at 2026-01-22 04:38:03.329776+01:00) 2026-01-22 04:38:03,897 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:03 CET)" executed successfully 2026-01-22 04:38:07,683 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:07 CET)" (scheduled at 2026-01-22 04:38:07.461608+01:00) 2026-01-22 04:38:07,683 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:07 CET)" executed successfully 2026-01-22 04:38:08,864 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:08 CET)" (scheduled at 2026-01-22 04:38:08.847423+01:00) 2026-01-22 04:38:09,051 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:39:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76571 | 4792.4 | | H4 | uptrend | 418.49 | 43.9118 | 2.75651 | 4792.4 | | H1 | uptrend | 362.26 | 31.2923 | 1.70037 | 4792.41 | | M30 | uptrend | 512.63 | 21.7659 | 1.67368 | 4792.41 | | M15 | uptrend | 263.61 | 13.8106 | 0.546101 | 4792.37 | | M5 | downtrend | 492 | 6.2474 | -0.461056 | 4792.37 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.15% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145003.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:38:12,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:22,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:32,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:42,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:38:52,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:02,935 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:03,389 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:03 CET)" (scheduled at 2026-01-22 04:39:03.329776+01:00) 2026-01-22 04:39:03,391 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:03 CET)" executed successfully 2026-01-22 04:39:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:07 CET)" (scheduled at 2026-01-22 04:39:07.461608+01:00) 2026-01-22 04:39:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:07 CET)" executed successfully 2026-01-22 04:39:08,863 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:08 CET)" (scheduled at 2026-01-22 04:39:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:39:09,235 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:40:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76583 | 4792.94 | | H4 | uptrend | 418.51 | 43.9118 | 2.75663 | 4792.91 | | H1 | uptrend | 362.28 | 31.2923 | 1.70049 | 4792.91 | | M30 | uptrend | 512.66 | 21.7659 | 1.67378 | 4792.84 | | M15 | uptrend | 263.68 | 13.8106 | 0.546235 | 4792.94 | | M5 | downtrend | 490.33 | 6.2667 | -0.460916 | 4792.96 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.17% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 145043.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:39:12,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:22,988 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:33,007 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:43,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:39:53,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:03,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:03,528 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:03 CET)" (scheduled at 2026-01-22 04:40:03.329776+01:00) 2026-01-22 04:40:03,530 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:03 CET)" executed successfully 2026-01-22 04:40:07,483 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:07 CET)" (scheduled at 2026-01-22 04:40:07.461608+01:00) 2026-01-22 04:40:07,483 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:07 CET)" executed successfully 2026-01-22 04:40:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:08 CET)" (scheduled at 2026-01-22 04:40:08.847423+01:00) 2026-01-22 04:40:09,001 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:41:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76585 | 4793.01 | | H4 | uptrend | 418.51 | 43.9118 | 2.75665 | 4793.01 | | H1 | uptrend | 362.29 | 31.2923 | 1.70051 | 4793.01 | | M30 | uptrend | 512.67 | 21.7659 | 1.67382 | 4793.01 | | M15 | uptrend | 263.69 | 13.8106 | 0.546252 | 4793.01 | | M5 | downtrend | 526.2 | 5.8234 | -0.459637 | 4793.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.71% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144329.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:40:09,476 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 05:40:09 CET)" (scheduled at 2026-01-22 04:40:09.465739+01:00) 2026-01-22 04:40:09,486 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 05:40:09 CET)" executed successfully
[04:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 04:40:13,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:23,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:33,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:43,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:40:53,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:03,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:03,372 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:03 CET)" (scheduled at 2026-01-22 04:41:03.329776+01:00) 2026-01-22 04:41:03,374 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:03 CET)" executed successfully 2026-01-22 04:41:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:07 CET)" (scheduled at 2026-01-22 04:41:07.461608+01:00) 2026-01-22 04:41:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:07 CET)" executed successfully 2026-01-22 04:41:08,867 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:08 CET)" (scheduled at 2026-01-22 04:41:08.847423+01:00) 2026-01-22 04:41:09,086 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:42:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.56 | 85.153 | 9.76575 | 4792.58 | | H4 | uptrend | 418.5 | 43.9118 | 2.75654 | 4792.54 | | H1 | uptrend | 362.26 | 31.2923 | 1.7004 | 4792.54 | | M30 | uptrend | 512.64 | 21.7659 | 1.67372 | 4792.55 | | M15 | uptrend | 263.63 | 13.8106 | 0.546143 | 4792.55 | | M5 | downtrend | 519.69 | 5.8976 | -0.459741 | 4792.57 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.79% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144445.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 68.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:41:13,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:23,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:33,263 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:43,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:41:53,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:03,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:03 CET)" (scheduled at 2026-01-22 04:42:03.329776+01:00) 2026-01-22 04:42:03,347 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:03 CET)" executed successfully 2026-01-22 04:42:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:07 CET)" (scheduled at 2026-01-22 04:42:07.461608+01:00) 2026-01-22 04:42:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:07 CET)" executed successfully 2026-01-22 04:42:09,075 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:08 CET)" (scheduled at 2026-01-22 04:42:08.847423+01:00) 2026-01-22 04:42:09,244 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:43:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.54 | 85.153 | 9.76539 | 4791.07 | | H4 | uptrend | 418.44 | 43.9118 | 2.75619 | 4791.07 | | H1 | uptrend | 362.19 | 31.2923 | 1.70006 | 4791.07 | | M30 | uptrend | 511.93 | 21.7917 | 1.67337 | 4791.07 | | M15 | uptrend | 262.98 | 13.8363 | 0.545794 | 4791.07 | | M5 | downtrend | 509.96 | 6.0148 | -0.460095 | 4791.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.10) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144547.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:42:13,357 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:23,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:33,404 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:43,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:42:53,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:03,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:03,527 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:03 CET)" (scheduled at 2026-01-22 04:43:03.329776+01:00) 2026-01-22 04:43:03,530 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:03 CET)" executed successfully 2026-01-22 04:43:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:07 CET)" (scheduled at 2026-01-22 04:43:07.461608+01:00) 2026-01-22 04:43:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:07 CET)" executed successfully 2026-01-22 04:43:09,070 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:08 CET)" (scheduled at 2026-01-22 04:43:08.847423+01:00) 2026-01-22 04:43:09,246 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:44:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.54 | 85.153 | 9.76539 | 4791.08 | | H4 | uptrend | 418.44 | 43.9118 | 2.75619 | 4791.08 | | H1 | uptrend | 362.19 | 31.2923 | 1.70006 | 4791.08 | | M30 | uptrend | 511.73 | 21.8002 | 1.67337 | 4791.08 | | M15 | uptrend | 262.81 | 13.8449 | 0.545796 | 4791.08 | | M5 | downtrend | 509.23 | 6.0234 | -0.460093 | 4791.08 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.10) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.93% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144539.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:43:13,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:23,516 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:33,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:43,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:43:53,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:03 CET)" (scheduled at 2026-01-22 04:44:03.329776+01:00) 2026-01-22 04:44:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:03 CET)" executed successfully 2026-01-22 04:44:03,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:07,556 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:07 CET)" (scheduled at 2026-01-22 04:44:07.461608+01:00) 2026-01-22 04:44:07,556 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:07 CET)" executed successfully 2026-01-22 04:44:09,056 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:08 CET)" (scheduled at 2026-01-22 04:44:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:44:09,342 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:45:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.55 | 85.153 | 9.76555 | 4791.75 | | H4 | uptrend | 418.47 | 43.9118 | 2.75634 | 4791.71 | | H1 | uptrend | 362.22 | 31.2923 | 1.70019 | 4791.62 | | M30 | uptrend | 511.58 | 21.8088 | 1.67353 | 4791.78 | | M15 | uptrend | 262.73 | 13.8535 | 0.545952 | 4791.74 | | M5 | downtrend | 508.36 | 6.0319 | -0.459958 | 4791.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.12) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.94% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144543.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 68.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:44:13,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:23,761 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:33,793 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:43,811 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:44:53,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:03,637 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:03 CET)" (scheduled at 2026-01-22 04:45:03.329776+01:00) 2026-01-22 04:45:03,637 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:03 CET)" executed successfully 2026-01-22 04:45:03,864 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:07 CET)" (scheduled at 2026-01-22 04:45:07.461608+01:00) 2026-01-22 04:45:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:07 CET)" executed successfully 2026-01-22 04:45:09,102 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:08 CET)" (scheduled at 2026-01-22 04:45:08.847423+01:00) 2026-01-22 04:45:09,260 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:46:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.53 | 85.153 | 9.76529 | 4790.64 | | H4 | uptrend | 418.43 | 43.9118 | 2.75609 | 4790.64 | | H1 | uptrend | 362.17 | 31.2923 | 1.69995 | 4790.64 | | M30 | uptrend | 510.93 | 21.8331 | 1.67326 | 4790.64 | | M15 | uptrend | 267.21 | 12.9125 | 0.517543 | 4790.66 | | M5 | downtrend | 541.68 | 5.6496 | -0.459046 | 4790.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.09) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.51% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144067.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 50.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 68.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:45:13,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:23,914 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:33,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:43,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:45:53,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:03,496 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:03 CET)" (scheduled at 2026-01-22 04:46:03.329776+01:00) 2026-01-22 04:46:03,496 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:03 CET)" executed successfully 2026-01-22 04:46:04,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:07 CET)" (scheduled at 2026-01-22 04:46:07.461608+01:00) 2026-01-22 04:46:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:07 CET)" executed successfully 2026-01-22 04:46:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:08 CET)" (scheduled at 2026-01-22 04:46:08.847423+01:00) 2026-01-22 04:46:09,013 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:47:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.7658 | 4792.8 | | H4 | uptrend | 418.51 | 43.9118 | 2.7566 | 4792.8 | | H1 | uptrend | 362.28 | 31.2923 | 1.70046 | 4792.8 | | M30 | uptrend | 511.08 | 21.8331 | 1.67378 | 4792.8 | | M15 | uptrend | 263.98 | 13.0832 | 0.518049 | 4792.8 | | M5 | downtrend | 525.22 | 5.8203 | -0.458541 | 4792.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.72% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144241.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:46:14,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:24,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:34,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:44,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:46:54,126 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:03 CET)" (scheduled at 2026-01-22 04:47:03.329776+01:00) 2026-01-22 04:47:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:03 CET)" executed successfully 2026-01-22 04:47:04,157 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:07 CET)" (scheduled at 2026-01-22 04:47:07.461608+01:00) 2026-01-22 04:47:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:07 CET)" executed successfully 2026-01-22 04:47:08,875 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:08 CET)" (scheduled at 2026-01-22 04:47:08.847423+01:00) 2026-01-22 04:47:09,078 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:48:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.57 | 85.153 | 9.76584 | 4792.96 | | H4 | uptrend | 418.51 | 43.9118 | 2.75664 | 4792.96 | | H1 | uptrend | 362.28 | 31.2923 | 1.7005 | 4792.96 | | M30 | uptrend | 511.09 | 21.8331 | 1.67381 | 4792.96 | | M15 | uptrend | 263.03 | 13.1311 | 0.518087 | 4792.96 | | M5 | downtrend | 520.89 | 5.8682 | -0.458503 | 4792.96 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.78% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144284.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:47:14,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:24,204 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:34,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:44,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:47:54,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:03,358 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:03 CET)" (scheduled at 2026-01-22 04:48:03.329776+01:00) 2026-01-22 04:48:03,358 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:03 CET)" executed successfully 2026-01-22 04:48:04,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:07 CET)" (scheduled at 2026-01-22 04:48:07.461608+01:00) 2026-01-22 04:48:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:07 CET)" executed successfully 2026-01-22 04:48:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:08 CET)" (scheduled at 2026-01-22 04:48:08.847423+01:00) 2026-01-22 04:48:09,045 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:49:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.58 | 85.153 | 9.76597 | 4793.5 | | H4 | uptrend | 418.53 | 43.9118 | 2.75677 | 4793.5 | | H1 | uptrend | 362.31 | 31.2923 | 1.70063 | 4793.5 | | M30 | uptrend | 511.13 | 21.8331 | 1.67394 | 4793.5 | | M15 | uptrend | 263.1 | 13.1311 | 0.518214 | 4793.5 | | M5 | downtrend | 520.75 | 5.8682 | -0.458375 | 4793.5 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.78% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144294.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:48:14,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:24,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:34,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:44,513 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:48:54,534 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:03,335 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:03 CET)" (scheduled at 2026-01-22 04:49:03.329776+01:00) 2026-01-22 04:49:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:03 CET)" executed successfully 2026-01-22 04:49:04,563 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:07 CET)" (scheduled at 2026-01-22 04:49:07.461608+01:00) 2026-01-22 04:49:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:07 CET)" executed successfully 2026-01-22 04:49:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:08 CET)" (scheduled at 2026-01-22 04:49:08.847423+01:00) 2026-01-22 04:49:08,992 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:50:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76604 | 4793.8 | | H4 | uptrend | 418.54 | 43.9118 | 2.75684 | 4793.8 | | H1 | uptrend | 362.33 | 31.2923 | 1.7007 | 4793.8 | | M30 | uptrend | 511.15 | 21.8331 | 1.67401 | 4793.8 | | M15 | uptrend | 262.34 | 13.1711 | 0.518285 | 4793.8 | | M5 | downtrend | 517.14 | 5.9082 | -0.458304 | 4793.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.82% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 144318.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:49:14,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:24,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:34,640 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:44,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:49:54,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:03 CET)" (scheduled at 2026-01-22 04:50:03.329776+01:00) 2026-01-22 04:50:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:03 CET)" executed successfully 2026-01-22 04:50:04,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:07 CET)" (scheduled at 2026-01-22 04:50:07.461608+01:00) 2026-01-22 04:50:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:07 CET)" executed successfully 2026-01-22 04:50:08,897 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:08 CET)" (scheduled at 2026-01-22 04:50:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 04:50:09,157 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:51:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76623 | 4794.61 | | H4 | uptrend | 418.57 | 43.9118 | 2.75703 | 4794.61 | | H1 | uptrend | 362.37 | 31.2923 | 1.70088 | 4794.58 | | M30 | uptrend | 509.74 | 21.8959 | 1.6742 | 4794.58 | | M15 | uptrend | 261.11 | 13.2375 | 0.51846 | 4794.54 | | M5 | downtrend | 540.13 | 5.5929 | -0.453134 | 4794.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.52% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143684.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:50:14,731 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:24,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:34,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:44,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:50:54,829 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:03 CET)" (scheduled at 2026-01-22 04:51:03.329776+01:00) 2026-01-22 04:51:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:03 CET)" executed successfully 2026-01-22 04:51:04,849 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:07,512 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:07 CET)" (scheduled at 2026-01-22 04:51:07.461608+01:00) 2026-01-22 04:51:07,512 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:07 CET)" executed successfully 2026-01-22 04:51:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:08 CET)" (scheduled at 2026-01-22 04:51:08.847423+01:00) 2026-01-22 04:51:09,165 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:52:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76634 | 4795.07 | | H4 | uptrend | 418.59 | 43.9118 | 2.75714 | 4795.07 | | H1 | uptrend | 362.39 | 31.2923 | 1.701 | 4795.07 | | M30 | uptrend | 509.78 | 21.8959 | 1.67431 | 4795.07 | | M15 | uptrend | 261.17 | 13.2375 | 0.518585 | 4795.07 | | M5 | downtrend | 537.17 | 5.6221 | -0.453009 | 4795.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.56% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143756.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:51:14,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:24,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:34,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:44,945 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:51:54,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:03,557 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:03 CET)" (scheduled at 2026-01-22 04:52:03.329776+01:00) 2026-01-22 04:52:03,557 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:03 CET)" executed successfully 2026-01-22 04:52:04,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:07 CET)" (scheduled at 2026-01-22 04:52:07.461608+01:00) 2026-01-22 04:52:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:07 CET)" executed successfully 2026-01-22 04:52:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:08 CET)" (scheduled at 2026-01-22 04:52:08.847423+01:00) 2026-01-22 04:52:08,983 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:53:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76657 | 4796.06 | | H4 | uptrend | 418.62 | 43.9118 | 2.75737 | 4796.06 | | H1 | uptrend | 361.79 | 31.3487 | 1.70124 | 4796.06 | | M30 | uptrend | 507.3 | 22.0059 | 1.67454 | 4796.06 | | M15 | uptrend | 259.13 | 13.3475 | 0.518819 | 4796.06 | | M5 | downtrend | 525.87 | 5.74 | -0.452775 | 4796.06 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.7% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143623.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:52:15,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:25,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:35,063 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:45,095 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:52:55,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:03 CET)" (scheduled at 2026-01-22 04:53:03.329776+01:00) 2026-01-22 04:53:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:03 CET)" executed successfully 2026-01-22 04:53:05,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:07,955 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:07 CET)" (scheduled at 2026-01-22 04:53:07.461608+01:00) 2026-01-22 04:53:07,955 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:07 CET)" executed successfully 2026-01-22 04:53:08,857 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:08 CET)" (scheduled at 2026-01-22 04:53:08.847423+01:00) 2026-01-22 04:53:08,980 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:54:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76651 | 4795.8 | | H4 | uptrend | 418.61 | 43.9118 | 2.75731 | 4795.8 | | H1 | uptrend | 361.77 | 31.3487 | 1.70117 | 4795.8 | | M30 | uptrend | 507.28 | 22.0059 | 1.67448 | 4795.8 | | M15 | uptrend | 259.1 | 13.3475 | 0.518758 | 4795.8 | | M5 | downtrend | 525.94 | 5.74 | -0.452837 | 4795.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.7% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143618.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:53:15,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:25,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:35,201 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:45,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:53:55,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:03 CET)" (scheduled at 2026-01-22 04:54:03.329776+01:00) 2026-01-22 04:54:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:03 CET)" executed successfully 2026-01-22 04:54:05,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:07 CET)" (scheduled at 2026-01-22 04:54:07.461608+01:00) 2026-01-22 04:54:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:07 CET)" executed successfully 2026-01-22 04:54:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:08 CET)" (scheduled at 2026-01-22 04:54:08.847423+01:00) 2026-01-22 04:54:09,178 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:55:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76639 | 4795.31 | | H4 | uptrend | 418.6 | 43.9118 | 2.75719 | 4795.31 | | H1 | uptrend | 361.75 | 31.3487 | 1.70106 | 4795.31 | | M30 | uptrend | 507.25 | 22.0059 | 1.67437 | 4795.31 | | M15 | uptrend | 259.05 | 13.3475 | 0.518644 | 4795.32 | | M5 | downtrend | 523.6 | 5.7671 | -0.45295 | 4795.32 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.73% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143655.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:54:15,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:25,317 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:35,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:45,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:54:55,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:03,613 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:03 CET)" (scheduled at 2026-01-22 04:55:03.329776+01:00) 2026-01-22 04:55:03,613 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:03 CET)" executed successfully 2026-01-22 04:55:05,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:07,531 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:07 CET)" (scheduled at 2026-01-22 04:55:07.461608+01:00) 2026-01-22 04:55:07,531 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:07 CET)" executed successfully 2026-01-22 04:55:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:08 CET)" (scheduled at 2026-01-22 04:55:08.847423+01:00) 2026-01-22 04:55:08,999 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:56:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76623 | 4794.63 | | H4 | uptrend | 418.57 | 43.9118 | 2.75703 | 4794.63 | | H1 | uptrend | 361.72 | 31.3487 | 1.7009 | 4794.63 | | M30 | uptrend | 507.2 | 22.0059 | 1.67421 | 4794.63 | | M15 | uptrend | 258.97 | 13.3475 | 0.518481 | 4794.63 | | M5 | downtrend | 552.26 | 5.3816 | -0.445806 | 4794.63 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143069.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 04:55:15,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:25,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:35,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:45,513 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:55:55,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:03 CET)" (scheduled at 2026-01-22 04:56:03.329776+01:00) 2026-01-22 04:56:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:03 CET)" executed successfully 2026-01-22 04:56:05,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:07,577 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:07 CET)" (scheduled at 2026-01-22 04:56:07.461608+01:00) 2026-01-22 04:56:07,577 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:07 CET)" executed successfully 2026-01-22 04:56:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:08 CET)" (scheduled at 2026-01-22 04:56:08.847423+01:00) 2026-01-22 04:56:08,992 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:57:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76631 | 4794.95 | | H4 | uptrend | 418.58 | 43.9118 | 2.75711 | 4794.95 | | H1 | uptrend | 361.73 | 31.3487 | 1.70097 | 4794.95 | | M30 | uptrend | 507.22 | 22.0059 | 1.67428 | 4794.95 | | M15 | uptrend | 259 | 13.3475 | 0.518557 | 4794.95 | | M5 | downtrend | 546.15 | 5.4409 | -0.445731 | 4794.95 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143199.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 04:56:15,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:25,604 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:35,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:45,654 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:56:55,664 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:03 CET)" (scheduled at 2026-01-22 04:57:03.329776+01:00) 2026-01-22 04:57:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:03 CET)" executed successfully 2026-01-22 04:57:05,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:07 CET)" (scheduled at 2026-01-22 04:57:07.461608+01:00) 2026-01-22 04:57:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:07 CET)" executed successfully 2026-01-22 04:57:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:08 CET)" (scheduled at 2026-01-22 04:57:08.847423+01:00) 2026-01-22 04:57:09,101 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76658 | 4796.11 | | H4 | uptrend | 418.62 | 43.9118 | 2.75738 | 4796.11 | | H1 | uptrend | 361.79 | 31.3487 | 1.70125 | 4796.11 | | M30 | uptrend | 507.3 | 22.0059 | 1.67456 | 4796.11 | | M15 | uptrend | 259.14 | 13.3475 | 0.518831 | 4796.11 | | M5 | downtrend | 536.58 | 5.5345 | -0.445457 | 4796.11 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.56% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143407.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:57:15,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:25,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:35,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:45,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:57:55,814 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:03,457 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:03 CET)" (scheduled at 2026-01-22 04:58:03.329776+01:00) 2026-01-22 04:58:03,457 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:03 CET)" executed successfully 2026-01-22 04:58:05,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:07 CET)" (scheduled at 2026-01-22 04:58:07.461608+01:00) 2026-01-22 04:58:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:07 CET)" executed successfully 2026-01-22 04:58:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:08 CET)" (scheduled at 2026-01-22 04:58:08.847423+01:00) 2026-01-22 04:58:08,999 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 04:59:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76645 | 4795.53 | | H4 | uptrend | 418.6 | 43.9118 | 2.75725 | 4795.53 | | H1 | uptrend | 361.76 | 31.3487 | 1.70111 | 4795.53 | | M30 | uptrend | 507.26 | 22.0059 | 1.67442 | 4795.53 | | M15 | uptrend | 259.07 | 13.3475 | 0.518694 | 4795.53 | | M5 | downtrend | 536.75 | 5.5345 | -0.445594 | 4795.53 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.56% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143396.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:58:15,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:25,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:35,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:45,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:58:55,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:03 CET)" (scheduled at 2026-01-22 04:59:03.329776+01:00) 2026-01-22 04:59:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:03 CET)" executed successfully 2026-01-22 04:59:05,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:07 CET)" (scheduled at 2026-01-22 04:59:07.461608+01:00) 2026-01-22 04:59:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:07 CET)" executed successfully 2026-01-22 04:59:08,866 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:08 CET)" (scheduled at 2026-01-22 04:59:08.847423+01:00) 2026-01-22 04:59:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:00:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76648 | 4795.66 | | H4 | uptrend | 418.61 | 43.9118 | 2.75728 | 4795.66 | | H1 | uptrend | 361.77 | 31.3487 | 1.70114 | 4795.66 | | M30 | uptrend | 507.27 | 22.0059 | 1.67445 | 4795.66 | | M15 | uptrend | 259.09 | 13.3475 | 0.518725 | 4795.66 | | M5 | downtrend | 536.71 | 5.5345 | -0.445563 | 4795.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.56% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 143398.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 04:59:16,005 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:26,026 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:36,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:46,074 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 04:59:56,090 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:00,025 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 05:30:00 CET)" (scheduled at 2026-01-22 05:00:00+01:00) 2026-01-22 05:00:00,033 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 05:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 05:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 29.15 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 05:00:03,486 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:03 CET)" (scheduled at 2026-01-22 05:00:03.329776+01:00) 2026-01-22 05:00:03,486 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:03 CET)" executed successfully 2026-01-22 05:00:06,122 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:07,538 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:07 CET)" (scheduled at 2026-01-22 05:00:07.461608+01:00) 2026-01-22 05:00:07,557 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:07 CET)" executed successfully 2026-01-22 05:00:08,963 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:08 CET)" (scheduled at 2026-01-22 05:00:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:00:09,199 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:01:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.7667 | 4796.58 | | H4 | uptrend | 418.64 | 43.9118 | 2.7575 | 4796.59 | | H1 | uptrend | 393.19 | 29.1288 | 1.71796 | 4796.59 | | M30 | uptrend | 536.8 | 20.4534 | 1.64691 | 4796.59 | | M15 | uptrend | 264.71 | 12.4134 | 0.4929 | 4796.59 | | M5 | downtrend | 563.54 | 5.1803 | -0.437897 | 4796.59 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148486.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:00:16,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:26,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:36,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:46,287 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:00:56,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:03,435 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:03 CET)" (scheduled at 2026-01-22 05:01:03.329776+01:00) 2026-01-22 05:01:03,435 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:03 CET)" executed successfully 2026-01-22 05:01:06,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:07,485 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:07 CET)" (scheduled at 2026-01-22 05:01:07.461608+01:00) 2026-01-22 05:01:07,485 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:07 CET)" executed successfully 2026-01-22 05:01:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:08 CET)" (scheduled at 2026-01-22 05:01:08.847423+01:00) 2026-01-22 05:01:09,172 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:02:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.7667 | 4796.6 | | H4 | uptrend | 418.64 | 43.9118 | 2.7575 | 4796.6 | | H1 | uptrend | 392.36 | 29.1902 | 1.71796 | 4796.6 | | M30 | uptrend | 535.19 | 20.5148 | 1.64691 | 4796.6 | | M15 | uptrend | 263.41 | 12.4748 | 0.492902 | 4796.6 | | M5 | downtrend | 556.97 | 5.2417 | -0.437921 | 4796.49 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148347.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:01:16,354 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:26,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:36,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:46,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:01:56,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:03,429 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:03 CET)" (scheduled at 2026-01-22 05:02:03.329776+01:00) 2026-01-22 05:02:03,432 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:03 CET)" executed successfully 2026-01-22 05:02:06,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:07,575 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:07 CET)" (scheduled at 2026-01-22 05:02:07.461608+01:00) 2026-01-22 05:02:07,575 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:07 CET)" executed successfully 2026-01-22 05:02:08,890 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:08 CET)" (scheduled at 2026-01-22 05:02:08.847423+01:00) 2026-01-22 05:02:09,092 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:03:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76663 | 4796.32 | | H4 | uptrend | 418.63 | 43.9118 | 2.75743 | 4796.32 | | H1 | uptrend | 391.91 | 29.2224 | 1.7179 | 4796.33 | | M30 | uptrend | 534.33 | 20.547 | 1.64684 | 4796.33 | | M15 | uptrend | 262.7 | 12.507 | 0.492839 | 4796.33 | | M5 | downtrend | 553.62 | 5.2739 | -0.437959 | 4796.33 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148251.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:02:16,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:26,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:36,548 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:46,560 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:02:56,594 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:03,457 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:03 CET)" (scheduled at 2026-01-22 05:03:03.329776+01:00) 2026-01-22 05:03:03,457 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:03 CET)" executed successfully 2026-01-22 05:03:06,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:07 CET)" (scheduled at 2026-01-22 05:03:07.461608+01:00) 2026-01-22 05:03:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:07 CET)" executed successfully 2026-01-22 05:03:08,878 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:08 CET)" (scheduled at 2026-01-22 05:03:08.847423+01:00) 2026-01-22 05:03:09,036 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76666 | 4796.43 | | H4 | uptrend | 418.64 | 43.9118 | 2.75746 | 4796.43 | | H1 | uptrend | 391.92 | 29.2224 | 1.71792 | 4796.43 | | M30 | uptrend | 534.34 | 20.547 | 1.64687 | 4796.43 | | M15 | uptrend | 262.71 | 12.507 | 0.49286 | 4796.42 | | M5 | downtrend | 553.59 | 5.2739 | -0.437938 | 4796.42 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148253.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:03:16,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:26,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:36,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:46,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:03:56,723 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:03,400 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:03 CET)" (scheduled at 2026-01-22 05:04:03.329776+01:00) 2026-01-22 05:04:03,400 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:03 CET)" executed successfully 2026-01-22 05:04:06,749 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:07 CET)" (scheduled at 2026-01-22 05:04:07.461608+01:00) 2026-01-22 05:04:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:07 CET)" executed successfully 2026-01-22 05:04:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:08 CET)" (scheduled at 2026-01-22 05:04:08.847423+01:00) 2026-01-22 05:04:09,055 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:05:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76672 | 4796.68 | | H4 | uptrend | 418.65 | 43.9118 | 2.75752 | 4796.68 | | H1 | uptrend | 391.77 | 29.2345 | 1.71798 | 4796.68 | | M30 | uptrend | 534.05 | 20.5591 | 1.64693 | 4796.68 | | M15 | uptrend | 262.49 | 12.5191 | 0.492921 | 4796.68 | | M5 | downtrend | 552.24 | 5.286 | -0.437876 | 4796.68 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.49% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148237.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:04:16,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:26,816 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:36,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:46,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:04:56,880 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:03,335 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:03 CET)" (scheduled at 2026-01-22 05:05:03.329776+01:00) 2026-01-22 05:05:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:03 CET)" executed successfully 2026-01-22 05:05:06,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:07 CET)" (scheduled at 2026-01-22 05:05:07.461608+01:00) 2026-01-22 05:05:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:07 CET)" executed successfully 2026-01-22 05:05:08,864 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:08 CET)" (scheduled at 2026-01-22 05:05:08.847423+01:00) 2026-01-22 05:05:09,047 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.7667 | 4796.59 | | H4 | uptrend | 418.64 | 43.9118 | 2.7575 | 4796.59 | | H1 | uptrend | 391.77 | 29.2345 | 1.71796 | 4796.59 | | M30 | uptrend | 534.04 | 20.5591 | 1.64691 | 4796.59 | | M15 | uptrend | 262.48 | 12.5191 | 0.4929 | 4796.59 | | M5 | downtrend | 578.94 | 4.9213 | -0.42737 | 4796.59 | +------+-----------+------------+---------+----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147707.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:05:16,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:26,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:36,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:47,014 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:05:57,039 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:03,416 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:03 CET)" (scheduled at 2026-01-22 05:06:03.329776+01:00) 2026-01-22 05:06:03,416 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:03 CET)" executed successfully 2026-01-22 05:06:07,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:07,492 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:07 CET)" (scheduled at 2026-01-22 05:06:07.461608+01:00) 2026-01-22 05:06:07,505 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:07 CET)" executed successfully 2026-01-22 05:06:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:08 CET)" (scheduled at 2026-01-22 05:06:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76694 | 4797.6 | | H4 | uptrend | 418.68 | 43.9118 | 2.75773 | 4797.6 | | H1 | uptrend | 391 | 29.2959 | 1.71819 | 4797.56 | | M30 | uptrend | 532.52 | 20.6206 | 1.64713 | 4797.56 | | M15 | uptrend | 261.32 | 12.5806 | 0.493129 | 4797.56 | | M5 | downtrend | 568.07 | 5.0127 | -0.427141 | 4797.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 626.27) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.28% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147654.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 05:06:09,059 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:07:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:06:17,075 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:27,110 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:37,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:47,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:06:57,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:03,573 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:03 CET)" (scheduled at 2026-01-22 05:07:03.329776+01:00) 2026-01-22 05:07:03,573 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:03 CET)" executed successfully 2026-01-22 05:07:07,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:07 CET)" (scheduled at 2026-01-22 05:07:07.461608+01:00) 2026-01-22 05:07:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:07 CET)" executed successfully 2026-01-22 05:07:08,870 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:08 CET)" (scheduled at 2026-01-22 05:07:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:07:09,078 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:08:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76703 | 4798.02 | | H4 | uptrend | 417.58 | 44.0289 | 2.75783 | 4798.02 | | H1 | uptrend | 389.14 | 29.4374 | 1.7183 | 4798.02 | | M30 | uptrend | 528.93 | 20.762 | 1.64724 | 4798.02 | | M15 | uptrend | 258.47 | 12.722 | 0.493236 | 4798.01 | | M5 | downtrend | 552.35 | 5.1542 | -0.427034 | 4798.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.83) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147307.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:07:17,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:27,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:37,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:47,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:07:57,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:03 CET)" (scheduled at 2026-01-22 05:08:03.329776+01:00) 2026-01-22 05:08:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:03 CET)" executed successfully 2026-01-22 05:08:07,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:07 CET)" (scheduled at 2026-01-22 05:08:07.461608+01:00) 2026-01-22 05:08:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:07 CET)" executed successfully 2026-01-22 05:08:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:08 CET)" (scheduled at 2026-01-22 05:08:08.847423+01:00) 2026-01-22 05:08:09,153 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:09:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76715 | 4798.49 | | H4 | uptrend | 417.6 | 44.0289 | 2.75794 | 4798.49 | | H1 | uptrend | 389.17 | 29.4374 | 1.71841 | 4798.51 | | M30 | uptrend | 528.97 | 20.762 | 1.64736 | 4798.51 | | M15 | uptrend | 258.53 | 12.722 | 0.493354 | 4798.51 | | M5 | downtrend | 552.19 | 5.1542 | -0.426916 | 4798.51 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.84) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147332.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:08:17,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:27,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:37,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:47,445 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:08:57,479 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:03,354 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:03 CET)" (scheduled at 2026-01-22 05:09:03.329776+01:00) 2026-01-22 05:09:03,354 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:03 CET)" executed successfully 2026-01-22 05:09:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:07 CET)" (scheduled at 2026-01-22 05:09:07.461608+01:00) 2026-01-22 05:09:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:07 CET)" executed successfully 2026-01-22 05:09:07,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:08,963 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:08 CET)" (scheduled at 2026-01-22 05:09:08.847423+01:00) 2026-01-22 05:09:09,132 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:10:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76722 | 4798.82 | | H4 | uptrend | 417.61 | 44.0289 | 2.75802 | 4798.82 | | H1 | uptrend | 389.19 | 29.4374 | 1.71849 | 4798.82 | | M30 | uptrend | 528.99 | 20.762 | 1.64743 | 4798.82 | | M15 | uptrend | 258.57 | 12.722 | 0.493427 | 4798.82 | | M5 | downtrend | 552.1 | 5.1542 | -0.426843 | 4798.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.85) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147338.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:09:17,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:27,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:37,579 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:47,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:09:57,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:03 CET)" (scheduled at 2026-01-22 05:10:03.329776+01:00) 2026-01-22 05:10:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:03 CET)" executed successfully 2026-01-22 05:10:07,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:07,914 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:07 CET)" (scheduled at 2026-01-22 05:10:07.461608+01:00) 2026-01-22 05:10:07,917 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:07 CET)" executed successfully 2026-01-22 05:10:08,985 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:08 CET)" (scheduled at 2026-01-22 05:10:08.847423+01:00) 2026-01-22 05:10:09,105 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:11:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.153 | 9.76745 | 4799.79 | | H4 | uptrend | 417.64 | 44.0289 | 2.75825 | 4799.79 | | H1 | uptrend | 389.24 | 29.4374 | 1.71872 | 4799.79 | | M30 | uptrend | 529.06 | 20.762 | 1.64766 | 4799.79 | | M15 | uptrend | 258.69 | 12.722 | 0.493656 | 4799.79 | | M5 | downtrend | 573.79 | 4.8467 | -0.417155 | 4799.79 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.88) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.2% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146927.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:10:17,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:27,703 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:37,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:47,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:10:57,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:03,363 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:03 CET)" (scheduled at 2026-01-22 05:11:03.329776+01:00) 2026-01-22 05:11:03,363 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:03 CET)" executed successfully 2026-01-22 05:11:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:07 CET)" (scheduled at 2026-01-22 05:11:07.461608+01:00) 2026-01-22 05:11:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:07 CET)" executed successfully 2026-01-22 05:11:07,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:08,869 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:08 CET)" (scheduled at 2026-01-22 05:11:08.847423+01:00) 2026-01-22 05:11:09,052 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:12:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.153 | 9.76748 | 4799.91 | | H4 | uptrend | 417.46 | 44.0482 | 2.75828 | 4799.91 | | H1 | uptrend | 388.99 | 29.4566 | 1.71874 | 4799.91 | | M30 | uptrend | 528.58 | 20.7813 | 1.64769 | 4799.91 | | M15 | uptrend | 258.31 | 12.7413 | 0.493685 | 4799.91 | | M5 | downtrend | 564.6 | 4.9253 | -0.417127 | 4799.91 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.81) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147017.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:11:17,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:27,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:37,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:47,909 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:11:57,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:03,418 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:03 CET)" (scheduled at 2026-01-22 05:12:03.329776+01:00) 2026-01-22 05:12:03,418 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:03 CET)" executed successfully 2026-01-22 05:12:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:07 CET)" (scheduled at 2026-01-22 05:12:07.461608+01:00) 2026-01-22 05:12:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:07 CET)" executed successfully 2026-01-22 05:12:07,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:08 CET)" (scheduled at 2026-01-22 05:12:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76735 | 4799.37 | | H4 | uptrend | 417.27 | 44.066 | 2.75815 | 4799.35 | | H1 | uptrend | 388.72 | 29.4745 | 1.71861 | 4799.35 | | M30 | uptrend | 528.09 | 20.7991 | 1.64756 | 4799.35 | | M15 | uptrend | 257.88 | 12.7591 | 0.493552 | 4799.35 | | M5 | downtrend | 562.74 | 4.9432 | -0.417259 | 4799.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.72) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.33% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146956.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 05:12:09,085 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:13:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:12:17,985 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:28,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:38,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:48,046 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:12:58,072 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:03,432 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:03 CET)" (scheduled at 2026-01-22 05:13:03.329776+01:00) 2026-01-22 05:13:03,432 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:03 CET)" executed successfully 2026-01-22 05:13:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:07 CET)" (scheduled at 2026-01-22 05:13:07.461608+01:00) 2026-01-22 05:13:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:07 CET)" executed successfully 2026-01-22 05:13:08,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:08,857 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:08 CET)" (scheduled at 2026-01-22 05:13:08.847423+01:00) 2026-01-22 05:13:09,003 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76689 | 4797.41 | | H4 | uptrend | 417.21 | 44.066 | 2.75769 | 4797.41 | | H1 | uptrend | 388.62 | 29.4745 | 1.71816 | 4797.41 | | M30 | uptrend | 527.94 | 20.7991 | 1.6471 | 4797.41 | | M15 | uptrend | 257.64 | 12.7591 | 0.493094 | 4797.41 | | M5 | downtrend | 555.81 | 5.0103 | -0.417718 | 4797.41 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.41% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147045.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:13:18,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:28,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:38,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:48,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:13:58,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:03 CET)" (scheduled at 2026-01-22 05:14:03.329776+01:00) 2026-01-22 05:14:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:03 CET)" executed successfully 2026-01-22 05:14:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:07 CET)" (scheduled at 2026-01-22 05:14:07.461608+01:00) 2026-01-22 05:14:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:07 CET)" executed successfully 2026-01-22 05:14:08,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:08,876 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:08 CET)" (scheduled at 2026-01-22 05:14:08.847423+01:00) 2026-01-22 05:14:09,072 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:15:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76687 | 4797.34 | | H4 | uptrend | 417.2 | 44.066 | 2.75767 | 4797.34 | | H1 | uptrend | 388.62 | 29.4745 | 1.71814 | 4797.34 | | M30 | uptrend | 527.93 | 20.7991 | 1.64708 | 4797.34 | | M15 | uptrend | 257.63 | 12.7591 | 0.493077 | 4797.34 | | M5 | downtrend | 549.95 | 5.0639 | -0.417734 | 4797.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.49% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147171.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:14:18,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:28,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:38,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:48,342 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:14:58,375 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:03 CET)" (scheduled at 2026-01-22 05:15:03.329776+01:00) 2026-01-22 05:15:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:03 CET)" executed successfully 2026-01-22 05:15:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:07 CET)" (scheduled at 2026-01-22 05:15:07.461608+01:00) 2026-01-22 05:15:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:07 CET)" executed successfully 2026-01-22 05:15:08,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:09,104 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:08 CET)" (scheduled at 2026-01-22 05:15:08.847423+01:00) 2026-01-22 05:15:09,412 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.7671 | 4798.28 | | H4 | uptrend | 417.24 | 44.066 | 2.75789 | 4798.28 | | H1 | uptrend | 388.67 | 29.4745 | 1.71839 | 4798.39 | | M30 | uptrend | 528.01 | 20.7991 | 1.64733 | 4798.39 | | M15 | uptrend | 262.44 | 11.8778 | 0.467579 | 4798.49 | | M5 | downtrend | 576.45 | 4.7322 | -0.409179 | 4798.49 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.70) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146925.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:15:18,424 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:28,435 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:38,476 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:48,499 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:15:58,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:03,719 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:03 CET)" (scheduled at 2026-01-22 05:16:03.329776+01:00) 2026-01-22 05:16:03,719 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:03 CET)" executed successfully 2026-01-22 05:16:07,556 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:07 CET)" (scheduled at 2026-01-22 05:16:07.461608+01:00) 2026-01-22 05:16:07,556 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:07 CET)" executed successfully 2026-01-22 05:16:08,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:08 CET)" (scheduled at 2026-01-22 05:16:08.847423+01:00) 2026-01-22 05:16:09,073 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:17:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76717 | 4798.61 | | H4 | uptrend | 417.25 | 44.066 | 2.75797 | 4798.59 | | H1 | uptrend | 388.68 | 29.4745 | 1.71843 | 4798.59 | | M30 | uptrend | 528.03 | 20.7991 | 1.64738 | 4798.59 | | M15 | uptrend | 261.48 | 11.9221 | 0.467607 | 4798.61 | | M5 | downtrend | 571.06 | 4.7765 | -0.409151 | 4798.61 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.70) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146986.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:16:18,569 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:28,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:38,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:48,652 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:16:58,674 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:03,442 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:03 CET)" (scheduled at 2026-01-22 05:17:03.329776+01:00) 2026-01-22 05:17:03,442 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:03 CET)" executed successfully 2026-01-22 05:17:07,548 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:07 CET)" (scheduled at 2026-01-22 05:17:07.461608+01:00) 2026-01-22 05:17:07,548 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:07 CET)" executed successfully 2026-01-22 05:17:08,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:09,198 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:08 CET)" (scheduled at 2026-01-22 05:17:08.847423+01:00) 2026-01-22 05:17:09,381 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76738 | 4799.47 | | H4 | uptrend | 417.28 | 44.066 | 2.75818 | 4799.47 | | H1 | uptrend | 388.73 | 29.4745 | 1.71864 | 4799.47 | | M30 | uptrend | 528.09 | 20.7991 | 1.64759 | 4799.47 | | M15 | uptrend | 260.72 | 11.9621 | 0.46781 | 4799.47 | | M5 | downtrend | 566.04 | 4.8165 | -0.408948 | 4799.47 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.73) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147051.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:17:18,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:28,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:38,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:48,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:17:58,872 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:03 CET)" (scheduled at 2026-01-22 05:18:03.329776+01:00) 2026-01-22 05:18:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:03 CET)" executed successfully 2026-01-22 05:18:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:07 CET)" (scheduled at 2026-01-22 05:18:07.461608+01:00) 2026-01-22 05:18:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:07 CET)" executed successfully 2026-01-22 05:18:08,891 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:08,948 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:08 CET)" (scheduled at 2026-01-22 05:18:08.847423+01:00) 2026-01-22 05:18:09,129 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:19:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76706 | 4798.14 | | H4 | uptrend | 417.23 | 44.066 | 2.75786 | 4798.14 | | H1 | uptrend | 388.66 | 29.4745 | 1.71833 | 4798.14 | | M30 | uptrend | 527.99 | 20.7991 | 1.64727 | 4798.14 | | M15 | uptrend | 259.86 | 11.9935 | 0.467496 | 4798.14 | | M5 | downtrend | 562.8 | 4.8479 | -0.409262 | 4798.14 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.69) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.33% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147050.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:18:18,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:28,933 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:38,950 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:48,965 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:18:58,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:03,400 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:03 CET)" (scheduled at 2026-01-22 05:19:03.329776+01:00) 2026-01-22 05:19:03,400 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:03 CET)" executed successfully 2026-01-22 05:19:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:07 CET)" (scheduled at 2026-01-22 05:19:07.461608+01:00) 2026-01-22 05:19:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:07 CET)" executed successfully 2026-01-22 05:19:08,963 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:08 CET)" (scheduled at 2026-01-22 05:19:08.847423+01:00) 2026-01-22 05:19:09,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:09,134 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:20:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76732 | 4799.22 | | H4 | uptrend | 417.27 | 44.066 | 2.75812 | 4799.22 | | H1 | uptrend | 388.72 | 29.4745 | 1.71858 | 4799.22 | | M30 | uptrend | 528.08 | 20.7991 | 1.64753 | 4799.22 | | M15 | uptrend | 260 | 11.9935 | 0.467751 | 4799.22 | | M5 | downtrend | 562.45 | 4.8479 | -0.409007 | 4799.22 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.72) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.34% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147088.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:19:19,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:29,167 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:39,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:49,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:19:59,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:03 CET)" (scheduled at 2026-01-22 05:20:03.329776+01:00) 2026-01-22 05:20:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:03 CET)" executed successfully 2026-01-22 05:20:07,566 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:07 CET)" (scheduled at 2026-01-22 05:20:07.461608+01:00) 2026-01-22 05:20:07,566 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:07 CET)" executed successfully 2026-01-22 05:20:08,890 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:08 CET)" (scheduled at 2026-01-22 05:20:08.847423+01:00) 2026-01-22 05:20:09,033 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76725 | 4798.92 | | H4 | uptrend | 417.26 | 44.066 | 2.75805 | 4798.92 | | H1 | uptrend | 388.7 | 29.4745 | 1.71851 | 4798.92 | | M30 | uptrend | 528.05 | 20.7991 | 1.64745 | 4798.92 | | M15 | uptrend | 259.96 | 11.9935 | 0.46768 | 4798.92 | | M5 | downtrend | 590.81 | 4.5131 | -0.399956 | 4798.92 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.71) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.98% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146508.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:20:09,256 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:19,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:29,301 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:39,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:49,338 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:20:59,361 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:03 CET)" (scheduled at 2026-01-22 05:21:03.329776+01:00) 2026-01-22 05:21:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:03 CET)" executed successfully 2026-01-22 05:21:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:07 CET)" (scheduled at 2026-01-22 05:21:07.461608+01:00) 2026-01-22 05:21:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:07 CET)" executed successfully 2026-01-22 05:21:09,275 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:08 CET)" (scheduled at 2026-01-22 05:21:08.847423+01:00) 2026-01-22 05:21:09,448 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76735 | 4799.35 | | H4 | uptrend | 417.27 | 44.066 | 2.75815 | 4799.35 | | H1 | uptrend | 388.72 | 29.4745 | 1.71861 | 4799.35 | | M30 | uptrend | 528.08 | 20.7991 | 1.64755 | 4799.31 | | M15 | uptrend | 259.86 | 12.0006 | 0.467772 | 4799.31 | | M5 | downtrend | 584.57 | 4.5602 | -0.399866 | 4799.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.72) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146635.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:21:09,461 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:19,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:29,511 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:39,530 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:49,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:21:59,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:03,628 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:03 CET)" (scheduled at 2026-01-22 05:22:03.329776+01:00) 2026-01-22 05:22:03,628 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:03 CET)" executed successfully 2026-01-22 05:22:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:07 CET)" (scheduled at 2026-01-22 05:22:07.461608+01:00) 2026-01-22 05:22:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:07 CET)" executed successfully 2026-01-22 05:22:08,971 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:08 CET)" (scheduled at 2026-01-22 05:22:08.847423+01:00) 2026-01-22 05:22:09,180 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:23:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76693 | 4797.56 | | H4 | uptrend | 417.21 | 44.066 | 2.75773 | 4797.56 | | H1 | uptrend | 388.63 | 29.4745 | 1.71819 | 4797.56 | | M30 | uptrend | 527.95 | 20.7991 | 1.64713 | 4797.56 | | M15 | uptrend | 258.92 | 12.0335 | 0.467359 | 4797.56 | | M5 | downtrend | 569.3 | 4.6874 | -0.400277 | 4797.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.68) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.25% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146863.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:22:09,611 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:19,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:29,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:39,664 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:49,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:22:59,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:03 CET)" (scheduled at 2026-01-22 05:23:03.329776+01:00) 2026-01-22 05:23:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:03 CET)" executed successfully 2026-01-22 05:23:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:07 CET)" (scheduled at 2026-01-22 05:23:07.461608+01:00) 2026-01-22 05:23:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:07 CET)" executed successfully 2026-01-22 05:23:08,963 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:08 CET)" (scheduled at 2026-01-22 05:23:08.847423+01:00) 2026-01-22 05:23:09,197 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:24:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76674 | 4796.77 | | H4 | uptrend | 417.18 | 44.066 | 2.75754 | 4796.77 | | H1 | uptrend | 388.59 | 29.4745 | 1.718 | 4796.77 | | M30 | uptrend | 527.89 | 20.7991 | 1.64694 | 4796.74 | | M15 | uptrend | 257.93 | 12.0749 | 0.467165 | 4796.74 | | M5 | downtrend | 564.59 | 4.7288 | -0.400471 | 4796.74 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.3% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146877.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:23:09,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:19,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:29,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:39,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:49,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:23:59,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:24:03,353 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:03 CET)" (scheduled at 2026-01-22 05:24:03.329776+01:00) 2026-01-22 05:24:03,353 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:03 CET)" executed successfully 2026-01-22 05:24:07,504 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:07 CET)" (scheduled at 2026-01-22 05:24:07.461608+01:00) 2026-01-22 05:24:07,504 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:07 CET)" executed successfully 2026-01-22 05:24:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:08 CET)" (scheduled at 2026-01-22 05:24:08.847423+01:00) 2026-01-22 05:24:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76702 | 4797.96 | | H4 | uptrend | 417.23 | 44.066 | 2.75782 | 4797.96 | | H1 | uptrend | 388.65 | 29.4745 | 1.71828 | 4797.96 | | M30 | uptrend | 527.98 | 20.7991 | 1.64723 | 4797.97 | | M15 | uptrend | 258.09 | 12.0749 | 0.467456 | 4797.97 | | M5 | downtrend | 564.18 | 4.7288 | -0.40018 | 4797.97 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.69) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.31% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146918.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:24:09,925 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:24:19,939 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:24:29,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:24:39,981 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:24:49,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:00,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:03 CET)" (scheduled at 2026-01-22 05:25:03.329776+01:00) 2026-01-22 05:25:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:03 CET)" executed successfully 2026-01-22 05:25:07,564 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:07 CET)" (scheduled at 2026-01-22 05:25:07.461608+01:00) 2026-01-22 05:25:07,564 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:07 CET)" executed successfully 2026-01-22 05:25:08,923 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:08 CET)" (scheduled at 2026-01-22 05:25:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:25:09,160 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:26:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76696 | 4797.7 | | H4 | uptrend | 417.22 | 44.066 | 2.75776 | 4797.7 | | H1 | uptrend | 388.63 | 29.4745 | 1.71822 | 4797.7 | | M30 | uptrend | 527.96 | 20.7991 | 1.64717 | 4797.7 | | M15 | uptrend | 258.06 | 12.0749 | 0.467411 | 4797.78 | | M5 | downtrend | 586.4 | 4.4589 | -0.392202 | 4797.78 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.68) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146467.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:25:10,058 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:20,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:30,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:40,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:25:50,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:00,164 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:03 CET)" (scheduled at 2026-01-22 05:26:03.329776+01:00) 2026-01-22 05:26:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:03 CET)" executed successfully 2026-01-22 05:26:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:07 CET)" (scheduled at 2026-01-22 05:26:07.461608+01:00) 2026-01-22 05:26:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:07 CET)" executed successfully 2026-01-22 05:26:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:08 CET)" (scheduled at 2026-01-22 05:26:08.847423+01:00) 2026-01-22 05:26:08,999 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:27:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76657 | 4796.07 | | H4 | uptrend | 417.16 | 44.066 | 2.75737 | 4796.07 | | H1 | uptrend | 388.55 | 29.4745 | 1.71784 | 4796.07 | | M30 | uptrend | 527.84 | 20.7991 | 1.64678 | 4796.07 | | M15 | uptrend | 256.96 | 12.1164 | 0.467007 | 4796.07 | | M5 | downtrend | 578.21 | 4.5267 | -0.392606 | 4796.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.13% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146544.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:26:10,188 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:20,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:30,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:40,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:26:50,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:00,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:03 CET)" (scheduled at 2026-01-22 05:27:03.329776+01:00) 2026-01-22 05:27:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:03 CET)" executed successfully 2026-01-22 05:27:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:07 CET)" (scheduled at 2026-01-22 05:27:07.461608+01:00) 2026-01-22 05:27:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:07 CET)" executed successfully 2026-01-22 05:27:08,863 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:08 CET)" (scheduled at 2026-01-22 05:27:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76654 | 4795.93 | | H4 | uptrend | 417.15 | 44.066 | 2.75734 | 4795.93 | | H1 | uptrend | 388.26 | 29.4966 | 1.71784 | 4796.09 | | M30 | uptrend | 527.28 | 20.8213 | 1.64679 | 4796.09 | | M15 | uptrend | 255.61 | 12.1799 | 0.467005 | 4796.06 | | M5 | downtrend | 570.2 | 4.5903 | -0.392604 | 4796.08 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146561.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 05:27:09,104 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:28:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:27:10,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:20,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:30,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:40,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:27:50,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:00,422 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:03,857 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:03 CET)" (scheduled at 2026-01-22 05:28:03.329776+01:00) 2026-01-22 05:28:03,857 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:03 CET)" executed successfully 2026-01-22 05:28:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:07 CET)" (scheduled at 2026-01-22 05:28:07.461608+01:00) 2026-01-22 05:28:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:07 CET)" executed successfully 2026-01-22 05:28:08,876 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:08 CET)" (scheduled at 2026-01-22 05:28:08.847423+01:00) 2026-01-22 05:28:09,064 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76656 | 4796.01 | | H4 | uptrend | 417.16 | 44.066 | 2.75736 | 4796.01 | | H1 | uptrend | 388.25 | 29.4966 | 1.71782 | 4796.01 | | M30 | uptrend | 527.27 | 20.8213 | 1.64677 | 4796.01 | | M15 | uptrend | 255.61 | 12.1799 | 0.466993 | 4796.01 | | M5 | downtrend | 570.23 | 4.5903 | -0.392627 | 4795.98 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146560.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:28:10,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:20,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:30,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:40,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:28:50,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:00,564 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:03 CET)" (scheduled at 2026-01-22 05:29:03.329776+01:00) 2026-01-22 05:29:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:03 CET)" executed successfully 2026-01-22 05:29:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:07 CET)" (scheduled at 2026-01-22 05:29:07.461608+01:00) 2026-01-22 05:29:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:07 CET)" executed successfully 2026-01-22 05:29:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:08 CET)" (scheduled at 2026-01-22 05:29:08.847423+01:00) 2026-01-22 05:29:09,118 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76633 | 4795.06 | | H4 | uptrend | 417.12 | 44.066 | 2.75713 | 4795.06 | | H1 | uptrend | 388.14 | 29.5016 | 1.7176 | 4795.06 | | M30 | uptrend | 527.07 | 20.8263 | 1.64654 | 4795.06 | | M15 | uptrend | 255.38 | 12.1849 | 0.466768 | 4795.06 | | M5 | downtrend | 569.92 | 4.5953 | -0.392845 | 4795.06 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.61) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146520.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:29:10,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:20,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:30,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:40,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:29:50,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:00,115 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 06:00:00 CET)" (scheduled at 2026-01-22 05:30:00+01:00) 2026-01-22 05:30:00,119 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 06:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 05:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 29.57 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 05:30:00,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:03,379 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:03 CET)" (scheduled at 2026-01-22 05:30:03.329776+01:00) 2026-01-22 05:30:03,379 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:03 CET)" executed successfully 2026-01-22 05:30:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:07 CET)" (scheduled at 2026-01-22 05:30:07.461608+01:00) 2026-01-22 05:30:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:07 CET)" executed successfully 2026-01-22 05:30:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:08 CET)" (scheduled at 2026-01-22 05:30:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:30:09,351 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:31:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76639 | 4795.3 | | H4 | uptrend | 417.13 | 44.066 | 2.75719 | 4795.3 | | H1 | uptrend | 387.77 | 29.5302 | 1.71766 | 4795.3 | | M30 | uptrend | 555.44 | 19.426 | 1.6185 | 4795.3 | | M15 | uptrend | 256.79 | 11.4047 | 0.439285 | 4795.28 | | M5 | downtrend | 584.99 | 4.3572 | -0.382338 | 4795.28 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.62) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.09% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148432.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:30:10,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:20,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:30,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:40,781 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:30:50,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:00,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:03 CET)" (scheduled at 2026-01-22 05:31:03.329776+01:00) 2026-01-22 05:31:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:03 CET)" executed successfully 2026-01-22 05:31:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:07 CET)" (scheduled at 2026-01-22 05:31:07.461608+01:00) 2026-01-22 05:31:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:07 CET)" executed successfully 2026-01-22 05:31:08,927 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:08 CET)" (scheduled at 2026-01-22 05:31:08.847423+01:00) 2026-01-22 05:31:09,133 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76666 | 4796.43 | | H4 | uptrend | 417.17 | 44.066 | 2.75746 | 4796.42 | | H1 | uptrend | 387.58 | 29.5495 | 1.71792 | 4796.42 | | M30 | uptrend | 552.41 | 19.536 | 1.61877 | 4796.42 | | M15 | uptrend | 254.54 | 11.5118 | 0.43954 | 4796.36 | | M5 | downtrend | 570.57 | 4.4643 | -0.382082 | 4796.36 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148343.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:31:10,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:20,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:30,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:40,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:31:50,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:00,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:03 CET)" (scheduled at 2026-01-22 05:32:03.329776+01:00) 2026-01-22 05:32:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:03 CET)" executed successfully 2026-01-22 05:32:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:07 CET)" (scheduled at 2026-01-22 05:32:07.461608+01:00) 2026-01-22 05:32:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:07 CET)" executed successfully 2026-01-22 05:32:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:08 CET)" (scheduled at 2026-01-22 05:32:08.847423+01:00) 2026-01-22 05:32:08,997 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76659 | 4796.14 | | H4 | uptrend | 417.16 | 44.066 | 2.75739 | 4796.14 | | H1 | uptrend | 387.57 | 29.5495 | 1.71785 | 4796.14 | | M30 | uptrend | 550.45 | 19.6045 | 1.6187 | 4796.14 | | M15 | uptrend | 253.01 | 11.5804 | 0.439493 | 4796.16 | | M5 | downtrend | 562.02 | 4.5329 | -0.382137 | 4796.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148288.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:32:10,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:21,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:31,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:41,071 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:32:51,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:01,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:03 CET)" (scheduled at 2026-01-22 05:33:03.329776+01:00) 2026-01-22 05:33:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:03 CET)" executed successfully 2026-01-22 05:33:07,493 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:07 CET)" (scheduled at 2026-01-22 05:33:07.461608+01:00) 2026-01-22 05:33:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:07 CET)" executed successfully 2026-01-22 05:33:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:08 CET)" (scheduled at 2026-01-22 05:33:08.847423+01:00) 2026-01-22 05:33:09,004 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:34:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76635 | 4795.13 | | H4 | uptrend | 417.12 | 44.066 | 2.75715 | 4795.13 | | H1 | uptrend | 387.51 | 29.5495 | 1.71762 | 4795.13 | | M30 | uptrend | 550.37 | 19.6045 | 1.61846 | 4795.13 | | M15 | uptrend | 252.87 | 11.5804 | 0.43925 | 4795.13 | | M5 | downtrend | 562.37 | 4.5329 | -0.382373 | 4795.13 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.62) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148251.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:33:11,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:21,176 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:31,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:41,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:33:51,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:01,264 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:03 CET)" (scheduled at 2026-01-22 05:34:03.329776+01:00) 2026-01-22 05:34:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:03 CET)" executed successfully 2026-01-22 05:34:07,491 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:07 CET)" (scheduled at 2026-01-22 05:34:07.461608+01:00) 2026-01-22 05:34:07,491 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:07 CET)" executed successfully 2026-01-22 05:34:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:08 CET)" (scheduled at 2026-01-22 05:34:08.847423+01:00) 2026-01-22 05:34:08,997 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:35:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.59 | 85.153 | 9.76606 | 4793.91 | | H4 | uptrend | 417.08 | 44.066 | 2.75686 | 4793.91 | | H1 | uptrend | 386.91 | 29.5902 | 1.71733 | 4793.91 | | M30 | uptrend | 549.13 | 19.6452 | 1.61817 | 4793.91 | | M15 | uptrend | 251.82 | 11.6211 | 0.438961 | 4793.91 | | M5 | downtrend | 557.78 | 4.5736 | -0.382661 | 4793.91 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.59) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.41% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148123.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:34:11,358 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:21,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:31,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:41,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:34:51,452 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:01,475 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:03 CET)" (scheduled at 2026-01-22 05:35:03.329776+01:00) 2026-01-22 05:35:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:03 CET)" executed successfully 2026-01-22 05:35:07,557 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:07 CET)" (scheduled at 2026-01-22 05:35:07.461608+01:00) 2026-01-22 05:35:07,557 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:07 CET)" executed successfully 2026-01-22 05:35:09,165 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:08 CET)" (scheduled at 2026-01-22 05:35:08.847423+01:00) 2026-01-22 05:35:09,314 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:36:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76619 | 4794.45 | | H4 | uptrend | 417.1 | 44.066 | 2.75699 | 4794.45 | | H1 | uptrend | 386.95 | 29.5902 | 1.71748 | 4794.56 | | M30 | uptrend | 549.18 | 19.6452 | 1.61833 | 4794.56 | | M15 | uptrend | 251.91 | 11.6211 | 0.439115 | 4794.56 | | M5 | downtrend | 578.35 | 4.2969 | -0.372765 | 4794.68 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.60) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147736.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:35:11,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:21,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:31,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:41,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:35:51,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:01,610 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:03 CET)" (scheduled at 2026-01-22 05:36:03.329776+01:00) 2026-01-22 05:36:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:03 CET)" executed successfully 2026-01-22 05:36:07,588 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:07 CET)" (scheduled at 2026-01-22 05:36:07.461608+01:00) 2026-01-22 05:36:07,588 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:07 CET)" executed successfully 2026-01-22 05:36:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:08 CET)" (scheduled at 2026-01-22 05:36:08.847423+01:00) 2026-01-22 05:36:09,045 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:37:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76649 | 4795.71 | | H4 | uptrend | 417.14 | 44.066 | 2.75729 | 4795.71 | | H1 | uptrend | 387.01 | 29.5902 | 1.71775 | 4795.71 | | M30 | uptrend | 549.28 | 19.6452 | 1.6186 | 4795.71 | | M15 | uptrend | 252.06 | 11.6211 | 0.439387 | 4795.71 | | M5 | downtrend | 561.72 | 4.4212 | -0.372522 | 4795.71 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.37% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148096.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:36:11,621 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:21,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:31,671 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:41,690 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:36:51,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:01,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:03,845 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:03 CET)" (scheduled at 2026-01-22 05:37:03.329776+01:00) 2026-01-22 05:37:03,845 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:03 CET)" executed successfully 2026-01-22 05:37:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:07 CET)" (scheduled at 2026-01-22 05:37:07.461608+01:00) 2026-01-22 05:37:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:07 CET)" executed successfully 2026-01-22 05:37:08,944 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:08 CET)" (scheduled at 2026-01-22 05:37:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:37:09,264 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:38:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76688 | 4797.36 | | H4 | uptrend | 417.2 | 44.066 | 2.75768 | 4797.36 | | H1 | uptrend | 387.1 | 29.5902 | 1.71814 | 4797.36 | | M30 | uptrend | 548.01 | 19.6952 | 1.61899 | 4797.36 | | M15 | uptrend | 251.21 | 11.6711 | 0.439777 | 4797.36 | | M5 | downtrend | 543.83 | 4.5619 | -0.372134 | 4797.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148320.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 05:37:11,746 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:21,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:31,795 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:41,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:37:51,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:01,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:03,494 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:03 CET)" (scheduled at 2026-01-22 05:38:03.329776+01:00) 2026-01-22 05:38:03,507 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:03 CET)" executed successfully 2026-01-22 05:38:07,539 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:07 CET)" (scheduled at 2026-01-22 05:38:07.461608+01:00) 2026-01-22 05:38:07,539 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:07 CET)" executed successfully 2026-01-22 05:38:08,856 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:08 CET)" (scheduled at 2026-01-22 05:38:08.847423+01:00) 2026-01-22 05:38:09,036 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:39:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76668 | 4796.52 | | H4 | uptrend | 417.17 | 44.066 | 2.75748 | 4796.52 | | H1 | uptrend | 387.05 | 29.5902 | 1.71794 | 4796.52 | | M30 | uptrend | 547.95 | 19.6952 | 1.61879 | 4796.53 | | M15 | uptrend | 251.09 | 11.6711 | 0.43958 | 4796.53 | | M5 | downtrend | 544.11 | 4.5619 | -0.372328 | 4796.53 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.58% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148287.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 05:38:11,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:21,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:31,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:41,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:38:51,979 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:01,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:03 CET)" (scheduled at 2026-01-22 05:39:03.329776+01:00) 2026-01-22 05:39:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:03 CET)" executed successfully 2026-01-22 05:39:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:07 CET)" (scheduled at 2026-01-22 05:39:07.461608+01:00) 2026-01-22 05:39:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:07 CET)" executed successfully 2026-01-22 05:39:08,851 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:08 CET)" (scheduled at 2026-01-22 05:39:08.847423+01:00) 2026-01-22 05:39:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:40:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76687 | 4797.32 | | H4 | uptrend | 417.2 | 44.066 | 2.75767 | 4797.32 | | H1 | uptrend | 387.1 | 29.5902 | 1.71814 | 4797.33 | | M30 | uptrend | 548.01 | 19.6952 | 1.61898 | 4797.33 | | M15 | uptrend | 251.2 | 11.6711 | 0.439769 | 4797.33 | | M5 | downtrend | 543.83 | 4.5619 | -0.372139 | 4797.33 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148319.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 05:39:12,016 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:22,061 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:32,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:42,097 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:39:52,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:02,130 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:03,361 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:03 CET)" (scheduled at 2026-01-22 05:40:03.329776+01:00) 2026-01-22 05:40:03,361 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:03 CET)" executed successfully 2026-01-22 05:40:07,512 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:07 CET)" (scheduled at 2026-01-22 05:40:07.461608+01:00) 2026-01-22 05:40:07,512 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:07 CET)" executed successfully 2026-01-22 05:40:09,103 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:08 CET)" (scheduled at 2026-01-22 05:40:08.847423+01:00) 2026-01-22 05:40:09,279 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:41:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76644 | 4795.51 | | H4 | uptrend | 417.13 | 44.066 | 2.75722 | 4795.43 | | H1 | uptrend | 386.99 | 29.5902 | 1.71769 | 4795.43 | | M30 | uptrend | 547.86 | 19.6952 | 1.61853 | 4795.43 | | M15 | uptrend | 250.94 | 11.6711 | 0.439321 | 4795.43 | | M5 | downtrend | 567.16 | 4.2881 | -0.364812 | 4795.43 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147800.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:40:09,474 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 06:40:09 CET)" (scheduled at 2026-01-22 05:40:09.465739+01:00) 2026-01-22 05:40:09,481 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 06:40:09 CET)" executed successfully
[05:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 05:40:12,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:22,198 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:32,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:42,246 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:40:52,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:02,292 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:03,378 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:03 CET)" (scheduled at 2026-01-22 05:41:03.329776+01:00) 2026-01-22 05:41:03,378 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:03 CET)" executed successfully 2026-01-22 05:41:07,525 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:07 CET)" (scheduled at 2026-01-22 05:41:07.461608+01:00) 2026-01-22 05:41:07,525 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:07 CET)" executed successfully 2026-01-22 05:41:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:08 CET)" (scheduled at 2026-01-22 05:41:08.847423+01:00) 2026-01-22 05:41:08,998 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:42:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76664 | 4796.34 | | H4 | uptrend | 417.17 | 44.066 | 2.75744 | 4796.34 | | H1 | uptrend | 387.04 | 29.5902 | 1.7179 | 4796.34 | | M30 | uptrend | 547.93 | 19.6952 | 1.61875 | 4796.34 | | M15 | uptrend | 251.07 | 11.6711 | 0.439536 | 4796.34 | | M5 | downtrend | 562.15 | 4.3239 | -0.364597 | 4796.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147930.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:41:12,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:22,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:32,359 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:42,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:41:52,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:02,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:03 CET)" (scheduled at 2026-01-22 05:42:03.329776+01:00) 2026-01-22 05:42:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:03 CET)" executed successfully 2026-01-22 05:42:07,490 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:07 CET)" (scheduled at 2026-01-22 05:42:07.461608+01:00) 2026-01-22 05:42:07,490 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:07 CET)" executed successfully 2026-01-22 05:42:08,944 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:08 CET)" (scheduled at 2026-01-22 05:42:08.847423+01:00) 2026-01-22 05:42:09,086 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:43:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76641 | 4795.39 | | H4 | uptrend | 417.13 | 44.066 | 2.75721 | 4795.39 | | H1 | uptrend | 386.99 | 29.5902 | 1.71768 | 4795.39 | | M30 | uptrend | 547.86 | 19.6952 | 1.61852 | 4795.39 | | M15 | uptrend | 250.94 | 11.6711 | 0.439311 | 4795.39 | | M5 | downtrend | 560.52 | 4.3389 | -0.364803 | 4795.47 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.62) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.38% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147943.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:42:12,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:22,457 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:32,473 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:42,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:42:52,520 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:02,536 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:03,512 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:03 CET)" (scheduled at 2026-01-22 05:43:03.329776+01:00) 2026-01-22 05:43:03,512 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:03 CET)" executed successfully 2026-01-22 05:43:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:07 CET)" (scheduled at 2026-01-22 05:43:07.461608+01:00) 2026-01-22 05:43:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:07 CET)" executed successfully 2026-01-22 05:43:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:08 CET)" (scheduled at 2026-01-22 05:43:08.847423+01:00) 2026-01-22 05:43:08,998 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:44:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76648 | 4795.67 | | H4 | uptrend | 417.14 | 44.066 | 2.75728 | 4795.67 | | H1 | uptrend | 387.01 | 29.5902 | 1.71774 | 4795.67 | | M30 | uptrend | 547.88 | 19.6952 | 1.61859 | 4795.67 | | M15 | uptrend | 250.98 | 11.6711 | 0.439377 | 4795.67 | | M5 | downtrend | 560.45 | 4.3389 | -0.364756 | 4795.67 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.38% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147949.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:43:12,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:22,574 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:32,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:42,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:43:52,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:02,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:03 CET)" (scheduled at 2026-01-22 05:44:03.329776+01:00) 2026-01-22 05:44:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:03 CET)" executed successfully 2026-01-22 05:44:07,499 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:07 CET)" (scheduled at 2026-01-22 05:44:07.461608+01:00) 2026-01-22 05:44:07,499 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:07 CET)" executed successfully 2026-01-22 05:44:09,039 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:08 CET)" (scheduled at 2026-01-22 05:44:08.847423+01:00) 2026-01-22 05:44:09,204 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:45:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.7666 | 4796.17 | | H4 | uptrend | 417.16 | 44.066 | 2.7574 | 4796.17 | | H1 | uptrend | 387.03 | 29.5902 | 1.71786 | 4796.17 | | M30 | uptrend | 547.92 | 19.6952 | 1.61871 | 4796.17 | | M15 | uptrend | 251.04 | 11.6711 | 0.439495 | 4796.17 | | M5 | downtrend | 558.89 | 4.3496 | -0.364637 | 4796.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147991.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:44:12,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:22,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:32,722 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:42,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:44:52,768 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:02,796 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:03 CET)" (scheduled at 2026-01-22 05:45:03.329776+01:00) 2026-01-22 05:45:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:03 CET)" executed successfully 2026-01-22 05:45:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:07 CET)" (scheduled at 2026-01-22 05:45:07.461608+01:00) 2026-01-22 05:45:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:07 CET)" executed successfully 2026-01-22 05:45:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:08 CET)" (scheduled at 2026-01-22 05:45:08.847423+01:00) 2026-01-22 05:45:09,190 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:46:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76641 | 4795.39 | | H4 | uptrend | 417.13 | 44.066 | 2.75721 | 4795.39 | | H1 | uptrend | 386.99 | 29.5902 | 1.71768 | 4795.39 | | M30 | uptrend | 547.86 | 19.6952 | 1.61852 | 4795.39 | | M15 | uptrend | 252.39 | 10.8682 | 0.411459 | 4795.39 | | M5 | downtrend | 594.33 | 4.0848 | -0.364162 | 4795.39 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.62) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.96% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147350.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:45:12,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:22,835 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:32,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:42,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:45:52,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:02,903 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:03,364 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:03 CET)" (scheduled at 2026-01-22 05:46:03.329776+01:00) 2026-01-22 05:46:03,366 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:03 CET)" executed successfully 2026-01-22 05:46:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:07 CET)" (scheduled at 2026-01-22 05:46:07.461608+01:00) 2026-01-22 05:46:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:07 CET)" executed successfully 2026-01-22 05:46:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:08 CET)" (scheduled at 2026-01-22 05:46:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76618 | 4794.39 | | H4 | uptrend | 417.1 | 44.066 | 2.75697 | 4794.38 | | H1 | uptrend | 386.94 | 29.5902 | 1.71743 | 4794.35 | | M30 | uptrend | 547.77 | 19.6952 | 1.61828 | 4794.35 | | M15 | uptrend | 250.73 | 10.9339 | 0.411213 | 4794.35 | | M5 | downtrend | 585.32 | 4.1505 | -0.364408 | 4794.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.60) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147405.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 05:46:09,240 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:47:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:46:12,936 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:22,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:32,980 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:42,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:46:53,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:03,028 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:03,478 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:03 CET)" (scheduled at 2026-01-22 05:47:03.329776+01:00) 2026-01-22 05:47:03,488 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:03 CET)" executed successfully 2026-01-22 05:47:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:07 CET)" (scheduled at 2026-01-22 05:47:07.461608+01:00) 2026-01-22 05:47:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:07 CET)" executed successfully 2026-01-22 05:47:08,955 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:08 CET)" (scheduled at 2026-01-22 05:47:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:47:09,214 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:48:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.6 | 85.153 | 9.76625 | 4794.72 | | H4 | uptrend | 417.11 | 44.066 | 2.75705 | 4794.72 | | H1 | uptrend | 386.96 | 29.5902 | 1.71752 | 4794.72 | | M30 | uptrend | 547.79 | 19.6952 | 1.61833 | 4794.57 | | M15 | uptrend | 250.11 | 10.9625 | 0.411265 | 4794.57 | | M5 | downtrend | 581.23 | 4.1791 | -0.364356 | 4794.57 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.61) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147455.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:47:13,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:23,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:33,106 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:43,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:47:53,139 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:03,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:03,949 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:03 CET)" (scheduled at 2026-01-22 05:48:03.329776+01:00) 2026-01-22 05:48:03,949 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:03 CET)" executed successfully 2026-01-22 05:48:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:07 CET)" (scheduled at 2026-01-22 05:48:07.461608+01:00) 2026-01-22 05:48:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:07 CET)" executed successfully 2026-01-22 05:48:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:08 CET)" (scheduled at 2026-01-22 05:48:08.847423+01:00) 2026-01-22 05:48:09,019 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:49:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76649 | 4795.73 | | H4 | uptrend | 417.15 | 44.066 | 2.75729 | 4795.73 | | H1 | uptrend | 387.01 | 29.5902 | 1.71776 | 4795.73 | | M30 | uptrend | 547.88 | 19.6952 | 1.61861 | 4795.73 | | M15 | uptrend | 249.96 | 10.976 | 0.411539 | 4795.73 | | M5 | downtrend | 578.92 | 4.1927 | -0.364082 | 4795.73 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.14% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147509.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:48:13,193 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:23,216 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:33,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:43,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:48:53,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:03,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:03,587 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:03 CET)" (scheduled at 2026-01-22 05:49:03.329776+01:00) 2026-01-22 05:49:03,590 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:03 CET)" executed successfully 2026-01-22 05:49:07,484 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:07 CET)" (scheduled at 2026-01-22 05:49:07.461608+01:00) 2026-01-22 05:49:07,484 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:07 CET)" executed successfully 2026-01-22 05:49:09,166 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:08 CET)" (scheduled at 2026-01-22 05:49:08.847423+01:00) 2026-01-22 05:49:09,349 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:50:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76664 | 4796.35 | | H4 | uptrend | 417.17 | 44.066 | 2.75744 | 4796.35 | | H1 | uptrend | 387.04 | 29.5902 | 1.7179 | 4796.35 | | M30 | uptrend | 547.93 | 19.6952 | 1.61875 | 4796.35 | | M15 | uptrend | 248.53 | 11.0432 | 0.411686 | 4796.35 | | M5 | downtrend | 569.56 | 4.2598 | -0.363936 | 4796.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147630.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:49:13,323 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:23,343 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:33,372 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:43,389 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:49:53,408 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:03,359 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:03 CET)" (scheduled at 2026-01-22 05:50:03.329776+01:00) 2026-01-22 05:50:03,359 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:03 CET)" executed successfully 2026-01-22 05:50:03,459 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:07,650 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:07 CET)" (scheduled at 2026-01-22 05:50:07.461608+01:00) 2026-01-22 05:50:07,650 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:07 CET)" executed successfully 2026-01-22 05:50:09,275 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:08 CET)" (scheduled at 2026-01-22 05:50:08.847423+01:00) 2026-01-22 05:50:09,431 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:51:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76678 | 4796.92 | | H4 | uptrend | 417.19 | 44.066 | 2.75757 | 4796.92 | | H1 | uptrend | 387.07 | 29.5902 | 1.71804 | 4796.92 | | M30 | uptrend | 547.98 | 19.6952 | 1.61889 | 4796.92 | | M15 | uptrend | 247.89 | 11.0753 | 0.411818 | 4796.91 | | M5 | downtrend | 605.22 | 4.0247 | -0.365373 | 4796.91 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.81% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146882.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.8% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:50:13,476 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:23,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:33,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:43,538 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:50:53,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:03,360 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:03 CET)" (scheduled at 2026-01-22 05:51:03.329776+01:00) 2026-01-22 05:51:03,360 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:03 CET)" executed successfully 2026-01-22 05:51:03,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:07 CET)" (scheduled at 2026-01-22 05:51:07.461608+01:00) 2026-01-22 05:51:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:07 CET)" executed successfully 2026-01-22 05:51:08,847 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:08 CET)" (scheduled at 2026-01-22 05:51:08.847423+01:00) 2026-01-22 05:51:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:52:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76656 | 4796.01 | | H4 | uptrend | 417.16 | 44.066 | 2.75736 | 4796.01 | | H1 | uptrend | 387.03 | 29.5902 | 1.71782 | 4796.01 | | M30 | uptrend | 547.91 | 19.6952 | 1.61867 | 4796.01 | | M15 | uptrend | 246.76 | 11.1203 | 0.411605 | 4796.01 | | M5 | downtrend | 589.26 | 4.1361 | -0.365585 | 4796.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.01% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147128.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:51:13,756 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:23,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:33,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:43,817 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:51:53,842 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:03 CET)" (scheduled at 2026-01-22 05:52:03.329776+01:00) 2026-01-22 05:52:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:03 CET)" executed successfully 2026-01-22 05:52:03,875 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:07 CET)" (scheduled at 2026-01-22 05:52:07.461608+01:00) 2026-01-22 05:52:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:07 CET)" executed successfully 2026-01-22 05:52:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:08 CET)" (scheduled at 2026-01-22 05:52:08.847423+01:00) 2026-01-22 05:52:08,994 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:53:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76645 | 4795.53 | | H4 | uptrend | 417.14 | 44.066 | 2.75725 | 4795.53 | | H1 | uptrend | 387 | 29.5902 | 1.71771 | 4795.53 | | M30 | uptrend | 547.87 | 19.6952 | 1.61856 | 4795.53 | | M15 | uptrend | 246.69 | 11.1203 | 0.411492 | 4795.53 | | M5 | downtrend | 586.1 | 4.1597 | -0.365699 | 4795.53 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.05% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147182.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:52:13,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:23,922 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:33,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:43,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:52:53,997 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:03 CET)" (scheduled at 2026-01-22 05:53:03.329776+01:00) 2026-01-22 05:53:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:03 CET)" executed successfully 2026-01-22 05:53:04,020 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:07 CET)" (scheduled at 2026-01-22 05:53:07.461608+01:00) 2026-01-22 05:53:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:07 CET)" executed successfully 2026-01-22 05:53:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:08 CET)" (scheduled at 2026-01-22 05:53:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76689 | 4797.39 | | H4 | uptrend | 417.2 | 44.066 | 2.75768 | 4797.39 | | H1 | uptrend | 387.1 | 29.5902 | 1.71815 | 4797.39 | | M30 | uptrend | 548.02 | 19.6952 | 1.619 | 4797.39 | | M15 | uptrend | 246.95 | 11.1203 | 0.411931 | 4797.39 | | M5 | downtrend | 585.39 | 4.1597 | -0.365257 | 4797.4 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.67) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147236.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 05:53:09,091 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:54:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:53:14,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:24,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:34,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:44,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:53:54,125 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:03 CET)" (scheduled at 2026-01-22 05:54:03.329776+01:00) 2026-01-22 05:54:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:03 CET)" executed successfully 2026-01-22 05:54:04,162 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:07 CET)" (scheduled at 2026-01-22 05:54:07.461608+01:00) 2026-01-22 05:54:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:07 CET)" executed successfully 2026-01-22 05:54:08,890 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:08 CET)" (scheduled at 2026-01-22 05:54:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 05:54:09,135 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:55:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76667 | 4796.49 | | H4 | uptrend | 417.17 | 44.066 | 2.75747 | 4796.49 | | H1 | uptrend | 387.05 | 29.5902 | 1.71794 | 4796.49 | | M30 | uptrend | 547.94 | 19.6952 | 1.61878 | 4796.49 | | M15 | uptrend | 246.8 | 11.1217 | 0.411721 | 4796.5 | | M5 | downtrend | 585.53 | 4.1611 | -0.36547 | 4796.5 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 147216.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:54:14,184 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:24,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:34,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:44,255 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:54:54,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:03,525 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:03 CET)" (scheduled at 2026-01-22 05:55:03.329776+01:00) 2026-01-22 05:55:03,525 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:03 CET)" executed successfully 2026-01-22 05:55:04,291 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:07 CET)" (scheduled at 2026-01-22 05:55:07.461608+01:00) 2026-01-22 05:55:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:07 CET)" executed successfully 2026-01-22 05:55:08,927 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:08 CET)" (scheduled at 2026-01-22 05:55:08.847423+01:00) 2026-01-22 05:55:09,079 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:56:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76649 | 4795.72 | | H4 | uptrend | 417.15 | 44.066 | 2.75729 | 4795.72 | | H1 | uptrend | 387.01 | 29.5902 | 1.71775 | 4795.72 | | M30 | uptrend | 547.88 | 19.6952 | 1.6186 | 4795.72 | | M15 | uptrend | 246.69 | 11.1217 | 0.411537 | 4795.72 | | M5 | downtrend | 621.62 | 3.8924 | -0.362943 | 4795.72 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146480.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.6% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:55:14,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:24,349 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:34,377 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:44,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:55:54,451 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:03 CET)" (scheduled at 2026-01-22 05:56:03.329776+01:00) 2026-01-22 05:56:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:03 CET)" executed successfully 2026-01-22 05:56:04,471 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:07 CET)" (scheduled at 2026-01-22 05:56:07.461608+01:00) 2026-01-22 05:56:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:07 CET)" executed successfully 2026-01-22 05:56:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:08 CET)" (scheduled at 2026-01-22 05:56:08.847423+01:00) 2026-01-22 05:56:09,012 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:57:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76654 | 4795.91 | | H4 | uptrend | 417.15 | 44.066 | 2.75735 | 4795.96 | | H1 | uptrend | 387.02 | 29.5902 | 1.71781 | 4795.96 | | M30 | uptrend | 547.9 | 19.6952 | 1.61866 | 4795.96 | | M15 | uptrend | 246.72 | 11.1217 | 0.411593 | 4795.96 | | M5 | downtrend | 614.86 | 3.9346 | -0.362886 | 4795.96 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.69% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146613.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.7% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:56:14,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:24,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:34,544 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:44,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:56:54,590 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:03 CET)" (scheduled at 2026-01-22 05:57:03.329776+01:00) 2026-01-22 05:57:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:03 CET)" executed successfully 2026-01-22 05:57:04,629 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:07,496 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:07 CET)" (scheduled at 2026-01-22 05:57:07.461608+01:00) 2026-01-22 05:57:07,496 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:07 CET)" executed successfully 2026-01-22 05:57:09,055 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:08 CET)" (scheduled at 2026-01-22 05:57:08.847423+01:00) 2026-01-22 05:57:09,214 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76663 | 4796.31 | | H4 | uptrend | 417.17 | 44.066 | 2.75744 | 4796.35 | | H1 | uptrend | 387.04 | 29.5902 | 1.7179 | 4796.35 | | M30 | uptrend | 547.93 | 19.6952 | 1.61875 | 4796.34 | | M15 | uptrend | 246.77 | 11.1217 | 0.411683 | 4796.34 | | M5 | downtrend | 610.61 | 3.961 | -0.362796 | 4796.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.65) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.75% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146717.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.8% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:57:14,655 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:24,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:34,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:44,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:57:54,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:03 CET)" (scheduled at 2026-01-22 05:58:03.329776+01:00) 2026-01-22 05:58:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:03 CET)" executed successfully 2026-01-22 05:58:04,758 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:07 CET)" (scheduled at 2026-01-22 05:58:07.461608+01:00) 2026-01-22 05:58:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:07 CET)" executed successfully 2026-01-22 05:58:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:08 CET)" (scheduled at 2026-01-22 05:58:08.847423+01:00) 2026-01-22 05:58:09,005 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 05:59:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76677 | 4796.9 | | H4 | uptrend | 417.19 | 44.066 | 2.75757 | 4796.9 | | H1 | uptrend | 387.07 | 29.5902 | 1.71803 | 4796.89 | | M30 | uptrend | 547.98 | 19.6952 | 1.61888 | 4796.89 | | M15 | uptrend | 246.57 | 11.1346 | 0.411813 | 4796.89 | | M5 | downtrend | 599.47 | 4.0332 | -0.362666 | 4796.89 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146921.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.9% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:58:14,785 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:24,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:34,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:44,863 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:58:54,879 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:03 CET)" (scheduled at 2026-01-22 05:59:03.329776+01:00) 2026-01-22 05:59:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:03 CET)" executed successfully 2026-01-22 05:59:04,927 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:07 CET)" (scheduled at 2026-01-22 05:59:07.461608+01:00) 2026-01-22 05:59:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:07 CET)" executed successfully 2026-01-22 05:59:09,127 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:08 CET)" (scheduled at 2026-01-22 05:59:08.847423+01:00) 2026-01-22 05:59:09,274 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:00:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76671 | 4796.66 | | H4 | uptrend | 417.18 | 44.066 | 2.75751 | 4796.66 | | H1 | uptrend | 387.06 | 29.5902 | 1.71798 | 4796.65 | | M30 | uptrend | 547.96 | 19.6952 | 1.61882 | 4796.65 | | M15 | uptrend | 246.53 | 11.1346 | 0.411756 | 4796.65 | | M5 | downtrend | 599.57 | 4.0332 | -0.362723 | 4796.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 146916.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.9% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 05:59:14,946 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:24,967 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:34,993 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:45,024 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 05:59:55,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:00,014 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 06:30:00 CET)" (scheduled at 2026-01-22 06:00:00+01:00) 2026-01-22 06:00:00,014 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 06:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 06:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 29.63 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 06:00:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:03 CET)" (scheduled at 2026-01-22 06:00:03.329776+01:00) 2026-01-22 06:00:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:03 CET)" executed successfully 2026-01-22 06:00:05,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:07 CET)" (scheduled at 2026-01-22 06:00:07.461608+01:00) 2026-01-22 06:00:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:07 CET)" executed successfully 2026-01-22 06:00:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:08 CET)" (scheduled at 2026-01-22 06:00:08.847423+01:00) 2026-01-22 06:00:09,102 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:01:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76659 | 4796.15 | | H4 | uptrend | 417.16 | 44.066 | 2.75739 | 4796.15 | | H1 | uptrend | 419.7 | 27.5752 | 1.73599 | 4796.15 | | M30 | uptrend | 576.54 | 18.387 | 1.59013 | 4796.15 | | M15 | uptrend | 247.06 | 10.4378 | 0.386809 | 4796.15 | | M5 | downtrend | 620.65 | 3.8437 | -0.357832 | 4796.15 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.77% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151861.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.8% 🎯 Enhanced Score: 66.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:00:15,098 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:25,137 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:35,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:45,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:00:55,214 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:03,410 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:03 CET)" (scheduled at 2026-01-22 06:01:03.329776+01:00) 2026-01-22 06:01:03,410 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:03 CET)" executed successfully 2026-01-22 06:01:05,243 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:07 CET)" (scheduled at 2026-01-22 06:01:07.461608+01:00) 2026-01-22 06:01:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:07 CET)" executed successfully 2026-01-22 06:01:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:08 CET)" (scheduled at 2026-01-22 06:01:08.847423+01:00) 2026-01-22 06:01:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:02:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76647 | 4795.65 | | H4 | uptrend | 417.14 | 44.066 | 2.75727 | 4795.65 | | H1 | uptrend | 418.8 | 27.6323 | 1.73587 | 4795.65 | | M30 | uptrend | 574.71 | 18.4442 | 1.59001 | 4795.65 | | M15 | uptrend | 245.64 | 10.495 | 0.386691 | 4795.65 | | M5 | downtrend | 611.76 | 3.9008 | -0.35795 | 4795.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.63) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 91.87% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151730.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 91.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 91.9/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 91.9% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:01:15,274 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:25,290 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:35,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:45,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:01:55,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:03 CET)" (scheduled at 2026-01-22 06:02:03.329776+01:00) 2026-01-22 06:02:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:03 CET)" executed successfully 2026-01-22 06:02:05,399 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:07 CET)" (scheduled at 2026-01-22 06:02:07.461608+01:00) 2026-01-22 06:02:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:07 CET)" executed successfully 2026-01-22 06:02:08,906 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:08 CET)" (scheduled at 2026-01-22 06:02:08.847423+01:00) 2026-01-22 06:02:09,069 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:03:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.61 | 85.153 | 9.76627 | 4794.78 | | H4 | uptrend | 417.11 | 44.066 | 2.75707 | 4794.78 | | H1 | uptrend | 417.15 | 27.7387 | 1.73568 | 4794.83 | | M30 | uptrend | 571.34 | 18.5506 | 1.58982 | 4794.83 | | M15 | uptrend | 243.05 | 10.6014 | 0.386498 | 4794.83 | | M5 | downtrend | 595.83 | 4.0072 | -0.358144 | 4794.83 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.61) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.05% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151483.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.0/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.0% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:02:15,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:25,441 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:35,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:45,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:02:55,524 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:03,368 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:03 CET)" (scheduled at 2026-01-22 06:03:03.329776+01:00) 2026-01-22 06:03:03,368 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:03 CET)" executed successfully 2026-01-22 06:03:05,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:07,493 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:07 CET)" (scheduled at 2026-01-22 06:03:07.461608+01:00) 2026-01-22 06:03:07,493 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:07 CET)" executed successfully 2026-01-22 06:03:08,938 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:08 CET)" (scheduled at 2026-01-22 06:03:08.847423+01:00) 2026-01-22 06:03:09,107 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76677 | 4796.89 | | H4 | uptrend | 417.19 | 44.066 | 2.75757 | 4796.89 | | H1 | uptrend | 417.27 | 27.7387 | 1.73616 | 4796.89 | | M30 | uptrend | 571.52 | 18.5506 | 1.59031 | 4796.89 | | M15 | uptrend | 243.35 | 10.6014 | 0.386984 | 4796.89 | | M5 | downtrend | 595.02 | 4.0072 | -0.357657 | 4796.89 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.66) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151545.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.1/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.1% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:03:15,576 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:25,592 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:35,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:45,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:03:55,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:03,352 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:03 CET)" (scheduled at 2026-01-22 06:04:03.329776+01:00) 2026-01-22 06:04:03,352 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:03 CET)" executed successfully 2026-01-22 06:04:05,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:07 CET)" (scheduled at 2026-01-22 06:04:07.461608+01:00) 2026-01-22 06:04:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:07 CET)" executed successfully 2026-01-22 06:04:08,914 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:08 CET)" (scheduled at 2026-01-22 06:04:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76719 | 4798.69 | | H4 | uptrend | 417.25 | 44.066 | 2.75799 | 4798.69 | | H1 | uptrend | 415.87 | 27.8387 | 1.73659 | 4798.69 | | M30 | uptrend | 568.61 | 18.6506 | 1.59073 | 4798.69 | | M15 | uptrend | 241.35 | 10.7014 | 0.387412 | 4798.7 | | M5 | downtrend | 579.84 | 4.1072 | -0.35723 | 4798.7 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.71) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151374.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 06:04:09,141 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:05:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:04:15,718 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:25,741 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:35,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:45,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:04:55,812 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:03 CET)" (scheduled at 2026-01-22 06:05:03.329776+01:00) 2026-01-22 06:05:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:03 CET)" executed successfully 2026-01-22 06:05:05,843 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:07,572 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:07 CET)" (scheduled at 2026-01-22 06:05:07.461608+01:00) 2026-01-22 06:05:07,572 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:07 CET)" executed successfully 2026-01-22 06:05:08,987 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:08 CET)" (scheduled at 2026-01-22 06:05:08.847423+01:00) 2026-01-22 06:05:09,164 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.71 | 85.153 | 9.76763 | 4800.54 | | H4 | uptrend | 417.03 | 44.096 | 2.75843 | 4800.54 | | H1 | uptrend | 413.7 | 27.9916 | 1.73703 | 4800.54 | | M30 | uptrend | 564.14 | 18.8035 | 1.59117 | 4800.54 | | M15 | uptrend | 238.21 | 10.8543 | 0.387847 | 4800.54 | | M5 | downtrend | 585.49 | 3.9938 | -0.350748 | 4800.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.64) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.15% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150534.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:05:15,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:25,899 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:35,909 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:45,955 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:05:55,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:03,515 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:03 CET)" (scheduled at 2026-01-22 06:06:03.329776+01:00) 2026-01-22 06:06:03,515 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:03 CET)" executed successfully 2026-01-22 06:06:05,999 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:07,606 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:07 CET)" (scheduled at 2026-01-22 06:06:07.461608+01:00) 2026-01-22 06:06:07,626 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:07 CET)" executed successfully 2026-01-22 06:06:08,868 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:08 CET)" (scheduled at 2026-01-22 06:06:08.847423+01:00) 2026-01-22 06:06:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:07:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.71 | 85.153 | 9.76762 | 4800.51 | | H4 | uptrend | 416.64 | 44.1375 | 2.75842 | 4800.51 | | H1 | uptrend | 413.09 | 28.033 | 1.73702 | 4800.51 | | M30 | uptrend | 562.89 | 18.8449 | 1.59116 | 4800.48 | | M15 | uptrend | 237.3 | 10.8957 | 0.387832 | 4800.48 | | M5 | downtrend | 579.5 | 4.0352 | -0.350763 | 4800.48 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.48) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150419.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.2/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.2% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:06:16,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:26,040 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:36,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:46,102 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:06:56,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:03 CET)" (scheduled at 2026-01-22 06:07:03.329776+01:00) 2026-01-22 06:07:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:03 CET)" executed successfully 2026-01-22 06:07:06,149 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:07,601 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:07 CET)" (scheduled at 2026-01-22 06:07:07.461608+01:00) 2026-01-22 06:07:07,601 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:07 CET)" executed successfully 2026-01-22 06:07:08,958 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:08 CET)" (scheduled at 2026-01-22 06:07:08.847423+01:00) 2026-01-22 06:07:09,102 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:08:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76725 | 4798.91 | | H4 | uptrend | 416.58 | 44.1375 | 2.75805 | 4798.92 | | H1 | uptrend | 413 | 28.033 | 1.73664 | 4798.92 | | M30 | uptrend | 562.76 | 18.8449 | 1.59079 | 4798.92 | | M15 | uptrend | 237.07 | 10.8957 | 0.387464 | 4798.92 | | M5 | downtrend | 564.62 | 4.1459 | -0.351131 | 4798.92 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150695.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:07:16,173 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:26,187 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:36,311 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:46,341 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:07:56,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:03 CET)" (scheduled at 2026-01-22 06:08:03.329776+01:00) 2026-01-22 06:08:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:03 CET)" executed successfully 2026-01-22 06:08:06,378 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:07,497 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:07 CET)" (scheduled at 2026-01-22 06:08:07.461608+01:00) 2026-01-22 06:08:07,497 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:07 CET)" executed successfully 2026-01-22 06:08:09,062 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:08 CET)" (scheduled at 2026-01-22 06:08:08.847423+01:00) 2026-01-22 06:08:09,200 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:09:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76716 | 4798.54 | | H4 | uptrend | 416.57 | 44.1375 | 2.75796 | 4798.54 | | H1 | uptrend | 412.98 | 28.033 | 1.73655 | 4798.54 | | M30 | uptrend | 562.73 | 18.8449 | 1.5907 | 4798.54 | | M15 | uptrend | 237.02 | 10.8957 | 0.387374 | 4798.54 | | M5 | downtrend | 561.57 | 4.1695 | -0.351221 | 4798.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150735.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:08:16,405 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:26,423 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:36,445 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:46,467 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:08:56,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:03 CET)" (scheduled at 2026-01-22 06:09:03.329776+01:00) 2026-01-22 06:09:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:03 CET)" executed successfully 2026-01-22 06:09:06,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:07 CET)" (scheduled at 2026-01-22 06:09:07.461608+01:00) 2026-01-22 06:09:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:07 CET)" executed successfully 2026-01-22 06:09:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:08 CET)" (scheduled at 2026-01-22 06:09:08.847423+01:00) 2026-01-22 06:09:09,039 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:10:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76718 | 4798.62 | | H4 | uptrend | 416.57 | 44.1375 | 2.75798 | 4798.62 | | H1 | uptrend | 412.98 | 28.033 | 1.73657 | 4798.62 | | M30 | uptrend | 562.74 | 18.8449 | 1.59072 | 4798.62 | | M15 | uptrend | 237.03 | 10.8957 | 0.387391 | 4798.61 | | M5 | downtrend | 559.24 | 4.1867 | -0.351204 | 4798.61 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.46% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150786.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:09:16,545 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:26,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:36,591 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:46,610 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:09:56,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:03 CET)" (scheduled at 2026-01-22 06:10:03.329776+01:00) 2026-01-22 06:10:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:03 CET)" executed successfully 2026-01-22 06:10:06,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:07,495 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:07 CET)" (scheduled at 2026-01-22 06:10:07.461608+01:00) 2026-01-22 06:10:07,495 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:07 CET)" executed successfully 2026-01-22 06:10:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:08 CET)" (scheduled at 2026-01-22 06:10:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:10:09,088 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:11:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76681 | 4797.09 | | H4 | uptrend | 416.52 | 44.1375 | 2.75761 | 4797.09 | | H1 | uptrend | 412.9 | 28.033 | 1.73621 | 4797.09 | | M30 | uptrend | 562.61 | 18.8449 | 1.59035 | 4797.09 | | M15 | uptrend | 236.81 | 10.8957 | 0.387024 | 4797.06 | | M5 | downtrend | 575.56 | 4.0122 | -0.34639 | 4797.19 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.40) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150426.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:10:16,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:26,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:36,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:46,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:10:56,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:03,773 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:03 CET)" (scheduled at 2026-01-22 06:11:03.329776+01:00) 2026-01-22 06:11:03,775 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:03 CET)" executed successfully 2026-01-22 06:11:06,780 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:07 CET)" (scheduled at 2026-01-22 06:11:07.461608+01:00) 2026-01-22 06:11:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:07 CET)" executed successfully 2026-01-22 06:11:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:08 CET)" (scheduled at 2026-01-22 06:11:08.847423+01:00) 2026-01-22 06:11:09,011 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:12:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76695 | 4797.66 | | H4 | uptrend | 416.54 | 44.1375 | 2.75775 | 4797.66 | | H1 | uptrend | 412.93 | 28.033 | 1.73635 | 4797.66 | | M30 | uptrend | 562.66 | 18.8449 | 1.59049 | 4797.66 | | M15 | uptrend | 236.89 | 10.8957 | 0.387166 | 4797.66 | | M5 | downtrend | 567.9 | 4.0651 | -0.346279 | 4797.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150602.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:11:16,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:26,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:36,852 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:46,869 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:11:56,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:03 CET)" (scheduled at 2026-01-22 06:12:03.329776+01:00) 2026-01-22 06:12:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:03 CET)" executed successfully 2026-01-22 06:12:06,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:07 CET)" (scheduled at 2026-01-22 06:12:07.461608+01:00) 2026-01-22 06:12:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:07 CET)" executed successfully 2026-01-22 06:12:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:08 CET)" (scheduled at 2026-01-22 06:12:08.847423+01:00) 2026-01-22 06:12:09,038 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76683 | 4797.17 | | H4 | uptrend | 416.52 | 44.1375 | 2.75763 | 4797.17 | | H1 | uptrend | 412.9 | 28.033 | 1.73623 | 4797.17 | | M30 | uptrend | 562.62 | 18.8449 | 1.59037 | 4797.17 | | M15 | uptrend | 236.82 | 10.8957 | 0.38705 | 4797.17 | | M5 | downtrend | 567.89 | 4.0665 | -0.346395 | 4797.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.40) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.35% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150575.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.3/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.3% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:12:16,932 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:26,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:36,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:46,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:12:57,013 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:03 CET)" (scheduled at 2026-01-22 06:13:03.329776+01:00) 2026-01-22 06:13:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:03 CET)" executed successfully 2026-01-22 06:13:07,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:07 CET)" (scheduled at 2026-01-22 06:13:07.461608+01:00) 2026-01-22 06:13:07,489 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:07 CET)" executed successfully 2026-01-22 06:13:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:08 CET)" (scheduled at 2026-01-22 06:13:08.847423+01:00) 2026-01-22 06:13:09,133 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76706 | 4798.13 | | H4 | uptrend | 416.56 | 44.1375 | 2.75786 | 4798.13 | | H1 | uptrend | 412.96 | 28.033 | 1.73646 | 4798.13 | | M30 | uptrend | 562.7 | 18.8449 | 1.5906 | 4798.14 | | M15 | uptrend | 236.96 | 10.8957 | 0.38728 | 4798.14 | | M5 | downtrend | 564.24 | 4.0901 | -0.346166 | 4798.14 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150678.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:13:17,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:27,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:37,099 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:47,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:13:57,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:03 CET)" (scheduled at 2026-01-22 06:14:03.329776+01:00) 2026-01-22 06:14:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:03 CET)" executed successfully 2026-01-22 06:14:07,167 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:07 CET)" (scheduled at 2026-01-22 06:14:07.461608+01:00) 2026-01-22 06:14:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:07 CET)" executed successfully 2026-01-22 06:14:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:08 CET)" (scheduled at 2026-01-22 06:14:08.847423+01:00) 2026-01-22 06:14:09,032 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:15:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76736 | 4799.41 | | H4 | uptrend | 416.6 | 44.1375 | 2.75816 | 4799.41 | | H1 | uptrend | 413.03 | 28.033 | 1.73676 | 4799.41 | | M30 | uptrend | 562.81 | 18.8449 | 1.5909 | 4799.41 | | M15 | uptrend | 237.15 | 10.8957 | 0.38758 | 4799.41 | | M5 | downtrend | 553.69 | 4.1643 | -0.345866 | 4799.41 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.46) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150917.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:14:17,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:27,203 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:37,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:47,257 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:14:57,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:03 CET)" (scheduled at 2026-01-22 06:15:03.329776+01:00) 2026-01-22 06:15:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:03 CET)" executed successfully 2026-01-22 06:15:07,296 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:07,517 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:07 CET)" (scheduled at 2026-01-22 06:15:07.461608+01:00) 2026-01-22 06:15:07,519 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:07 CET)" executed successfully 2026-01-22 06:15:09,244 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:08 CET)" (scheduled at 2026-01-22 06:15:08.847423+01:00) 2026-01-22 06:15:09,396 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76739 | 4799.5 | | H4 | uptrend | 416.6 | 44.1375 | 2.75818 | 4799.5 | | H1 | uptrend | 413.03 | 28.033 | 1.73678 | 4799.5 | | M30 | uptrend | 562.81 | 18.8449 | 1.59092 | 4799.5 | | M15 | uptrend | 238.67 | 10.1881 | 0.364733 | 4799.48 | | M5 | downtrend | 563.16 | 3.9999 | -0.337894 | 4799.48 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.46) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.42% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150823.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.4/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.4% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:15:17,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:27,338 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:37,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:47,380 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:15:57,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:03,525 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:03 CET)" (scheduled at 2026-01-22 06:16:03.329776+01:00) 2026-01-22 06:16:03,525 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:03 CET)" executed successfully 2026-01-22 06:16:07,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:07,728 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:07 CET)" (scheduled at 2026-01-22 06:16:07.461608+01:00) 2026-01-22 06:16:07,730 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:07 CET)" executed successfully 2026-01-22 06:16:09,375 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:08 CET)" (scheduled at 2026-01-22 06:16:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:16:09,606 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:17:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76733 | 4799.27 | | H4 | uptrend | 416.6 | 44.1375 | 2.75813 | 4799.27 | | H1 | uptrend | 413.02 | 28.033 | 1.73673 | 4799.27 | | M30 | uptrend | 562.79 | 18.8449 | 1.59087 | 4799.26 | | M15 | uptrend | 237.57 | 10.2339 | 0.364681 | 4799.26 | | M5 | downtrend | 556.89 | 4.0457 | -0.337946 | 4799.26 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.45) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.49% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150873.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:16:17,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:27,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:37,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:47,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:16:57,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:03,448 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:03 CET)" (scheduled at 2026-01-22 06:17:03.329776+01:00) 2026-01-22 06:17:03,448 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:03 CET)" executed successfully 2026-01-22 06:17:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:07 CET)" (scheduled at 2026-01-22 06:17:07.461608+01:00) 2026-01-22 06:17:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:07 CET)" executed successfully 2026-01-22 06:17:07,569 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:08,869 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:08 CET)" (scheduled at 2026-01-22 06:17:08.847423+01:00) 2026-01-22 06:17:09,048 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76703 | 4798.01 | | H4 | uptrend | 416.55 | 44.1375 | 2.75783 | 4798.01 | | H1 | uptrend | 412.95 | 28.033 | 1.73643 | 4798.01 | | M30 | uptrend | 562.69 | 18.8449 | 1.59057 | 4798.01 | | M15 | uptrend | 236.01 | 10.2931 | 0.364386 | 4798.01 | | M5 | downtrend | 549.32 | 4.1049 | -0.338241 | 4798.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.59% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150933.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:17:17,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:27,600 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:37,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:47,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:17:57,672 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:03,351 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:03 CET)" (scheduled at 2026-01-22 06:18:03.329776+01:00) 2026-01-22 06:18:03,351 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:03 CET)" executed successfully 2026-01-22 06:18:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:07 CET)" (scheduled at 2026-01-22 06:18:07.461608+01:00) 2026-01-22 06:18:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:07 CET)" executed successfully 2026-01-22 06:18:07,696 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:08 CET)" (scheduled at 2026-01-22 06:18:08.847423+01:00) 2026-01-22 06:18:09,062 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:19:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.76731 | 4799.2 | | H4 | uptrend | 416.59 | 44.1375 | 2.75811 | 4799.2 | | H1 | uptrend | 413.02 | 28.033 | 1.73671 | 4799.2 | | M30 | uptrend | 562.79 | 18.8449 | 1.59085 | 4799.18 | | M15 | uptrend | 236.04 | 10.2996 | 0.364662 | 4799.18 | | M5 | downtrend | 548.02 | 4.1114 | -0.337967 | 4799.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.45) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.6% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150967.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:18:17,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:27,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:37,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:47,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:18:57,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:03 CET)" (scheduled at 2026-01-22 06:19:03.329776+01:00) 2026-01-22 06:19:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:03 CET)" executed successfully 2026-01-22 06:19:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:07 CET)" (scheduled at 2026-01-22 06:19:07.461608+01:00) 2026-01-22 06:19:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:07 CET)" executed successfully 2026-01-22 06:19:07,813 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:08,871 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:08 CET)" (scheduled at 2026-01-22 06:19:08.847423+01:00) 2026-01-22 06:19:09,043 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:20:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76698 | 4797.8 | | H4 | uptrend | 416.54 | 44.1375 | 2.75778 | 4797.8 | | H1 | uptrend | 412.94 | 28.033 | 1.73638 | 4797.8 | | M30 | uptrend | 562.67 | 18.8449 | 1.59052 | 4797.79 | | M15 | uptrend | 235.61 | 10.3089 | 0.364334 | 4797.79 | | M5 | downtrend | 547.31 | 4.1207 | -0.338293 | 4797.79 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150940.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:19:17,830 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:27,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:37,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:47,898 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:19:57,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:03,454 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:03 CET)" (scheduled at 2026-01-22 06:20:03.329776+01:00) 2026-01-22 06:20:03,454 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:03 CET)" executed successfully 2026-01-22 06:20:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:07 CET)" (scheduled at 2026-01-22 06:20:07.461608+01:00) 2026-01-22 06:20:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:07 CET)" executed successfully 2026-01-22 06:20:07,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:08 CET)" (scheduled at 2026-01-22 06:20:08.847423+01:00) 2026-01-22 06:20:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76693 | 4797.56 | | H4 | uptrend | 416.54 | 44.1375 | 2.75773 | 4797.56 | | H1 | uptrend | 412.92 | 28.033 | 1.73632 | 4797.56 | | M30 | uptrend | 562.65 | 18.8449 | 1.59047 | 4797.56 | | M15 | uptrend | 233.22 | 10.4131 | 0.36428 | 4797.56 | | M5 | downtrend | 556.82 | 3.9467 | -0.329641 | 4797.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.49% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150609.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 66.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:20:17,966 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:27,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:38,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:48,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:20:58,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:03 CET)" (scheduled at 2026-01-22 06:21:03.329776+01:00) 2026-01-22 06:21:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:03 CET)" executed successfully 2026-01-22 06:21:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:07 CET)" (scheduled at 2026-01-22 06:21:07.461608+01:00) 2026-01-22 06:21:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:07 CET)" executed successfully 2026-01-22 06:21:08,077 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:08 CET)" (scheduled at 2026-01-22 06:21:08.847423+01:00) 2026-01-22 06:21:08,980 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76681 | 4797.07 | | H4 | uptrend | 416.52 | 44.1375 | 2.75761 | 4797.07 | | H1 | uptrend | 412.9 | 28.033 | 1.73621 | 4797.07 | | M30 | uptrend | 562.61 | 18.8449 | 1.59035 | 4797.07 | | M15 | uptrend | 233.14 | 10.4131 | 0.364159 | 4797.05 | | M5 | downtrend | 546.92 | 4.0196 | -0.329762 | 4797.05 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.40) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150793.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:21:18,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:28,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:38,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:48,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:21:58,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:03 CET)" (scheduled at 2026-01-22 06:22:03.329776+01:00) 2026-01-22 06:22:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:03 CET)" executed successfully 2026-01-22 06:22:07,516 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:07 CET)" (scheduled at 2026-01-22 06:22:07.461608+01:00) 2026-01-22 06:22:07,516 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:07 CET)" executed successfully 2026-01-22 06:22:08,202 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:09,047 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:08 CET)" (scheduled at 2026-01-22 06:22:08.847423+01:00) 2026-01-22 06:22:09,186 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:23:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76655 | 4795.97 | | H4 | uptrend | 416.48 | 44.1375 | 2.75735 | 4795.97 | | H1 | uptrend | 412.83 | 28.033 | 1.73595 | 4795.97 | | M30 | uptrend | 562.52 | 18.8449 | 1.59009 | 4795.97 | | M15 | uptrend | 231.6 | 10.4753 | 0.363904 | 4795.97 | | M5 | downtrend | 536.48 | 4.101 | -0.330017 | 4795.97 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.37) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.74% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150904.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:22:18,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:28,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:38,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:48,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:22:58,307 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:03 CET)" (scheduled at 2026-01-22 06:23:03.329776+01:00) 2026-01-22 06:23:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:03 CET)" executed successfully 2026-01-22 06:23:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:07 CET)" (scheduled at 2026-01-22 06:23:07.461608+01:00) 2026-01-22 06:23:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:07 CET)" executed successfully 2026-01-22 06:23:08,330 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:08,855 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:08 CET)" (scheduled at 2026-01-22 06:23:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.63 | 85.153 | 9.76663 | 4796.29 | | H4 | uptrend | 416.49 | 44.1375 | 2.75742 | 4796.28 | | H1 | uptrend | 412.85 | 28.033 | 1.73602 | 4796.28 | | M30 | uptrend | 562.54 | 18.8449 | 1.59015 | 4796.24 | | M15 | uptrend | 231.64 | 10.4753 | 0.363972 | 4796.26 | | M5 | downtrend | 536.37 | 4.101 | -0.329948 | 4796.26 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.74% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150910.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list'
2026-01-22 06:23:09,076 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:24:08 CET)" executed successfully
✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:23:18,348 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:28,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:38,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:48,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:23:58,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:03,433 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:03 CET)" (scheduled at 2026-01-22 06:24:03.329776+01:00) 2026-01-22 06:24:03,433 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:03 CET)" executed successfully 2026-01-22 06:24:07,791 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:07 CET)" (scheduled at 2026-01-22 06:24:07.461608+01:00) 2026-01-22 06:24:07,791 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:07 CET)" executed successfully 2026-01-22 06:24:08,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:08,941 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:08 CET)" (scheduled at 2026-01-22 06:24:08.847423+01:00) 2026-01-22 06:24:09,132 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.65 | 85.153 | 9.76684 | 4797.2 | | H4 | uptrend | 416.52 | 44.1375 | 2.75764 | 4797.2 | | H1 | uptrend | 412.9 | 28.033 | 1.73624 | 4797.2 | | M30 | uptrend | 562.62 | 18.8449 | 1.59038 | 4797.2 | | M15 | uptrend | 231.78 | 10.4753 | 0.364194 | 4797.2 | | M5 | downtrend | 536.01 | 4.101 | -0.329726 | 4797.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.40) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.75% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150947.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 40.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 66.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:24:18,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:28,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:38,581 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:48,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:24:58,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:03,407 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:03 CET)" (scheduled at 2026-01-22 06:25:03.329776+01:00) 2026-01-22 06:25:03,407 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:03 CET)" executed successfully 2026-01-22 06:25:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:07 CET)" (scheduled at 2026-01-22 06:25:07.461608+01:00) 2026-01-22 06:25:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:07 CET)" executed successfully 2026-01-22 06:25:08,627 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:08,914 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:08 CET)" (scheduled at 2026-01-22 06:25:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:25:09,189 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:26:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76665 | 4796.39 | | H4 | uptrend | 416.5 | 44.1375 | 2.75747 | 4796.47 | | H1 | uptrend | 412.86 | 28.033 | 1.73606 | 4796.47 | | M30 | uptrend | 562.56 | 18.8449 | 1.59021 | 4796.48 | | M15 | uptrend | 231.67 | 10.4753 | 0.364024 | 4796.48 | | M5 | downtrend | 559.3 | 3.8381 | -0.321998 | 4796.48 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.45% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150443.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (92%) ⏸️ No clear signal: 1
2026-01-22 06:25:18,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:28,670 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:38,701 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:48,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:25:58,729 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:03,621 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:03 CET)" (scheduled at 2026-01-22 06:26:03.329776+01:00) 2026-01-22 06:26:03,621 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:03 CET)" executed successfully 2026-01-22 06:26:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:07 CET)" (scheduled at 2026-01-22 06:26:07.461608+01:00) 2026-01-22 06:26:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:07 CET)" executed successfully 2026-01-22 06:26:08,759 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:09,155 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:08 CET)" (scheduled at 2026-01-22 06:26:08.847423+01:00) 2026-01-22 06:26:09,301 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:27:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.76672 | 4796.7 | | H4 | uptrend | 416.5 | 44.1375 | 2.75752 | 4796.7 | | H1 | uptrend | 412.87 | 28.033 | 1.73612 | 4796.7 | | M30 | uptrend | 562.58 | 18.8449 | 1.59026 | 4796.7 | | M15 | uptrend | 231.71 | 10.4753 | 0.364076 | 4796.7 | | M5 | downtrend | 554.86 | 3.8681 | -0.321936 | 4796.74 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.39) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.51% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150545.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:26:18,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:28,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:38,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:48,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:26:58,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:03 CET)" (scheduled at 2026-01-22 06:27:03.329776+01:00) 2026-01-22 06:27:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:03 CET)" executed successfully 2026-01-22 06:27:07,775 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:07 CET)" (scheduled at 2026-01-22 06:27:07.461608+01:00) 2026-01-22 06:27:07,775 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:07 CET)" executed successfully 2026-01-22 06:27:08,873 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:08 CET)" (scheduled at 2026-01-22 06:27:08.847423+01:00) 2026-01-22 06:27:08,873 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:09,008 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:28:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.64 | 85.153 | 9.7667 | 4796.58 | | H4 | uptrend | 416.5 | 44.1375 | 2.75749 | 4796.58 | | H1 | uptrend | 412.87 | 28.033 | 1.73609 | 4796.58 | | M30 | uptrend | 562.57 | 18.8449 | 1.59023 | 4796.58 | | M15 | uptrend | 231.69 | 10.4753 | 0.364048 | 4796.58 | | M5 | downtrend | 553.9 | 3.8752 | -0.321974 | 4796.58 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.52% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150559.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.5/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.5% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:27:18,903 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:28,922 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:38,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:48,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:27:58,979 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:03 CET)" (scheduled at 2026-01-22 06:28:03.329776+01:00) 2026-01-22 06:28:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:03 CET)" executed successfully 2026-01-22 06:28:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:07 CET)" (scheduled at 2026-01-22 06:28:07.461608+01:00) 2026-01-22 06:28:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:07 CET)" executed successfully 2026-01-22 06:28:08,959 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:08 CET)" (scheduled at 2026-01-22 06:28:08.847423+01:00) 2026-01-22 06:28:09,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:09,160 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76651 | 4795.79 | | H4 | uptrend | 416.47 | 44.1375 | 2.75731 | 4795.79 | | H1 | uptrend | 412.82 | 28.033 | 1.7359 | 4795.79 | | M30 | uptrend | 562.5 | 18.8449 | 1.59005 | 4795.79 | | M15 | uptrend | 231.06 | 10.4981 | 0.363861 | 4795.79 | | M5 | downtrend | 544.58 | 3.9438 | -0.322161 | 4795.79 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.36) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.64% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150709.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:28:19,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:29,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:39,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:49,066 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:28:59,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:03,434 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:03 CET)" (scheduled at 2026-01-22 06:29:03.329776+01:00) 2026-01-22 06:29:03,434 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:03 CET)" executed successfully 2026-01-22 06:29:07,547 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:07 CET)" (scheduled at 2026-01-22 06:29:07.461608+01:00) 2026-01-22 06:29:07,547 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:07 CET)" executed successfully 2026-01-22 06:29:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:08 CET)" (scheduled at 2026-01-22 06:29:08.847423+01:00) 2026-01-22 06:29:09,057 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76647 | 4795.65 | | H4 | uptrend | 416.47 | 44.1375 | 2.75728 | 4795.68 | | H1 | uptrend | 412.82 | 28.033 | 1.73588 | 4795.68 | | M30 | uptrend | 562.49 | 18.8449 | 1.59002 | 4795.69 | | M15 | uptrend | 231.05 | 10.4981 | 0.363838 | 4795.69 | | M5 | downtrend | 544.62 | 3.9438 | -0.322184 | 4795.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.36) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.64% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150707.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.6/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.6% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:29:09,142 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:19,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:29,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:39,189 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:49,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:29:59,235 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:30:00,018 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 07:00:00 CET)" (scheduled at 2026-01-22 06:30:00+01:00) 2026-01-22 06:30:00,038 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 07:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 06:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 28.10 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 06:30:03,369 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:03 CET)" (scheduled at 2026-01-22 06:30:03.329776+01:00) 2026-01-22 06:30:03,369 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:03 CET)" executed successfully 2026-01-22 06:30:07,572 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:07 CET)" (scheduled at 2026-01-22 06:30:07.461608+01:00) 2026-01-22 06:30:07,572 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:07 CET)" executed successfully 2026-01-22 06:30:09,134 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:08 CET)" (scheduled at 2026-01-22 06:30:08.847423+01:00) 2026-01-22 06:30:09,284 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:31:08 CET)" executed successfully 2026-01-22 06:30:09,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76695 | 4797.68 | | H4 | uptrend | 416.54 | 44.1375 | 2.75775 | 4797.68 | | H1 | uptrend | 412.93 | 28.033 | 1.73635 | 4797.68 | | M30 | uptrend | 587.41 | 17.6989 | 1.55947 | 4797.61 | | M15 | uptrend | 228.32 | 9.9483 | 0.340702 | 4797.61 | | M5 | downtrend | 543.03 | 3.8621 | -0.314589 | 4797.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.69% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152498.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.7/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.7% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:30:19,293 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:30:29,320 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:30:39,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:30:49,352 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:30:59,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:03 CET)" (scheduled at 2026-01-22 06:31:03.329776+01:00) 2026-01-22 06:31:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:03 CET)" executed successfully 2026-01-22 06:31:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:07 CET)" (scheduled at 2026-01-22 06:31:07.461608+01:00) 2026-01-22 06:31:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:07 CET)" executed successfully 2026-01-22 06:31:09,176 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:08 CET)" (scheduled at 2026-01-22 06:31:08.847423+01:00) 2026-01-22 06:31:09,344 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76723 | 4798.83 | | H4 | uptrend | 416.58 | 44.1375 | 2.75802 | 4798.83 | | H1 | uptrend | 412.99 | 28.033 | 1.73662 | 4798.83 | | M30 | uptrend | 584.82 | 17.7803 | 1.55975 | 4798.83 | | M15 | uptrend | 226.65 | 10.0297 | 0.340991 | 4798.83 | | M5 | downtrend | 531.31 | 3.9436 | -0.314289 | 4798.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.84% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152469.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:31:09,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:19,417 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:29,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:39,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:49,465 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:31:59,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:03,541 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:03 CET)" (scheduled at 2026-01-22 06:32:03.329776+01:00) 2026-01-22 06:32:03,541 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:03 CET)" executed successfully 2026-01-22 06:32:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:07 CET)" (scheduled at 2026-01-22 06:32:07.461608+01:00) 2026-01-22 06:32:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:07 CET)" executed successfully 2026-01-22 06:32:09,071 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:08 CET)" (scheduled at 2026-01-22 06:32:08.847423+01:00) 2026-01-22 06:32:09,235 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76727 | 4799.03 | | H4 | uptrend | 416.59 | 44.1375 | 2.75807 | 4799.03 | | H1 | uptrend | 413.01 | 28.033 | 1.73667 | 4799.02 | | M30 | uptrend | 583.01 | 17.836 | 1.5598 | 4799.02 | | M15 | uptrend | 225.43 | 10.0854 | 0.341036 | 4799.02 | | M5 | downtrend | 523.83 | 3.9993 | -0.314242 | 4799.02 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.45) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152400.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:32:09,513 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:19,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:29,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:39,570 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:49,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:32:59,607 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:03,348 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:03 CET)" (scheduled at 2026-01-22 06:33:03.329776+01:00) 2026-01-22 06:33:03,348 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:03 CET)" executed successfully 2026-01-22 06:33:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:07 CET)" (scheduled at 2026-01-22 06:33:07.461608+01:00) 2026-01-22 06:33:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:07 CET)" executed successfully 2026-01-22 06:33:08,876 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:08 CET)" (scheduled at 2026-01-22 06:33:08.847423+01:00) 2026-01-22 06:33:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:34:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76712 | 4798.36 | | H4 | uptrend | 416.56 | 44.1375 | 2.75791 | 4798.36 | | H1 | uptrend | 412.97 | 28.033 | 1.73651 | 4798.36 | | M30 | uptrend | 582.96 | 17.836 | 1.55964 | 4798.36 | | M15 | uptrend | 225.33 | 10.0854 | 0.34088 | 4798.36 | | M5 | downtrend | 524.09 | 3.9993 | -0.314397 | 4798.36 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152385.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:33:09,632 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:19,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:29,666 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:39,687 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:49,703 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:33:59,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:03 CET)" (scheduled at 2026-01-22 06:34:03.329776+01:00) 2026-01-22 06:34:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:03 CET)" executed successfully 2026-01-22 06:34:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:07 CET)" (scheduled at 2026-01-22 06:34:07.461608+01:00) 2026-01-22 06:34:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:07 CET)" executed successfully 2026-01-22 06:34:09,275 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:08 CET)" (scheduled at 2026-01-22 06:34:08.847423+01:00) 2026-01-22 06:34:09,433 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:35:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.66 | 85.153 | 9.76696 | 4797.72 | | H4 | uptrend | 416.54 | 44.1375 | 2.75776 | 4797.72 | | H1 | uptrend | 412.93 | 28.033 | 1.73636 | 4797.72 | | M30 | uptrend | 582.9 | 17.836 | 1.55949 | 4797.72 | | M15 | uptrend | 225.23 | 10.0854 | 0.340728 | 4797.72 | | M5 | downtrend | 524.34 | 3.9993 | -0.314549 | 4797.72 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152370.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:34:09,748 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:19,764 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:29,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:39,794 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:49,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:34:59,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:03 CET)" (scheduled at 2026-01-22 06:35:03.329776+01:00) 2026-01-22 06:35:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:03 CET)" executed successfully 2026-01-22 06:35:07,996 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:07 CET)" (scheduled at 2026-01-22 06:35:07.461608+01:00) 2026-01-22 06:35:07,996 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:07 CET)" executed successfully 2026-01-22 06:35:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:08 CET)" (scheduled at 2026-01-22 06:35:08.847423+01:00) 2026-01-22 06:35:08,981 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:36:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.62 | 85.153 | 9.76647 | 4795.61 | | H4 | uptrend | 416.47 | 44.1375 | 2.75726 | 4795.61 | | H1 | uptrend | 412.81 | 28.033 | 1.73586 | 4795.59 | | M30 | uptrend | 582.71 | 17.836 | 1.55899 | 4795.59 | | M15 | uptrend | 224.9 | 10.0854 | 0.340225 | 4795.59 | | M5 | downtrend | 536.05 | 3.815 | -0.306755 | 4795.59 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.36) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.77% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152075.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.8/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.8% 🎯 Enhanced Score: 70.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:35:09,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:19,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:29,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:39,924 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:49,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:35:59,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:36:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:03 CET)" (scheduled at 2026-01-22 06:36:03.329776+01:00) 2026-01-22 06:36:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:03 CET)" executed successfully 2026-01-22 06:36:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:07 CET)" (scheduled at 2026-01-22 06:36:07.461608+01:00) 2026-01-22 06:36:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:07 CET)" executed successfully 2026-01-22 06:36:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:08 CET)" (scheduled at 2026-01-22 06:36:08.847423+01:00) 2026-01-22 06:36:09,014 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:37:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.67 | 85.153 | 9.76707 | 4798.16 | | H4 | uptrend | 416.56 | 44.1375 | 2.75787 | 4798.16 | | H1 | uptrend | 412.96 | 28.033 | 1.73646 | 4798.16 | | M30 | uptrend | 582.94 | 17.836 | 1.5596 | 4798.16 | | M15 | uptrend | 225.3 | 10.0854 | 0.340832 | 4798.16 | | M5 | downtrend | 519.14 | 3.9315 | -0.306148 | 4798.16 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.98% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152478.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.0% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:36:09,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:36:20,002 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:36:30,023 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:36:40,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:36:50,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:00,080 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:03 CET)" (scheduled at 2026-01-22 06:37:03.329776+01:00) 2026-01-22 06:37:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:03 CET)" executed successfully 2026-01-22 06:37:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:07 CET)" (scheduled at 2026-01-22 06:37:07.461608+01:00) 2026-01-22 06:37:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:07 CET)" executed successfully 2026-01-22 06:37:09,057 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:08 CET)" (scheduled at 2026-01-22 06:37:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76721 | 4798.76 | | H4 | uptrend | 416.58 | 44.1375 | 2.75801 | 4798.77 | | H1 | uptrend | 412.99 | 28.033 | 1.73661 | 4798.77 | | M30 | uptrend | 582.99 | 17.836 | 1.55974 | 4798.77 | | M15 | uptrend | 225.39 | 10.0854 | 0.340976 | 4798.77 | | M5 | downtrend | 516.18 | 3.9522 | -0.306003 | 4798.77 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.02% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152558.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 06:37:09,268 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:38:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.0% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:37:10,101 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:20,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:30,135 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:40,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:37:50,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:00,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:03 CET)" (scheduled at 2026-01-22 06:38:03.329776+01:00) 2026-01-22 06:38:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:03 CET)" executed successfully 2026-01-22 06:38:07,546 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:07 CET)" (scheduled at 2026-01-22 06:38:07.461608+01:00) 2026-01-22 06:38:07,546 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:07 CET)" executed successfully 2026-01-22 06:38:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:08 CET)" (scheduled at 2026-01-22 06:38:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:38:09,078 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:39:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76718 | 4798.63 | | H4 | uptrend | 416.57 | 44.1375 | 2.75798 | 4798.63 | | H1 | uptrend | 412.98 | 28.033 | 1.73657 | 4798.62 | | M30 | uptrend | 582.98 | 17.836 | 1.5597 | 4798.61 | | M15 | uptrend | 225.37 | 10.0854 | 0.340939 | 4798.61 | | M5 | downtrend | 515.03 | 3.9615 | -0.306039 | 4798.62 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152571.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.0% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:38:10,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:20,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:30,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:40,269 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:38:50,289 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:00,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:03,729 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:03 CET)" (scheduled at 2026-01-22 06:39:03.329776+01:00) 2026-01-22 06:39:03,729 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:03 CET)" executed successfully 2026-01-22 06:39:07,482 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:07 CET)" (scheduled at 2026-01-22 06:39:07.461608+01:00) 2026-01-22 06:39:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:07 CET)" executed successfully 2026-01-22 06:39:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:08 CET)" (scheduled at 2026-01-22 06:39:08.847423+01:00) 2026-01-22 06:39:09,161 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:40:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.68 | 85.153 | 9.76719 | 4798.69 | | H4 | uptrend | 416.58 | 44.1375 | 2.75799 | 4798.69 | | H1 | uptrend | 412.99 | 28.033 | 1.73659 | 4798.69 | | M30 | uptrend | 582.99 | 17.836 | 1.55972 | 4798.69 | | M15 | uptrend | 225.38 | 10.0854 | 0.340958 | 4798.69 | | M5 | downtrend | 515 | 3.9615 | -0.306022 | 4798.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.44) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.04% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152589.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.0/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.0% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:39:10,331 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:20,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:30,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:40,373 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:39:50,407 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:00,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:03 CET)" (scheduled at 2026-01-22 06:40:03.329776+01:00) 2026-01-22 06:40:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:03 CET)" executed successfully 2026-01-22 06:40:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:07 CET)" (scheduled at 2026-01-22 06:40:07.461608+01:00) 2026-01-22 06:40:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:07 CET)" executed successfully 2026-01-22 06:40:09,039 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:08 CET)" (scheduled at 2026-01-22 06:40:08.847423+01:00) 2026-01-22 06:40:09,188 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:41:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.69 | 85.153 | 9.7674 | 4799.57 | | H4 | uptrend | 416.61 | 44.1375 | 2.7582 | 4799.57 | | H1 | uptrend | 413.03 | 28.033 | 1.73679 | 4799.54 | | M30 | uptrend | 583.06 | 17.836 | 1.55992 | 4799.54 | | M15 | uptrend | 225.51 | 10.0854 | 0.341151 | 4799.51 | | M5 | downtrend | 524.51 | 3.7838 | -0.297697 | 4799.51 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.46) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 92.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152411.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 92.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 92.9/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 92.9% 🎯 Enhanced Score: 70.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:40:09,473 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 07:40:09 CET)" (scheduled at 2026-01-22 06:40:09.465739+01:00) 2026-01-22 06:40:09,482 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 07:40:09 CET)" executed successfully
[06:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 06:40:10,446 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:20,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:30,480 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:40,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:40:50,522 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:00,626 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:03,345 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:03 CET)" (scheduled at 2026-01-22 06:41:03.329776+01:00) 2026-01-22 06:41:03,345 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:03 CET)" executed successfully 2026-01-22 06:41:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:07 CET)" (scheduled at 2026-01-22 06:41:07.461608+01:00) 2026-01-22 06:41:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:07 CET)" executed successfully 2026-01-22 06:41:09,059 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:08 CET)" (scheduled at 2026-01-22 06:41:08.847423+01:00) 2026-01-22 06:41:09,227 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:42:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.76798 | 4802.04 | | H4 | uptrend | 415.89 | 44.2232 | 2.75878 | 4802.04 | | H1 | uptrend | 411.92 | 28.1187 | 1.73738 | 4802.04 | | M30 | uptrend | 576.81 | 18.036 | 1.56051 | 4802.04 | | M15 | uptrend | 221.51 | 10.2854 | 0.341749 | 4802.04 | | M5 | downtrend | 495.24 | 3.9995 | -0.297109 | 4802 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.27% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152167.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 72.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:41:10,651 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:20,665 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:30,690 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:40,721 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:41:50,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:00,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:03 CET)" (scheduled at 2026-01-22 06:42:03.329776+01:00) 2026-01-22 06:42:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:03 CET)" executed successfully 2026-01-22 06:42:07,525 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:07 CET)" (scheduled at 2026-01-22 06:42:07.461608+01:00) 2026-01-22 06:42:07,525 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:07 CET)" executed successfully 2026-01-22 06:42:09,087 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:08 CET)" (scheduled at 2026-01-22 06:42:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:42:09,345 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:43:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.153 | 9.76749 | 4799.95 | | H4 | uptrend | 415.81 | 44.2232 | 2.75829 | 4799.95 | | H1 | uptrend | 411.8 | 28.1187 | 1.73689 | 4799.95 | | M30 | uptrend | 576.63 | 18.036 | 1.56001 | 4799.93 | | M15 | uptrend | 221.19 | 10.2854 | 0.341251 | 4799.93 | | M5 | downtrend | 496.06 | 3.9995 | -0.297598 | 4799.93 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.15) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.25% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152087.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.2/100 Volume Score: 60.0/100 Momentum Score: 70.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.2% 🎯 Enhanced Score: 70.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%) ⏸️ No clear signal: 1
2026-01-22 06:42:10,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:20,823 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:30,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:40,884 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:42:50,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:00,943 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:03,534 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:03 CET)" (scheduled at 2026-01-22 06:43:03.329776+01:00) 2026-01-22 06:43:03,549 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:03 CET)" executed successfully 2026-01-22 06:43:07,482 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:07 CET)" (scheduled at 2026-01-22 06:43:07.461608+01:00) 2026-01-22 06:43:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:07 CET)" executed successfully 2026-01-22 06:43:08,857 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:08 CET)" (scheduled at 2026-01-22 06:43:08.847423+01:00) 2026-01-22 06:43:09,032 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:44:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.73 | 85.153 | 9.7678 | 4801.25 | | H4 | uptrend | 415.86 | 44.2232 | 2.7586 | 4801.25 | | H1 | uptrend | 411.87 | 28.1187 | 1.7372 | 4801.26 | | M30 | uptrend | 576.75 | 18.036 | 1.56033 | 4801.26 | | M15 | uptrend | 221.39 | 10.2854 | 0.341565 | 4801.26 | | M5 | downtrend | 495.54 | 3.9995 | -0.297284 | 4801.26 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152133.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 72.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:43:10,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:20,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:31,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:41,033 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:43:51,060 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:01,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:03,499 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:03 CET)" (scheduled at 2026-01-22 06:44:03.329776+01:00) 2026-01-22 06:44:03,499 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:03 CET)" executed successfully 2026-01-22 06:44:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:07 CET)" (scheduled at 2026-01-22 06:44:07.461608+01:00) 2026-01-22 06:44:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:07 CET)" executed successfully 2026-01-22 06:44:09,098 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:08 CET)" (scheduled at 2026-01-22 06:44:08.847423+01:00) 2026-01-22 06:44:09,282 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:45:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.73 | 85.153 | 9.76781 | 4801.29 | | H4 | uptrend | 415.86 | 44.2232 | 2.75861 | 4801.29 | | H1 | uptrend | 411.87 | 28.1187 | 1.7372 | 4801.29 | | M30 | uptrend | 576.75 | 18.036 | 1.56033 | 4801.29 | | M15 | uptrend | 221.4 | 10.2854 | 0.341572 | 4801.29 | | M5 | downtrend | 495.52 | 3.9995 | -0.297277 | 4801.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152134.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.3% 🎯 Enhanced Score: 72.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:44:11,144 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:21,161 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:31,182 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:41,219 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:44:51,245 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:01,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:03,350 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:03 CET)" (scheduled at 2026-01-22 06:45:03.329776+01:00) 2026-01-22 06:45:03,350 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:03 CET)" executed successfully 2026-01-22 06:45:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:07 CET)" (scheduled at 2026-01-22 06:45:07.461608+01:00) 2026-01-22 06:45:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:07 CET)" executed successfully 2026-01-22 06:45:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:08 CET)" (scheduled at 2026-01-22 06:45:08.847423+01:00) 2026-01-22 06:45:09,012 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:46:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.153 | 9.76801 | 4802.13 | | H4 | uptrend | 415.89 | 44.2232 | 2.75881 | 4802.13 | | H1 | uptrend | 411.92 | 28.1187 | 1.7374 | 4802.13 | | M30 | uptrend | 576.82 | 18.036 | 1.56052 | 4802.09 | | M15 | uptrend | 221.78 | 9.6514 | 0.32107 | 4802.09 | | M5 | downtrend | 507.52 | 3.8145 | -0.290395 | 4802.09 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 625.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.11% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151922.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.1/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.1% 🎯 Enhanced Score: 72.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (93%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:45:11,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:21,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:31,339 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:41,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:45:51,390 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:01,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:03 CET)" (scheduled at 2026-01-22 06:46:03.329776+01:00) 2026-01-22 06:46:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:03 CET)" executed successfully 2026-01-22 06:46:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:07 CET)" (scheduled at 2026-01-22 06:46:07.461608+01:00) 2026-01-22 06:46:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:07 CET)" executed successfully 2026-01-22 06:46:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:08 CET)" (scheduled at 2026-01-22 06:46:08.847423+01:00) 2026-01-22 06:46:08,986 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:47:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.83 | 85.153 | 9.76914 | 4806.94 | | H4 | uptrend | 412.82 | 44.5703 | 2.75994 | 4806.94 | | H1 | uptrend | 407.16 | 28.4659 | 1.73854 | 4806.94 | | M30 | uptrend | 566.34 | 18.3832 | 1.56167 | 4806.94 | | M15 | uptrend | 213.98 | 10.0386 | 0.322213 | 4806.93 | | M5 | downtrend | 458.95 | 4.2017 | -0.289252 | 4806.93 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 624.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.69% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151089.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:46:11,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:21,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:31,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:41,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:46:51,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:01,564 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:03,344 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:03 CET)" (scheduled at 2026-01-22 06:47:03.329776+01:00) 2026-01-22 06:47:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:03 CET)" executed successfully 2026-01-22 06:47:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:07 CET)" (scheduled at 2026-01-22 06:47:07.461608+01:00) 2026-01-22 06:47:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:07 CET)" executed successfully 2026-01-22 06:47:08,963 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:08 CET)" (scheduled at 2026-01-22 06:47:08.847423+01:00) 2026-01-22 06:47:09,112 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:48:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.81 | 85.153 | 9.76885 | 4805.68 | | H4 | uptrend | 412.78 | 44.5703 | 2.75964 | 4805.68 | | H1 | uptrend | 407.09 | 28.4659 | 1.73824 | 4805.68 | | M30 | uptrend | 566.23 | 18.3832 | 1.56137 | 4805.68 | | M15 | uptrend | 213.79 | 10.0386 | 0.321918 | 4805.68 | | M5 | downtrend | 459.41 | 4.2017 | -0.289547 | 4805.68 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 624.00) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.68% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151044.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:47:11,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:21,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:31,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:41,667 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:47:51,684 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:01,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:03,353 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:03 CET)" (scheduled at 2026-01-22 06:48:03.329776+01:00) 2026-01-22 06:48:03,353 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:03 CET)" executed successfully 2026-01-22 06:48:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:07 CET)" (scheduled at 2026-01-22 06:48:07.461608+01:00) 2026-01-22 06:48:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:07 CET)" executed successfully 2026-01-22 06:48:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:08 CET)" (scheduled at 2026-01-22 06:48:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.79 | 85.153 | 9.76862 | 4804.71 | | H4 | uptrend | 412.74 | 44.5703 | 2.75941 | 4804.71 | | H1 | uptrend | 407.04 | 28.4659 | 1.73801 | 4804.71 | | M30 | uptrend | 566.15 | 18.3832 | 1.56114 | 4804.71 | | M15 | uptrend | 213.64 | 10.0386 | 0.321689 | 4804.71 | | M5 | downtrend | 459.78 | 4.2017 | -0.289776 | 4804.71 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 623.97) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151006.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 06:48:09,080 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:49:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:48:11,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:21,751 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:31,776 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:41,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:48:51,820 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:01,845 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:03,541 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:03 CET)" (scheduled at 2026-01-22 06:49:03.329776+01:00) 2026-01-22 06:49:03,541 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:03 CET)" executed successfully 2026-01-22 06:49:07,481 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:07 CET)" (scheduled at 2026-01-22 06:49:07.461608+01:00) 2026-01-22 06:49:07,481 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:07 CET)" executed successfully 2026-01-22 06:49:08,847 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:08 CET)" (scheduled at 2026-01-22 06:49:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:49:09,156 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:50:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.83 | 85.153 | 9.76914 | 4806.94 | | H4 | uptrend | 412.82 | 44.5703 | 2.75994 | 4806.92 | | H1 | uptrend | 407.16 | 28.4659 | 1.73853 | 4806.91 | | M30 | uptrend | 566.34 | 18.3832 | 1.56166 | 4806.9 | | M15 | uptrend | 213.98 | 10.0386 | 0.322208 | 4806.91 | | M5 | downtrend | 458.95 | 4.2017 | -0.289257 | 4806.91 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 624.03) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.69% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 151088.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.7/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.7% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:49:11,876 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:21,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:31,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:41,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:49:51,983 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:02,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:03,902 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:03 CET)" (scheduled at 2026-01-22 06:50:03.329776+01:00) 2026-01-22 06:50:03,902 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:03 CET)" executed successfully 2026-01-22 06:50:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:07 CET)" (scheduled at 2026-01-22 06:50:07.461608+01:00) 2026-01-22 06:50:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:07 CET)" executed successfully 2026-01-22 06:50:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:08 CET)" (scheduled at 2026-01-22 06:50:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:50:09,213 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:51:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.85 | 85.153 | 9.76946 | 4808.27 | | H4 | uptrend | 412.18 | 44.6453 | 2.76026 | 4808.27 | | H1 | uptrend | 406.17 | 28.5409 | 1.73885 | 4808.27 | | M30 | uptrend | 564.15 | 18.4582 | 1.56198 | 4808.27 | | M15 | uptrend | 212.61 | 10.1136 | 0.32253 | 4808.27 | | M5 | downtrend | 471.45 | 3.9769 | -0.281232 | 4808.27 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 623.78) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.52% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 150458.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.5% 🎯 Enhanced Score: 72.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:50:12,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:22,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:32,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:42,104 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:50:52,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:02,160 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:03,375 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:03 CET)" (scheduled at 2026-01-22 06:51:03.329776+01:00) 2026-01-22 06:51:03,375 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:03 CET)" executed successfully 2026-01-22 06:51:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:07 CET)" (scheduled at 2026-01-22 06:51:07.461608+01:00) 2026-01-22 06:51:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:07 CET)" executed successfully 2026-01-22 06:51:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:08 CET)" (scheduled at 2026-01-22 06:51:08.847423+01:00) 2026-01-22 06:51:09,186 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:52:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.93 | 85.153 | 9.7704 | 4812.24 | | H4 | uptrend | 409.87 | 44.9118 | 2.76119 | 4812.24 | | H1 | uptrend | 402.63 | 28.8073 | 1.73979 | 4812.24 | | M30 | uptrend | 556.46 | 18.7246 | 1.56292 | 4812.24 | | M15 | uptrend | 207.75 | 10.38 | 0.323468 | 4812.24 | | M5 | downtrend | 440.37 | 4.2433 | -0.280292 | 4812.25 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.90) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 93.89% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 149787.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 93.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 93.9/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 93.9% 🎯 Enhanced Score: 72.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:51:12,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:22,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:32,230 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:42,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:51:52,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:02,295 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:03 CET)" (scheduled at 2026-01-22 06:52:03.329776+01:00) 2026-01-22 06:52:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:03 CET)" executed successfully 2026-01-22 06:52:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:07 CET)" (scheduled at 2026-01-22 06:52:07.461608+01:00) 2026-01-22 06:52:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:07 CET)" executed successfully 2026-01-22 06:52:09,102 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:08 CET)" (scheduled at 2026-01-22 06:52:08.847423+01:00) 2026-01-22 06:52:09,259 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:53:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765 | 85.153 | 9.77127 | 4815.93 | | H4 | uptrend | 407.65 | 45.171 | 2.76207 | 4815.93 | | H1 | uptrend | 399.24 | 29.0666 | 1.74066 | 4815.93 | | M30 | uptrend | 549.16 | 18.9839 | 1.56379 | 4815.92 | | M15 | uptrend | 203.23 | 10.6393 | 0.324337 | 4815.92 | | M5 | downtrend | 413.73 | 4.5026 | -0.279424 | 4815.92 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 622.06) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 149093.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.2/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.2% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:52:12,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:22,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:32,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:42,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:52:52,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:02,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:03,528 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:03 CET)" (scheduled at 2026-01-22 06:53:03.329776+01:00) 2026-01-22 06:53:03,528 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:03 CET)" executed successfully 2026-01-22 06:53:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:07 CET)" (scheduled at 2026-01-22 06:53:07.461608+01:00) 2026-01-22 06:53:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:07 CET)" executed successfully 2026-01-22 06:53:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:08 CET)" (scheduled at 2026-01-22 06:53:08.847423+01:00) 2026-01-22 06:53:09,070 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:54:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.04 | 85.153 | 9.77184 | 4818.34 | | H4 | uptrend | 406.1 | 45.3518 | 2.76263 | 4818.34 | | H1 | uptrend | 396.9 | 29.2473 | 1.74123 | 4818.34 | | M30 | uptrend | 544.19 | 19.1646 | 1.56436 | 4818.34 | | M15 | uptrend | 200.19 | 10.82 | 0.324909 | 4818.34 | | M5 | downtrend | 396.96 | 4.6833 | -0.27886 | 4818.31 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.47) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.41% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148585.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:53:12,512 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:22,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:32,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:42,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:53:52,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:02,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:03 CET)" (scheduled at 2026-01-22 06:54:03.329776+01:00) 2026-01-22 06:54:03,335 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:03 CET)" executed successfully 2026-01-22 06:54:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:07 CET)" (scheduled at 2026-01-22 06:54:07.461608+01:00) 2026-01-22 06:54:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:07 CET)" executed successfully 2026-01-22 06:54:08,863 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:08 CET)" (scheduled at 2026-01-22 06:54:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 06:54:09,156 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:55:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.03 | 85.153 | 9.77169 | 4817.74 | | H4 | uptrend | 405.5 | 45.4175 | 2.76249 | 4817.74 | | H1 | uptrend | 395.97 | 29.313 | 1.74106 | 4817.62 | | M30 | uptrend | 542.23 | 19.2303 | 1.56408 | 4817.16 | | M15 | uptrend | 198.81 | 10.8857 | 0.32463 | 4817.16 | | M5 | downtrend | 391.85 | 4.749 | -0.279136 | 4817.14 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.47% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148342.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:54:12,663 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:22,687 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:32,717 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:42,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:54:52,756 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:02,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:03,350 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:03 CET)" (scheduled at 2026-01-22 06:55:03.329776+01:00) 2026-01-22 06:55:03,352 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:03 CET)" executed successfully 2026-01-22 06:55:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:07 CET)" (scheduled at 2026-01-22 06:55:07.461608+01:00) 2026-01-22 06:55:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:07 CET)" executed successfully 2026-01-22 06:55:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:08 CET)" (scheduled at 2026-01-22 06:55:08.847423+01:00) 2026-01-22 06:55:09,164 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:56:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.02 | 85.153 | 9.7716 | 4817.35 | | H4 | uptrend | 405.44 | 45.4225 | 2.7624 | 4817.33 | | H1 | uptrend | 395.89 | 29.318 | 1.74099 | 4817.33 | | M30 | uptrend | 542.1 | 19.2353 | 1.56412 | 4817.32 | | M15 | uptrend | 198.74 | 10.8907 | 0.324668 | 4817.32 | | M5 | downtrend | 397.01 | 4.473 | -0.266375 | 4817.32 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148208.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.4/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.4% 🎯 Enhanced Score: 72.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (94%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:55:12,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:22,840 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:32,866 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:42,887 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:55:52,910 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:02,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:03,371 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:03 CET)" (scheduled at 2026-01-22 06:56:03.329776+01:00) 2026-01-22 06:56:03,373 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:03 CET)" executed successfully 2026-01-22 06:56:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:07 CET)" (scheduled at 2026-01-22 06:56:07.461608+01:00) 2026-01-22 06:56:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:07 CET)" executed successfully 2026-01-22 06:56:08,994 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:08 CET)" (scheduled at 2026-01-22 06:56:08.847423+01:00) 2026-01-22 06:56:09,151 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:57:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.03 | 85.153 | 9.77169 | 4817.74 | | H4 | uptrend | 405.45 | 45.4225 | 2.76249 | 4817.74 | | H1 | uptrend | 395.91 | 29.318 | 1.74109 | 4817.74 | | M30 | uptrend | 542.14 | 19.2353 | 1.56422 | 4817.74 | | M15 | uptrend | 198.8 | 10.8907 | 0.324767 | 4817.74 | | M5 | downtrend | 386.31 | 4.5952 | -0.266276 | 4817.74 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148452.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.5/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.5% 🎯 Enhanced Score: 72.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:56:12,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:22,972 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:32,999 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:43,030 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:56:53,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:03,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:03,336 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:03 CET)" (scheduled at 2026-01-22 06:57:03.329776+01:00) 2026-01-22 06:57:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:03 CET)" executed successfully 2026-01-22 06:57:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:07 CET)" (scheduled at 2026-01-22 06:57:07.461608+01:00) 2026-01-22 06:57:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:07 CET)" executed successfully 2026-01-22 06:57:08,880 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:08 CET)" (scheduled at 2026-01-22 06:57:08.847423+01:00) 2026-01-22 06:57:09,060 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.02 | 85.153 | 9.77161 | 4817.38 | | H4 | uptrend | 405.44 | 45.4225 | 2.76241 | 4817.38 | | H1 | uptrend | 395.89 | 29.318 | 1.741 | 4817.38 | | M30 | uptrend | 542.09 | 19.2353 | 1.5641 | 4817.23 | | M15 | uptrend | 198.73 | 10.8907 | 0.324647 | 4817.23 | | M5 | downtrend | 380.86 | 4.663 | -0.266396 | 4817.23 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.62% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148552.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 72.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:57:13,093 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:23,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:33,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:43,224 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:57:53,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:03,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:03 CET)" (scheduled at 2026-01-22 06:58:03.329776+01:00) 2026-01-22 06:58:03,349 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:03 CET)" executed successfully 2026-01-22 06:58:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:07 CET)" (scheduled at 2026-01-22 06:58:07.461608+01:00) 2026-01-22 06:58:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:07 CET)" executed successfully 2026-01-22 06:58:08,900 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:08 CET)" (scheduled at 2026-01-22 06:58:08.847423+01:00) 2026-01-22 06:58:09,073 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 06:59:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765 | 85.153 | 9.77132 | 4816.15 | | H4 | uptrend | 405.4 | 45.4225 | 2.76212 | 4816.15 | | H1 | uptrend | 395.82 | 29.318 | 1.74072 | 4816.15 | | M30 | uptrend | 542.01 | 19.2353 | 1.56385 | 4816.18 | | M15 | uptrend | 198.58 | 10.8907 | 0.324399 | 4816.18 | | M5 | downtrend | 381.22 | 4.663 | -0.266644 | 4816.18 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148512.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 72.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:58:13,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:23,302 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:33,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:43,338 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:58:53,354 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:03 CET)" (scheduled at 2026-01-22 06:59:03.329776+01:00) 2026-01-22 06:59:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:03 CET)" executed successfully 2026-01-22 06:59:03,397 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:07 CET)" (scheduled at 2026-01-22 06:59:07.461608+01:00) 2026-01-22 06:59:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:07 CET)" executed successfully 2026-01-22 06:59:08,962 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:08 CET)" (scheduled at 2026-01-22 06:59:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 31%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.05 | 85.153 | 9.77191 | 4818.67 | | H4 | uptrend | 405.48 | 45.4225 | 2.76271 | 4818.65 | | H1 | uptrend | 395.96 | 29.318 | 1.74131 | 4818.65 | | M30 | uptrend | 542.21 | 19.2353 | 1.56444 | 4818.65 | | M15 | uptrend | 198.94 | 10.8907 | 0.324982 | 4818.65 | | M5 | downtrend | 380.38 | 4.663 | -0.266061 | 4818.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 621.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 94.63% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 148598.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 94.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list'
2026-01-22 06:59:09,143 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:00:08 CET)" executed successfully
✅ Enhanced Signal Scoring: Trend Score: 94.6/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 94.6% 🎯 Enhanced Score: 72.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 06:59:13,419 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:23,442 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:33,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:43,478 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 06:59:53,495 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:00,233 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 07:30:00 CET)" (scheduled at 2026-01-22 07:00:00+01:00) 2026-01-22 07:00:00,243 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 07:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 07:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 27.44 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 07:00:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:03 CET)" (scheduled at 2026-01-22 07:00:03.329776+01:00) 2026-01-22 07:00:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:03 CET)" executed successfully 2026-01-22 07:00:03,529 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:07 CET)" (scheduled at 2026-01-22 07:00:07.461608+01:00) 2026-01-22 07:00:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:07 CET)" executed successfully 2026-01-22 07:00:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:08 CET)" (scheduled at 2026-01-22 07:00:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:00:09,304 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:01:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.12 | 85.153 | 9.77281 | 4822.48 | | H4 | uptrend | 438.07 | 42.4576 | 2.78992 | 4822.49 | | H1 | uptrend | 427.55 | 27.5034 | 1.76386 | 4822.49 | | M30 | uptrend | 565.44 | 18.1409 | 1.53865 | 4822.49 | | M15 | uptrend | 197.34 | 10.3924 | 0.307626 | 4822.49 | | M5 | downtrend | 359.54 | 4.6387 | -0.250169 | 4822.49 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 634.30) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.06% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155195.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.1/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.1% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:00:13,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:23,562 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:33,589 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:43,608 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:00:53,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:03 CET)" (scheduled at 2026-01-22 07:01:03.329776+01:00) 2026-01-22 07:01:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:03 CET)" executed successfully 2026-01-22 07:01:03,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:07 CET)" (scheduled at 2026-01-22 07:01:07.461608+01:00) 2026-01-22 07:01:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:07 CET)" executed successfully 2026-01-22 07:01:08,943 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:08 CET)" (scheduled at 2026-01-22 07:01:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77292 | 4822.91 | | H4 | uptrend | 436.99 | 42.564 | 2.79001 | 4822.91 | | H1 | uptrend | 425.93 | 27.6099 | 1.76396 | 4822.91 | | M30 | uptrend | 562.18 | 18.2474 | 1.53875 | 4822.91 | | M15 | uptrend | 195.4 | 10.4988 | 0.307725 | 4822.91 | | M5 | downtrend | 351.33 | 4.7452 | -0.25007 | 4822.91 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.87) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.16% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154804.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 07:01:09,158 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:02:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.2% 🎯 Enhanced Score: 69.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:01:13,678 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:23,689 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:33,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:43,734 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:01:53,747 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:03,432 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:03 CET)" (scheduled at 2026-01-22 07:02:03.329776+01:00) 2026-01-22 07:02:03,435 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:03 CET)" executed successfully 2026-01-22 07:02:03,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:07,526 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:07 CET)" (scheduled at 2026-01-22 07:02:07.461608+01:00) 2026-01-22 07:02:07,526 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:07 CET)" executed successfully 2026-01-22 07:02:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:08 CET)" (scheduled at 2026-01-22 07:02:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.12 | 85.153 | 9.77284 | 4822.58 | | H4 | uptrend | 436.08 | 42.6519 | 2.78994 | 4822.58 | | H1 | uptrend | 424.56 | 27.6977 | 1.76388 | 4822.58 | | M30 | uptrend | 559.46 | 18.3352 | 1.53867 | 4822.58 | | M15 | uptrend | 193.73 | 10.5867 | 0.307642 | 4822.56 | | M5 | downtrend | 345.06 | 4.833 | -0.250153 | 4822.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.50) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.23% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154450.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 07:02:09,228 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:03:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.2% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:02:13,799 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:23,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:33,841 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:43,856 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:02:53,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:03,556 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:03 CET)" (scheduled at 2026-01-22 07:03:03.329776+01:00) 2026-01-22 07:03:03,556 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:03 CET)" executed successfully 2026-01-22 07:03:03,957 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:07,782 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:07 CET)" (scheduled at 2026-01-22 07:03:07.461608+01:00) 2026-01-22 07:03:07,782 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:07 CET)" executed successfully 2026-01-22 07:03:09,027 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:08 CET)" (scheduled at 2026-01-22 07:03:08.847423+01:00) 2026-01-22 07:03:09,196 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.7731 | 4823.71 | | H4 | uptrend | 435.87 | 42.6769 | 2.7902 | 4823.71 | | H1 | uptrend | 424.24 | 27.7227 | 1.76415 | 4823.71 | | M30 | uptrend | 558.79 | 18.3602 | 1.53894 | 4823.71 | | M15 | uptrend | 193.44 | 10.6117 | 0.307914 | 4823.71 | | M5 | downtrend | 342.91 | 4.858 | -0.249881 | 4823.71 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154394.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.3% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:03:13,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:23,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:34,010 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:44,029 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:03:54,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:03,349 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:03 CET)" (scheduled at 2026-01-22 07:04:03.329776+01:00) 2026-01-22 07:04:03,349 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:03 CET)" executed successfully 2026-01-22 07:04:04,079 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:07 CET)" (scheduled at 2026-01-22 07:04:07.461608+01:00) 2026-01-22 07:04:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:07 CET)" executed successfully 2026-01-22 07:04:08,944 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:08 CET)" (scheduled at 2026-01-22 07:04:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:04:09,404 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:05:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77299 | 4823.23 | | H4 | uptrend | 435.85 | 42.6769 | 2.79009 | 4823.23 | | H1 | uptrend | 424.21 | 27.7227 | 1.76404 | 4823.23 | | M30 | uptrend | 558.75 | 18.3602 | 1.53882 | 4823.23 | | M15 | uptrend | 193.37 | 10.6117 | 0.307801 | 4823.23 | | M5 | downtrend | 343.06 | 4.858 | -0.249992 | 4823.24 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154383.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.3% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:04:14,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:24,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:34,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:44,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:04:54,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:03,348 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:03 CET)" (scheduled at 2026-01-22 07:05:03.329776+01:00) 2026-01-22 07:05:03,348 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:03 CET)" executed successfully 2026-01-22 07:05:04,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:07 CET)" (scheduled at 2026-01-22 07:05:07.461608+01:00) 2026-01-22 07:05:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:07 CET)" executed successfully 2026-01-22 07:05:09,088 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:08 CET)" (scheduled at 2026-01-22 07:05:08.847423+01:00) 2026-01-22 07:05:09,256 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77294 | 4822.99 | | H4 | uptrend | 435.84 | 42.6769 | 2.79003 | 4822.99 | | H1 | uptrend | 424.2 | 27.7227 | 1.76398 | 4822.99 | | M30 | uptrend | 558.73 | 18.3602 | 1.53877 | 4822.99 | | M15 | uptrend | 193.34 | 10.6117 | 0.307744 | 4822.99 | | M5 | downtrend | 340.79 | 4.5903 | -0.234649 | 4822.99 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154426.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.3% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:05:14,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:24,233 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:34,249 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:44,278 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:05:54,297 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:03 CET)" (scheduled at 2026-01-22 07:06:03.329776+01:00) 2026-01-22 07:06:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:03 CET)" executed successfully 2026-01-22 07:06:04,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:07,479 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:07 CET)" (scheduled at 2026-01-22 07:06:07.461608+01:00) 2026-01-22 07:06:07,479 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:07 CET)" executed successfully 2026-01-22 07:06:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:08 CET)" (scheduled at 2026-01-22 07:06:08.847423+01:00) 2026-01-22 07:06:09,004 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:07:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77301 | 4823.29 | | H4 | uptrend | 435.85 | 42.6769 | 2.79011 | 4823.29 | | H1 | uptrend | 424.21 | 27.7227 | 1.76405 | 4823.29 | | M30 | uptrend | 558.76 | 18.3602 | 1.53884 | 4823.29 | | M15 | uptrend | 193.38 | 10.6117 | 0.307815 | 4823.29 | | M5 | downtrend | 336.55 | 4.6467 | -0.234576 | 4823.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.34% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154514.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.3% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:06:14,326 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:24,344 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:34,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:44,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:06:54,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:03 CET)" (scheduled at 2026-01-22 07:07:03.329776+01:00) 2026-01-22 07:07:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:03 CET)" executed successfully 2026-01-22 07:07:04,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:07 CET)" (scheduled at 2026-01-22 07:07:07.461608+01:00) 2026-01-22 07:07:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:07 CET)" executed successfully 2026-01-22 07:07:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:08 CET)" (scheduled at 2026-01-22 07:07:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:07:09,114 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:08:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.12 | 85.153 | 9.7729 | 4822.85 | | H4 | uptrend | 435.83 | 42.6769 | 2.79 | 4822.85 | | H1 | uptrend | 424.19 | 27.7227 | 1.76394 | 4822.84 | | M30 | uptrend | 558.72 | 18.3602 | 1.53873 | 4822.84 | | M15 | uptrend | 193.31 | 10.6117 | 0.307699 | 4822.8 | | M5 | downtrend | 332.47 | 4.706 | -0.234694 | 4822.8 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.41) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.4% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154601.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.4% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:07:14,454 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:24,464 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:34,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:44,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:07:54,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:03 CET)" (scheduled at 2026-01-22 07:08:03.329776+01:00) 2026-01-22 07:08:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:03 CET)" executed successfully 2026-01-22 07:08:04,550 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:07 CET)" (scheduled at 2026-01-22 07:08:07.461608+01:00) 2026-01-22 07:08:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:07 CET)" executed successfully 2026-01-22 07:08:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:08 CET)" (scheduled at 2026-01-22 07:08:08.847423+01:00) 2026-01-22 07:08:09,010 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:09:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77298 | 4823.2 | | H4 | uptrend | 435.85 | 42.6769 | 2.79011 | 4823.3 | | H1 | uptrend | 424.21 | 27.7227 | 1.76405 | 4823.3 | | M30 | uptrend | 558.76 | 18.3602 | 1.53884 | 4823.3 | | M15 | uptrend | 193.38 | 10.6117 | 0.307815 | 4823.29 | | M5 | downtrend | 328.67 | 4.7581 | -0.234578 | 4823.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.42) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.45% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154692.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.5% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:08:14,557 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:24,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:34,607 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:44,620 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:08:54,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:03 CET)" (scheduled at 2026-01-22 07:09:03.329776+01:00) 2026-01-22 07:09:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:03 CET)" executed successfully 2026-01-22 07:09:04,660 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:07 CET)" (scheduled at 2026-01-22 07:09:07.461608+01:00) 2026-01-22 07:09:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:07 CET)" executed successfully 2026-01-22 07:09:08,869 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:08 CET)" (scheduled at 2026-01-22 07:09:08.847423+01:00) 2026-01-22 07:09:09,043 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:10:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.1 | 85.153 | 9.77262 | 4821.65 | | H4 | uptrend | 435.79 | 42.6769 | 2.78972 | 4821.65 | | H1 | uptrend | 424.12 | 27.7227 | 1.76366 | 4821.65 | | M30 | uptrend | 558.62 | 18.3602 | 1.53845 | 4821.65 | | M15 | uptrend | 193.14 | 10.6117 | 0.307425 | 4821.64 | | M5 | downtrend | 329.21 | 4.7581 | -0.234968 | 4821.64 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.44% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154638.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.4% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:09:14,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:24,699 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:34,730 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:44,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:09:54,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:03,363 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:03 CET)" (scheduled at 2026-01-22 07:10:03.329776+01:00) 2026-01-22 07:10:03,363 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:03 CET)" executed successfully 2026-01-22 07:10:04,786 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:07,515 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:07 CET)" (scheduled at 2026-01-22 07:10:07.461608+01:00) 2026-01-22 07:10:07,515 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:07 CET)" executed successfully 2026-01-22 07:10:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:08 CET)" (scheduled at 2026-01-22 07:10:08.847423+01:00) 2026-01-22 07:10:09,054 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:11:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.09 | 85.153 | 9.77244 | 4820.89 | | H4 | uptrend | 435.76 | 42.6769 | 2.78954 | 4820.89 | | H1 | uptrend | 424.08 | 27.7227 | 1.76348 | 4820.89 | | M30 | uptrend | 558.55 | 18.3602 | 1.53827 | 4820.89 | | M15 | uptrend | 193.02 | 10.6117 | 0.307248 | 4820.89 | | M5 | downtrend | 333.21 | 4.4635 | -0.223094 | 4820.89 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.36) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.39% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154540.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.4% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:10:14,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:24,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:34,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:44,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:10:54,894 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:03 CET)" (scheduled at 2026-01-22 07:11:03.329776+01:00) 2026-01-22 07:11:03,332 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:03 CET)" executed successfully 2026-01-22 07:11:04,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:07,469 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:07 CET)" (scheduled at 2026-01-22 07:11:07.461608+01:00) 2026-01-22 07:11:07,469 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:07 CET)" executed successfully 2026-01-22 07:11:08,864 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:08 CET)" (scheduled at 2026-01-22 07:11:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:11:09,260 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:12:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.1 | 85.153 | 9.77258 | 4821.51 | | H4 | uptrend | 435.69 | 42.6861 | 2.78968 | 4821.51 | | H1 | uptrend | 423.97 | 27.732 | 1.76363 | 4821.51 | | M30 | uptrend | 558.32 | 18.3695 | 1.53842 | 4821.51 | | M15 | uptrend | 192.95 | 10.621 | 0.307394 | 4821.51 | | M5 | downtrend | 326.17 | 4.5571 | -0.222954 | 4821.48 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.34) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.48% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154652.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.5% 🎯 Enhanced Score: 69.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (95%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:11:14,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:24,948 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:34,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:45,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:11:55,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:03 CET)" (scheduled at 2026-01-22 07:12:03.329776+01:00) 2026-01-22 07:12:03,331 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:03 CET)" executed successfully 2026-01-22 07:12:05,229 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:07,780 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:07 CET)" (scheduled at 2026-01-22 07:12:07.461608+01:00) 2026-01-22 07:12:07,780 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:07 CET)" executed successfully 2026-01-22 07:12:08,900 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:08 CET)" (scheduled at 2026-01-22 07:12:08.847423+01:00) 2026-01-22 07:12:09,050 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.08 | 85.153 | 9.77229 | 4820.27 | | H4 | uptrend | 435.16 | 42.734 | 2.78939 | 4820.27 | | H1 | uptrend | 423.16 | 27.7799 | 1.76328 | 4820.04 | | M30 | uptrend | 556.74 | 18.4174 | 1.53806 | 4820.01 | | M15 | uptrend | 191.86 | 10.6688 | 0.30704 | 4820.01 | | M5 | downtrend | 320.2 | 4.6492 | -0.223302 | 4820.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 633.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154482.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.5% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:12:15,247 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:25,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:35,303 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:45,325 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:12:55,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:03,348 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:03 CET)" (scheduled at 2026-01-22 07:13:03.329776+01:00) 2026-01-22 07:13:03,348 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:03 CET)" executed successfully 2026-01-22 07:13:05,365 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:07 CET)" (scheduled at 2026-01-22 07:13:07.461608+01:00) 2026-01-22 07:13:07,499 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:07 CET)" executed successfully 2026-01-22 07:13:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:08 CET)" (scheduled at 2026-01-22 07:13:08.847423+01:00) 2026-01-22 07:13:09,015 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.05 | 85.153 | 9.77197 | 4818.93 | | H4 | uptrend | 433.38 | 42.904 | 2.78907 | 4818.93 | | H1 | uptrend | 420.52 | 27.9499 | 1.76303 | 4818.96 | | M30 | uptrend | 551.56 | 18.5874 | 1.53781 | 4818.96 | | M15 | uptrend | 188.7 | 10.8388 | 0.306792 | 4818.96 | | M5 | downtrend | 309.25 | 4.8192 | -0.22355 | 4818.96 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.68% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153793.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.7% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:13:15,384 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:25,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:35,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:45,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:13:55,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:03,436 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:03 CET)" (scheduled at 2026-01-22 07:14:03.329776+01:00) 2026-01-22 07:14:03,436 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:03 CET)" executed successfully 2026-01-22 07:14:05,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:07,633 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:07 CET)" (scheduled at 2026-01-22 07:14:07.461608+01:00) 2026-01-22 07:14:07,633 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:07 CET)" executed successfully 2026-01-22 07:14:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:08 CET)" (scheduled at 2026-01-22 07:14:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:14:09,080 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:15:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.02 | 85.153 | 9.77162 | 4817.41 | | H4 | uptrend | 433.33 | 42.904 | 2.78871 | 4817.41 | | H1 | uptrend | 420.43 | 27.9499 | 1.76266 | 4817.4 | | M30 | uptrend | 551.43 | 18.5874 | 1.53745 | 4817.4 | | M15 | uptrend | 188.47 | 10.8388 | 0.306423 | 4817.4 | | M5 | downtrend | 309.76 | 4.8192 | -0.223918 | 4817.4 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.34) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.68% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153758.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.7% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:14:15,494 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:25,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:35,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:45,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:14:55,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:03,756 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:03 CET)" (scheduled at 2026-01-22 07:15:03.329776+01:00) 2026-01-22 07:15:03,756 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:03 CET)" executed successfully 2026-01-22 07:15:05,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:07 CET)" (scheduled at 2026-01-22 07:15:07.461608+01:00) 2026-01-22 07:15:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:07 CET)" executed successfully 2026-01-22 07:15:09,088 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:08 CET)" (scheduled at 2026-01-22 07:15:08.847423+01:00) 2026-01-22 07:15:09,235 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.02 | 85.153 | 9.77161 | 4817.37 | | H4 | uptrend | 433.03 | 42.9333 | 2.78871 | 4817.37 | | H1 | uptrend | 419.99 | 27.9791 | 1.76265 | 4817.37 | | M30 | uptrend | 550.56 | 18.6167 | 1.53744 | 4817.37 | | M15 | uptrend | 189.13 | 10.1618 | 0.288285 | 4817.37 | | M5 | downtrend | 310.19 | 4.5722 | -0.212734 | 4817.37 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153659.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.7% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:15:15,728 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:25,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:35,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:45,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:15:55,834 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:03 CET)" (scheduled at 2026-01-22 07:16:03.329776+01:00) 2026-01-22 07:16:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:03 CET)" executed successfully 2026-01-22 07:16:05,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:07 CET)" (scheduled at 2026-01-22 07:16:07.461608+01:00) 2026-01-22 07:16:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:07 CET)" executed successfully 2026-01-22 07:16:08,893 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:08 CET)" (scheduled at 2026-01-22 07:16:08.847423+01:00) 2026-01-22 07:16:09,039 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:17:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.06 | 85.153 | 9.77203 | 4819.18 | | H4 | uptrend | 433.1 | 42.9333 | 2.78913 | 4819.18 | | H1 | uptrend | 420.09 | 27.9791 | 1.76308 | 4819.17 | | M30 | uptrend | 550.71 | 18.6167 | 1.53787 | 4819.17 | | M15 | uptrend | 187.69 | 10.2547 | 0.288711 | 4819.17 | | M5 | downtrend | 303.4 | 4.665 | -0.212308 | 4819.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.27) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.76% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153747.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.8% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:16:15,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:25,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:35,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:45,950 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:16:55,979 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:03 CET)" (scheduled at 2026-01-22 07:17:03.329776+01:00) 2026-01-22 07:17:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:03 CET)" executed successfully 2026-01-22 07:17:06,003 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:07,570 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:07 CET)" (scheduled at 2026-01-22 07:17:07.461608+01:00) 2026-01-22 07:17:07,570 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:07 CET)" executed successfully 2026-01-22 07:17:08,879 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:08 CET)" (scheduled at 2026-01-22 07:17:08.847423+01:00) 2026-01-22 07:17:09,058 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.03 | 85.153 | 9.77172 | 4817.87 | | H4 | uptrend | 433.05 | 42.9333 | 2.78882 | 4817.87 | | H1 | uptrend | 420.02 | 27.9791 | 1.76277 | 4817.87 | | M30 | uptrend | 550.6 | 18.6167 | 1.53756 | 4817.87 | | M15 | uptrend | 187.49 | 10.2547 | 0.288403 | 4817.87 | | M5 | downtrend | 303.84 | 4.665 | -0.212615 | 4817.87 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.75% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153701.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.8% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:17:16,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:26,044 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:36,069 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:46,108 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:17:56,132 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:03 CET)" (scheduled at 2026-01-22 07:18:03.329776+01:00) 2026-01-22 07:18:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:03 CET)" executed successfully 2026-01-22 07:18:06,172 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:07,681 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:07 CET)" (scheduled at 2026-01-22 07:18:07.461608+01:00) 2026-01-22 07:18:07,681 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:07 CET)" executed successfully 2026-01-22 07:18:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:08 CET)" (scheduled at 2026-01-22 07:18:08.847423+01:00) 2026-01-22 07:18:09,197 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:19:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.07 | 85.153 | 9.77224 | 4820.03 | | H4 | uptrend | 433.12 | 42.9333 | 2.78932 | 4819.95 | | H1 | uptrend | 420.14 | 27.9791 | 1.76326 | 4819.95 | | M30 | uptrend | 550.78 | 18.6167 | 1.53805 | 4819.95 | | M15 | uptrend | 186.63 | 10.3197 | 0.288895 | 4819.95 | | M5 | downtrend | 298.98 | 4.73 | -0.212124 | 4819.95 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.29) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.82% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153794.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.8% 🎯 Enhanced Score: 69.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:18:16,202 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:26,225 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:36,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:46,284 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:18:56,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:03,594 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:03 CET)" (scheduled at 2026-01-22 07:19:03.329776+01:00) 2026-01-22 07:19:03,594 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:03 CET)" executed successfully 2026-01-22 07:19:06,329 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:07,483 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:07 CET)" (scheduled at 2026-01-22 07:19:07.461608+01:00) 2026-01-22 07:19:07,500 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:07 CET)" executed successfully 2026-01-22 07:19:08,927 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:08 CET)" (scheduled at 2026-01-22 07:19:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:19:09,178 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:20:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.1 | 85.153 | 9.77262 | 4821.68 | | H4 | uptrend | 433.19 | 42.9333 | 2.78972 | 4821.68 | | H1 | uptrend | 420.23 | 27.9791 | 1.76367 | 4821.68 | | M30 | uptrend | 550.93 | 18.6167 | 1.53846 | 4821.7 | | M15 | uptrend | 184.74 | 10.4404 | 0.289308 | 4821.7 | | M5 | downtrend | 290.96 | 4.8507 | -0.211708 | 4821.71 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.34) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153870.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 95.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 95.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 95.9% 🎯 Enhanced Score: 69.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:19:16,364 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:26,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:36,416 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:46,438 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:19:56,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:03,335 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:03 CET)" (scheduled at 2026-01-22 07:20:03.329776+01:00) 2026-01-22 07:20:03,335 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:03 CET)" executed successfully 2026-01-22 07:20:06,490 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:07 CET)" (scheduled at 2026-01-22 07:20:07.461608+01:00) 2026-01-22 07:20:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:07 CET)" executed successfully 2026-01-22 07:20:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:08 CET)" (scheduled at 2026-01-22 07:20:08.847423+01:00) 2026-01-22 07:20:09,196 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77301 | 4823.29 | | H4 | uptrend | 433.25 | 42.9333 | 2.79011 | 4823.29 | | H1 | uptrend | 420.33 | 27.9791 | 1.76405 | 4823.3 | | M30 | uptrend | 551.06 | 18.6167 | 1.53884 | 4823.3 | | M15 | uptrend | 183.02 | 10.5518 | 0.289686 | 4823.3 | | M5 | downtrend | 288.72 | 4.6137 | -0.199814 | 4823.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 95.95% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153843.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.0% 🎯 Enhanced Score: 69.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:20:16,510 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:26,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:36,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:46,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:20:56,613 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:03,398 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:03 CET)" (scheduled at 2026-01-22 07:21:03.329776+01:00) 2026-01-22 07:21:03,400 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:03 CET)" executed successfully 2026-01-22 07:21:06,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:07 CET)" (scheduled at 2026-01-22 07:21:07.461608+01:00) 2026-01-22 07:21:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:07 CET)" executed successfully 2026-01-22 07:21:08,900 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:08 CET)" (scheduled at 2026-01-22 07:21:08.847423+01:00) 2026-01-22 07:21:09,101 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:22:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.77308 | 4823.6 | | H4 | uptrend | 433.26 | 42.9333 | 2.79019 | 4823.63 | | H1 | uptrend | 420.34 | 27.9791 | 1.76413 | 4823.63 | | M30 | uptrend | 551.09 | 18.6167 | 1.53892 | 4823.63 | | M15 | uptrend | 182.75 | 10.5704 | 0.289767 | 4823.64 | | M5 | downtrend | 283.04 | 4.7045 | -0.199731 | 4823.64 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.39) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153960.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.0% 🎯 Enhanced Score: 69.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:21:16,652 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:26,690 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:36,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:46,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:21:56,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:03,487 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:03 CET)" (scheduled at 2026-01-22 07:22:03.329776+01:00) 2026-01-22 07:22:03,487 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:03 CET)" executed successfully 2026-01-22 07:22:06,791 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:07,531 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:07 CET)" (scheduled at 2026-01-22 07:22:07.461608+01:00) 2026-01-22 07:22:07,531 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:07 CET)" executed successfully 2026-01-22 07:22:08,867 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:08 CET)" (scheduled at 2026-01-22 07:22:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:22:09,272 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:23:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77329 | 4824.5 | | H4 | uptrend | 432.96 | 42.9661 | 2.79039 | 4824.5 | | H1 | uptrend | 419.9 | 28.012 | 1.76434 | 4824.5 | | M30 | uptrend | 550.19 | 18.6495 | 1.53912 | 4824.5 | | M15 | uptrend | 180.73 | 10.6954 | 0.289951 | 4824.42 | | M5 | downtrend | 275.45 | 4.8295 | -0.19954 | 4824.45 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.28) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.13% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153882.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.1/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.1% 🎯 Enhanced Score: 69.3% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:22:16,814 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:26,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:36,874 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:46,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:22:56,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:03,342 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:03 CET)" (scheduled at 2026-01-22 07:23:03.329776+01:00) 2026-01-22 07:23:03,342 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:03 CET)" executed successfully 2026-01-22 07:23:06,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:07 CET)" (scheduled at 2026-01-22 07:23:07.461608+01:00) 2026-01-22 07:23:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:07 CET)" executed successfully 2026-01-22 07:23:09,027 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:08 CET)" (scheduled at 2026-01-22 07:23:08.847423+01:00) 2026-01-22 07:23:09,197 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:24:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.19 | 85.153 | 9.77372 | 4826.33 | | H4 | uptrend | 432.35 | 43.0333 | 2.79082 | 4826.33 | | H1 | uptrend | 419 | 28.0791 | 1.76477 | 4826.33 | | M30 | uptrend | 548.37 | 18.7167 | 1.53956 | 4826.33 | | M15 | uptrend | 179.88 | 10.7625 | 0.290393 | 4826.29 | | M5 | downtrend | 271.08 | 4.8966 | -0.199105 | 4826.29 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.05) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.18% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153664.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.2% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:23:16,969 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:26,994 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:37,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:47,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:23:57,064 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:03,354 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:03 CET)" (scheduled at 2026-01-22 07:24:03.329776+01:00) 2026-01-22 07:24:03,354 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:03 CET)" executed successfully 2026-01-22 07:24:07,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:07,659 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:07 CET)" (scheduled at 2026-01-22 07:24:07.461608+01:00) 2026-01-22 07:24:07,661 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:07 CET)" executed successfully 2026-01-22 07:24:08,888 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:08 CET)" (scheduled at 2026-01-22 07:24:08.847423+01:00) 2026-01-22 07:24:09,074 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.17 | 85.153 | 9.77353 | 4825.5 | | H4 | uptrend | 432.26 | 43.0397 | 2.79063 | 4825.5 | | H1 | uptrend | 418.86 | 28.0856 | 1.76457 | 4825.5 | | M30 | uptrend | 548.12 | 18.7231 | 1.53936 | 4825.5 | | M15 | uptrend | 179.67 | 10.769 | 0.290225 | 4825.58 | | M5 | downtrend | 270.95 | 4.903 | -0.199273 | 4825.58 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 632.01) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.18% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153614.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.2% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:24:17,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:27,133 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:37,158 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:47,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:24:57,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:03,359 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:03 CET)" (scheduled at 2026-01-22 07:25:03.329776+01:00) 2026-01-22 07:25:03,359 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:03 CET)" executed successfully 2026-01-22 07:25:07,234 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:07 CET)" (scheduled at 2026-01-22 07:25:07.461608+01:00) 2026-01-22 07:25:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:07 CET)" executed successfully 2026-01-22 07:25:08,943 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:08 CET)" (scheduled at 2026-01-22 07:25:08.847423+01:00) 2026-01-22 07:25:09,145 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:26:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.21 | 85.153 | 9.77401 | 4827.56 | | H4 | uptrend | 431.39 | 43.134 | 2.79111 | 4827.56 | | H1 | uptrend | 417.57 | 28.1799 | 1.76506 | 4827.56 | | M30 | uptrend | 545.54 | 18.8174 | 1.53985 | 4827.57 | | M15 | uptrend | 178.4 | 10.8632 | 0.290695 | 4827.57 | | M5 | downtrend | 265.81 | 4.6546 | -0.185584 | 4827.54 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.68) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.25% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153299.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.2% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:25:17,265 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:27,286 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:37,312 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:47,340 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:25:57,360 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:03,472 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:03 CET)" (scheduled at 2026-01-22 07:26:03.329776+01:00) 2026-01-22 07:26:03,472 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:03 CET)" executed successfully 2026-01-22 07:26:07,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:07,474 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:07 CET)" (scheduled at 2026-01-22 07:26:07.461608+01:00) 2026-01-22 07:26:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:07 CET)" executed successfully 2026-01-22 07:26:08,851 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:08 CET)" (scheduled at 2026-01-22 07:26:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.21 | 85.153 | 9.77398 | 4827.41 | | H4 | uptrend | 430.5 | 43.2219 | 2.79108 | 4827.41 | | H1 | uptrend | 416.26 | 28.2677 | 1.76502 | 4827.41 | | M30 | uptrend | 543 | 18.9052 | 1.53983 | 4827.48 | | M15 | uptrend | 176.95 | 10.9511 | 0.290674 | 4827.48 | | M5 | downtrend | 258.1 | 4.7939 | -0.185598 | 4827.48 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.33) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.35% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 153019.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 07:26:09,106 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:27:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.3% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:26:17,406 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:27,440 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:37,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:47,492 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:26:57,512 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:03 CET)" (scheduled at 2026-01-22 07:27:03.329776+01:00) 2026-01-22 07:27:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:03 CET)" executed successfully 2026-01-22 07:27:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:07 CET)" (scheduled at 2026-01-22 07:27:07.461608+01:00) 2026-01-22 07:27:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:07 CET)" executed successfully 2026-01-22 07:27:07,539 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:09,070 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:08 CET)" (scheduled at 2026-01-22 07:27:08.847423+01:00) 2026-01-22 07:27:09,232 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:28:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.22 | 85.153 | 9.77412 | 4828 | | H4 | uptrend | 430.35 | 43.2397 | 2.79121 | 4827.99 | | H1 | uptrend | 416.03 | 28.2856 | 1.76516 | 4827.99 | | M30 | uptrend | 542.53 | 18.9231 | 1.53995 | 4827.99 | | M15 | uptrend | 176.74 | 10.969 | 0.290795 | 4827.99 | | M5 | downtrend | 256.98 | 4.8118 | -0.185478 | 4827.99 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.27) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152959.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.4% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:27:17,565 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:27,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:37,608 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:47,634 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:27:57,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:03,368 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:03 CET)" (scheduled at 2026-01-22 07:28:03.329776+01:00) 2026-01-22 07:28:03,369 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:03 CET)" executed successfully 2026-01-22 07:28:07,685 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:07,764 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:07 CET)" (scheduled at 2026-01-22 07:28:07.461608+01:00) 2026-01-22 07:28:07,765 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:07 CET)" executed successfully 2026-01-22 07:28:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:08 CET)" (scheduled at 2026-01-22 07:28:08.847423+01:00) 2026-01-22 07:28:09,056 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:29:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.2 | 85.153 | 9.77387 | 4826.94 | | H4 | uptrend | 430.31 | 43.2397 | 2.79097 | 4826.94 | | H1 | uptrend | 415.97 | 28.2856 | 1.76491 | 4826.94 | | M30 | uptrend | 542.44 | 18.9231 | 1.5397 | 4826.94 | | M15 | uptrend | 176.59 | 10.969 | 0.290546 | 4826.94 | | M5 | downtrend | 254.97 | 4.8561 | -0.185726 | 4826.94 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.39% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152982.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.4% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:28:17,713 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:27,741 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:37,760 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:47,784 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:28:57,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:03 CET)" (scheduled at 2026-01-22 07:29:03.329776+01:00) 2026-01-22 07:29:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:03 CET)" executed successfully 2026-01-22 07:29:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:07 CET)" (scheduled at 2026-01-22 07:29:07.461608+01:00) 2026-01-22 07:29:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:07 CET)" executed successfully 2026-01-22 07:29:07,839 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:08 CET)" (scheduled at 2026-01-22 07:29:08.847423+01:00) 2026-01-22 07:29:09,016 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.19 | 85.153 | 9.77375 | 4826.44 | | H4 | uptrend | 430.29 | 43.2397 | 2.79085 | 4826.44 | | H1 | uptrend | 415.95 | 28.2856 | 1.76479 | 4826.44 | | M30 | uptrend | 542.4 | 18.9231 | 1.53958 | 4826.44 | | M15 | uptrend | 176.52 | 10.969 | 0.290428 | 4826.44 | | M5 | downtrend | 254.5 | 4.8682 | -0.185844 | 4826.44 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.39% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 152971.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.4% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:29:17,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:27,885 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:37,916 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:47,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:29:57,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:00,014 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 08:00:00 CET)" (scheduled at 2026-01-22 07:30:00+01:00) 2026-01-22 07:30:00,014 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 08:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 07:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 28.36 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 07:30:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:03 CET)" (scheduled at 2026-01-22 07:30:03.329776+01:00) 2026-01-22 07:30:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:03 CET)" executed successfully 2026-01-22 07:30:07,572 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:07 CET)" (scheduled at 2026-01-22 07:30:07.461608+01:00) 2026-01-22 07:30:07,572 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:07 CET)" executed successfully 2026-01-22 07:30:07,986 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:08,945 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:08 CET)" (scheduled at 2026-01-22 07:30:08.847423+01:00) 2026-01-22 07:30:09,100 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:31:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.17 | 85.153 | 9.77349 | 4825.32 | | H4 | uptrend | 430.25 | 43.2397 | 2.79058 | 4825.32 | | H1 | uptrend | 415.88 | 28.2856 | 1.76453 | 4825.32 | | M30 | uptrend | 574.64 | 17.6122 | 1.51809 | 4825.31 | | M15 | uptrend | 178.51 | 10.2261 | 0.273823 | 4825.31 | | M5 | downtrend | 253.92 | 4.605 | -0.175393 | 4825.31 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.43% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155628.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.4% 🎯 Enhanced Score: 69.4% 📈 Signal Quality: good 💡 Analysis: Strong trend (96%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:30:18,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:28,034 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:38,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:48,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:30:58,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:03 CET)" (scheduled at 2026-01-22 07:31:03.329776+01:00) 2026-01-22 07:31:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:03 CET)" executed successfully 2026-01-22 07:31:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:07 CET)" (scheduled at 2026-01-22 07:31:07.461608+01:00) 2026-01-22 07:31:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:07 CET)" executed successfully 2026-01-22 07:31:08,280 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:09,282 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:08 CET)" (scheduled at 2026-01-22 07:31:08.847423+01:00) 2026-01-22 07:31:09,431 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.2 | 85.153 | 9.7739 | 4827.06 | | H4 | uptrend | 430.31 | 43.2397 | 2.791 | 4827.06 | | H1 | uptrend | 415.98 | 28.2856 | 1.76494 | 4827.06 | | M30 | uptrend | 570.51 | 17.7443 | 1.5185 | 4827.06 | | M15 | uptrend | 176.5 | 10.3583 | 0.274237 | 4827.06 | | M5 | downtrend | 246.25 | 4.7371 | -0.17498 | 4827.06 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.25) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.53% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155368.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.5% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:31:18,309 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:28,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:38,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:48,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:31:58,385 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:03,387 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:03 CET)" (scheduled at 2026-01-22 07:32:03.329776+01:00) 2026-01-22 07:32:03,387 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:03 CET)" executed successfully 2026-01-22 07:32:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:07 CET)" (scheduled at 2026-01-22 07:32:07.461608+01:00) 2026-01-22 07:32:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:07 CET)" executed successfully 2026-01-22 07:32:08,403 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:08,865 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:08 CET)" (scheduled at 2026-01-22 07:32:08.847423+01:00) 2026-01-22 07:32:09,044 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.21 | 85.153 | 9.77399 | 4827.44 | | H4 | uptrend | 430.33 | 43.2397 | 2.79108 | 4827.44 | | H1 | uptrend | 416 | 28.2856 | 1.76503 | 4827.44 | | M30 | uptrend | 569.45 | 17.7786 | 1.51859 | 4827.44 | | M15 | uptrend | 175.98 | 10.3926 | 0.274327 | 4827.44 | | M5 | downtrend | 244.36 | 4.7714 | -0.17489 | 4827.44 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.55% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155291.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.5% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:32:18,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:28,449 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:38,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:48,485 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:32:58,503 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:03,831 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:03 CET)" (scheduled at 2026-01-22 07:33:03.329776+01:00) 2026-01-22 07:33:03,831 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:03 CET)" executed successfully 2026-01-22 07:33:07,494 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:07 CET)" (scheduled at 2026-01-22 07:33:07.461608+01:00) 2026-01-22 07:33:07,494 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:07 CET)" executed successfully 2026-01-22 07:33:08,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:09,308 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:08 CET)" (scheduled at 2026-01-22 07:33:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77341 | 4825.01 | | H4 | uptrend | 430.24 | 43.2397 | 2.79051 | 4825.02 | | H1 | uptrend | 415.87 | 28.2856 | 1.76446 | 4825.02 | | M30 | uptrend | 568.07 | 17.815 | 1.51802 | 4825.02 | | M15 | uptrend | 175 | 10.429 | 0.273755 | 4825.02 | | M5 | downtrend | 243.3 | 4.8078 | -0.175462 | 4825.02 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.57% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155141.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list'
2026-01-22 07:33:09,512 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:34:08 CET)" executed successfully
✅ Enhanced Signal Scoring: Trend Score: 96.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.6% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:33:18,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:28,569 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:38,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:48,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:33:58,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:03,693 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:03 CET)" (scheduled at 2026-01-22 07:34:03.329776+01:00) 2026-01-22 07:34:03,693 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:03 CET)" executed successfully 2026-01-22 07:34:07,476 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:07 CET)" (scheduled at 2026-01-22 07:34:07.461608+01:00) 2026-01-22 07:34:07,476 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:07 CET)" executed successfully 2026-01-22 07:34:08,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:08,878 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:08 CET)" (scheduled at 2026-01-22 07:34:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:34:09,165 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:35:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77341 | 4825 | | H4 | uptrend | 430.24 | 43.2397 | 2.79051 | 4825 | | H1 | uptrend | 415.87 | 28.2856 | 1.76445 | 4825 | | M30 | uptrend | 568.06 | 17.815 | 1.51801 | 4824.98 | | M15 | uptrend | 174.99 | 10.429 | 0.273745 | 4824.98 | | M5 | downtrend | 243.31 | 4.8078 | -0.175471 | 4824.98 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.57% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155140.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.6% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:34:18,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:28,688 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:38,717 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:48,757 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:34:58,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:03,525 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:03 CET)" (scheduled at 2026-01-22 07:35:03.329776+01:00) 2026-01-22 07:35:03,525 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:03 CET)" executed successfully 2026-01-22 07:35:07,484 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:07 CET)" (scheduled at 2026-01-22 07:35:07.461608+01:00) 2026-01-22 07:35:07,484 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:07 CET)" executed successfully 2026-01-22 07:35:08,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:08,867 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:08 CET)" (scheduled at 2026-01-22 07:35:08.847423+01:00) 2026-01-22 07:35:09,133 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:36:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77367 | 4826.1 | | H4 | uptrend | 430.28 | 43.2397 | 2.79078 | 4826.13 | | H1 | uptrend | 415.93 | 28.2856 | 1.76472 | 4826.13 | | M30 | uptrend | 566.82 | 17.8572 | 1.51829 | 4826.13 | | M15 | uptrend | 174.46 | 10.4711 | 0.274027 | 4826.17 | | M5 | downtrend | 237.57 | 4.6193 | -0.164609 | 4826.17 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.64% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155135.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.6% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:35:18,806 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:28,837 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:38,860 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:48,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:35:58,901 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:36:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:03 CET)" (scheduled at 2026-01-22 07:36:03.329776+01:00) 2026-01-22 07:36:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:03 CET)" executed successfully 2026-01-22 07:36:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:07 CET)" (scheduled at 2026-01-22 07:36:07.461608+01:00) 2026-01-22 07:36:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:07 CET)" executed successfully 2026-01-22 07:36:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:08 CET)" (scheduled at 2026-01-22 07:36:08.847423+01:00) 2026-01-22 07:36:09,088 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:37:08 CET)" executed successfully 2026-01-22 07:36:09,088 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77356 | 4825.63 | | H4 | uptrend | 430.26 | 43.2397 | 2.79066 | 4825.63 | | H1 | uptrend | 415.9 | 28.2856 | 1.7646 | 4825.63 | | M30 | uptrend | 566.78 | 17.8572 | 1.51817 | 4825.65 | | M15 | uptrend | 174.39 | 10.4711 | 0.273904 | 4825.65 | | M5 | downtrend | 235.85 | 4.6564 | -0.164732 | 4825.65 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155171.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.7% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:36:19,119 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:36:29,134 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:36:39,152 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:36:49,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:36:59,199 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:37:03,937 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:03 CET)" (scheduled at 2026-01-22 07:37:03.329776+01:00) 2026-01-22 07:37:03,937 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:03 CET)" executed successfully 2026-01-22 07:37:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:07 CET)" (scheduled at 2026-01-22 07:37:07.461608+01:00) 2026-01-22 07:37:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:07 CET)" executed successfully 2026-01-22 07:37:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:08 CET)" (scheduled at 2026-01-22 07:37:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:37:09,103 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:08 CET)" executed successfully 2026-01-22 07:37:09,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77367 | 4826.1 | | H4 | uptrend | 430.28 | 43.2397 | 2.79077 | 4826.1 | | H1 | uptrend | 415.93 | 28.2856 | 1.76471 | 4826.08 | | M30 | uptrend | 566.82 | 17.8572 | 1.51827 | 4826.07 | | M15 | uptrend | 174.45 | 10.4711 | 0.274003 | 4826.07 | | M5 | downtrend | 235.67 | 4.6571 | -0.164633 | 4826.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155181.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.7% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:37:19,254 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:37:29,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:37:39,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:37:49,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:37:59,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:39:03 CET)" (scheduled at 2026-01-22 07:38:03.329776+01:00) 2026-01-22 07:38:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:39:03 CET)" executed successfully 2026-01-22 07:38:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:39:07 CET)" (scheduled at 2026-01-22 07:38:07.461608+01:00) 2026-01-22 07:38:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:39:07 CET)" executed successfully 2026-01-22 07:38:08,893 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:38:08 CET)" (scheduled at 2026-01-22 07:38:08.847423+01:00) 2026-01-22 07:38:09,062 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:39:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.2 | 85.153 | 9.77382 | 4826.74 | | H4 | uptrend | 430.3 | 43.2397 | 2.79092 | 4826.74 | | H1 | uptrend | 415.96 | 28.2856 | 1.76486 | 4826.74 | | M30 | uptrend | 566.88 | 17.8572 | 1.51843 | 4826.74 | | M15 | uptrend | 174.55 | 10.4711 | 0.274161 | 4826.74 | | M5 | downtrend | 233.76 | 4.6907 | -0.164474 | 4826.74 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.7% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155245.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.7% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:38:09,367 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:19,395 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:29,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:39,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:49,447 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:38:59,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:03 CET)" (scheduled at 2026-01-22 07:39:03.329776+01:00) 2026-01-22 07:39:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:03 CET)" executed successfully 2026-01-22 07:39:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:07 CET)" (scheduled at 2026-01-22 07:39:07.461608+01:00) 2026-01-22 07:39:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:07 CET)" executed successfully 2026-01-22 07:39:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:08 CET)" (scheduled at 2026-01-22 07:39:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:39:09,244 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:40:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.2 | 85.153 | 9.77389 | 4827.05 | | H4 | uptrend | 430.31 | 43.2397 | 2.79099 | 4827.05 | | H1 | uptrend | 415.98 | 28.2856 | 1.76494 | 4827.07 | | M30 | uptrend | 566.9 | 17.8572 | 1.51849 | 4827.02 | | M15 | uptrend | 174.59 | 10.4711 | 0.274227 | 4827.02 | | M5 | downtrend | 233.1 | 4.7021 | -0.164408 | 4827.02 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.25) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.7% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155252.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.7% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:39:09,491 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:19,506 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:29,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:39,542 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:49,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:39:59,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:40:03,541 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:03 CET)" (scheduled at 2026-01-22 07:40:03.329776+01:00) 2026-01-22 07:40:03,541 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:03 CET)" executed successfully 2026-01-22 07:40:07,463 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:07 CET)" (scheduled at 2026-01-22 07:40:07.461608+01:00) 2026-01-22 07:40:07,463 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:07 CET)" executed successfully 2026-01-22 07:40:08,868 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:08 CET)" (scheduled at 2026-01-22 07:40:08.847423+01:00) 2026-01-22 07:40:09,016 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:41:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.2 | 85.153 | 9.77386 | 4826.9 | | H4 | uptrend | 430.31 | 43.2397 | 2.79096 | 4826.9 | | H1 | uptrend | 415.96 | 28.2856 | 1.76487 | 4826.76 | | M30 | uptrend | 566.47 | 17.87 | 1.51843 | 4826.76 | | M15 | uptrend | 174.34 | 10.484 | 0.274166 | 4826.76 | | M5 | downtrend | 229.85 | 4.5045 | -0.155306 | 4826.76 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.24) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.75% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155282.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.8% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:40:09,531 - INFO - Running job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 08:40:09 CET)" (scheduled at 2026-01-22 07:40:09.465739+01:00) 2026-01-22 07:40:09,578 - INFO - Job "P&L Sync (trigger: interval[1:00:00], next run at: 2026-01-22 08:40:09 CET)" executed successfully 2026-01-22 07:40:09,616 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
[07:40:09] 🔄 Running scheduled P&L sync... ❌ Sync failed: SQLite objects created in a thread can only be used in that same thread. The object was created in thread id 28820 and this is thread id 36292.
2026-01-22 07:40:19,633 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:40:29,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:40:39,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:40:49,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:40:59,725 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:03 CET)" (scheduled at 2026-01-22 07:41:03.329776+01:00) 2026-01-22 07:41:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:03 CET)" executed successfully 2026-01-22 07:41:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:07 CET)" (scheduled at 2026-01-22 07:41:07.461608+01:00) 2026-01-22 07:41:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:07 CET)" executed successfully 2026-01-22 07:41:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:08 CET)" (scheduled at 2026-01-22 07:41:08.847423+01:00) 2026-01-22 07:41:09,187 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:42:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.17 | 85.153 | 9.77347 | 4825.27 | | H4 | uptrend | 430.25 | 43.2397 | 2.79057 | 4825.27 | | H1 | uptrend | 415.88 | 28.2856 | 1.76452 | 4825.27 | | M30 | uptrend | 566.34 | 17.87 | 1.51808 | 4825.27 | | M15 | uptrend | 174.12 | 10.484 | 0.273814 | 4825.27 | | M5 | downtrend | 225.09 | 4.6102 | -0.155658 | 4825.27 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.20) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.81% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155343.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.8% 🎯 Enhanced Score: 69.5% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:41:09,745 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:19,766 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:29,805 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:39,821 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:49,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:41:59,853 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:03,408 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:03 CET)" (scheduled at 2026-01-22 07:42:03.329776+01:00) 2026-01-22 07:42:03,408 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:03 CET)" executed successfully 2026-01-22 07:42:07,529 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:07 CET)" (scheduled at 2026-01-22 07:42:07.461608+01:00) 2026-01-22 07:42:07,529 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:07 CET)" executed successfully 2026-01-22 07:42:09,150 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:08 CET)" (scheduled at 2026-01-22 07:42:08.847423+01:00) 2026-01-22 07:42:09,299 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:43:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.15 | 85.153 | 9.77319 | 4824.08 | | H4 | uptrend | 430.2 | 43.2397 | 2.79029 | 4824.08 | | H1 | uptrend | 415.82 | 28.2856 | 1.76424 | 4824.08 | | M30 | uptrend | 566.24 | 17.87 | 1.5178 | 4824.08 | | M15 | uptrend | 173.94 | 10.484 | 0.273533 | 4824.08 | | M5 | downtrend | 221.28 | 4.6981 | -0.155939 | 4824.08 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.87% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155412.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:42:09,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:19,907 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:29,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:39,952 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:49,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:42:59,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:43:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:03 CET)" (scheduled at 2026-01-22 07:43:03.329776+01:00) 2026-01-22 07:43:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:03 CET)" executed successfully 2026-01-22 07:43:07,472 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:07 CET)" (scheduled at 2026-01-22 07:43:07.461608+01:00) 2026-01-22 07:43:07,472 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:07 CET)" executed successfully 2026-01-22 07:43:08,854 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:08 CET)" (scheduled at 2026-01-22 07:43:08.847423+01:00) 2026-01-22 07:43:08,994 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:44:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.15 | 85.153 | 9.77322 | 4824.21 | | H4 | uptrend | 430.21 | 43.2397 | 2.79032 | 4824.21 | | H1 | uptrend | 415.82 | 28.2856 | 1.76427 | 4824.21 | | M30 | uptrend | 565.59 | 17.8908 | 1.51783 | 4824.22 | | M15 | uptrend | 173.61 | 10.5047 | 0.273566 | 4824.22 | | M5 | downtrend | 219.83 | 4.7281 | -0.155906 | 4824.22 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.88% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155360.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:43:10,012 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:43:20,025 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:43:30,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:43:40,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:43:50,092 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:00,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:03 CET)" (scheduled at 2026-01-22 07:44:03.329776+01:00) 2026-01-22 07:44:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:03 CET)" executed successfully 2026-01-22 07:44:07,481 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:07 CET)" (scheduled at 2026-01-22 07:44:07.461608+01:00) 2026-01-22 07:44:07,481 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:07 CET)" executed successfully 2026-01-22 07:44:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:08 CET)" (scheduled at 2026-01-22 07:44:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77331 | 4824.59 | | H4 | uptrend | 430.22 | 43.2397 | 2.79041 | 4824.59 | | H1 | uptrend | 415.84 | 28.2856 | 1.76436 | 4824.59 | | M30 | uptrend | 565.63 | 17.8908 | 1.51792 | 4824.59 | | M15 | uptrend | 173.67 | 10.5047 | 0.273649 | 4824.57 | | M5 | downtrend | 219.71 | 4.7281 | -0.155823 | 4824.57 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.89% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155385.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 07:44:09,063 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:45:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:44:10,123 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:20,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:30,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:40,190 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:44:50,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:00,237 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:03,341 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:03 CET)" (scheduled at 2026-01-22 07:45:03.329776+01:00) 2026-01-22 07:45:03,341 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:03 CET)" executed successfully 2026-01-22 07:45:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:07 CET)" (scheduled at 2026-01-22 07:45:07.461608+01:00) 2026-01-22 07:45:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:07 CET)" executed successfully 2026-01-22 07:45:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:08 CET)" (scheduled at 2026-01-22 07:45:08.847423+01:00) 2026-01-22 07:45:08,989 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:46:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.15 | 85.153 | 9.77324 | 4824.28 | | H4 | uptrend | 430.21 | 43.2397 | 2.79034 | 4824.28 | | H1 | uptrend | 415.83 | 28.2856 | 1.76428 | 4824.28 | | M30 | uptrend | 565.6 | 17.8908 | 1.51785 | 4824.28 | | M15 | uptrend | 171.38 | 9.8001 | 0.251931 | 4824.28 | | M5 | downtrend | 220.47 | 4.4361 | -0.146707 | 4824.28 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.87% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155215.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:45:10,248 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:20,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:30,294 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:40,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:45:50,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:00,347 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:03,331 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:03 CET)" (scheduled at 2026-01-22 07:46:03.329776+01:00) 2026-01-22 07:46:03,331 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:03 CET)" executed successfully 2026-01-22 07:46:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:07 CET)" (scheduled at 2026-01-22 07:46:07.461608+01:00) 2026-01-22 07:46:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:07 CET)" executed successfully 2026-01-22 07:46:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:08 CET)" (scheduled at 2026-01-22 07:46:08.847423+01:00) 2026-01-22 07:46:09,255 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:47:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77332 | 4824.61 | | H4 | uptrend | 430.23 | 43.2397 | 2.79042 | 4824.64 | | H1 | uptrend | 415.84 | 28.2856 | 1.76435 | 4824.58 | | M30 | uptrend | 565.62 | 17.8908 | 1.51792 | 4824.58 | | M15 | uptrend | 170.21 | 9.8701 | 0.252002 | 4824.58 | | M5 | downtrend | 216.94 | 4.5061 | -0.146636 | 4824.58 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155232.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:46:10,379 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:20,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:30,415 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:40,432 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:46:50,463 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:00,469 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:03,560 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:03 CET)" (scheduled at 2026-01-22 07:47:03.329776+01:00) 2026-01-22 07:47:03,560 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:03 CET)" executed successfully 2026-01-22 07:47:07,471 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:07 CET)" (scheduled at 2026-01-22 07:47:07.461608+01:00) 2026-01-22 07:47:07,471 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:07 CET)" executed successfully 2026-01-22 07:47:09,070 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:08 CET)" (scheduled at 2026-01-22 07:47:08.847423+01:00) 2026-01-22 07:47:09,241 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:48:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77333 | 4824.67 | | H4 | uptrend | 430.23 | 43.2397 | 2.79043 | 4824.67 | | H1 | uptrend | 415.85 | 28.2856 | 1.76438 | 4824.67 | | M30 | uptrend | 565.63 | 17.8908 | 1.51794 | 4824.66 | | M15 | uptrend | 170.23 | 9.8701 | 0.252021 | 4824.66 | | M5 | downtrend | 216.92 | 4.5061 | -0.146617 | 4824.66 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155234.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:47:10,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:20,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:30,540 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:40,561 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:47:50,698 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:00,726 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:03 CET)" (scheduled at 2026-01-22 07:48:03.329776+01:00) 2026-01-22 07:48:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:03 CET)" executed successfully 2026-01-22 07:48:07,488 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:07 CET)" (scheduled at 2026-01-22 07:48:07.461608+01:00) 2026-01-22 07:48:07,488 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:07 CET)" executed successfully 2026-01-22 07:48:09,148 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:08 CET)" (scheduled at 2026-01-22 07:48:08.847423+01:00) 2026-01-22 07:48:09,310 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:49:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.77335 | 4824.75 | | H4 | uptrend | 430.23 | 43.2397 | 2.79045 | 4824.75 | | H1 | uptrend | 415.85 | 28.2856 | 1.76439 | 4824.75 | | M30 | uptrend | 565.64 | 17.8908 | 1.51796 | 4824.75 | | M15 | uptrend | 170.03 | 9.8822 | 0.252042 | 4824.75 | | M5 | downtrend | 216.3 | 4.5182 | -0.146593 | 4824.76 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.19) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.93% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155240.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:48:10,743 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:20,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:30,798 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:40,826 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:48:50,848 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:00,871 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:03,347 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:03 CET)" (scheduled at 2026-01-22 07:49:03.329776+01:00) 2026-01-22 07:49:03,347 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:03 CET)" executed successfully 2026-01-22 07:49:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:07 CET)" (scheduled at 2026-01-22 07:49:07.461608+01:00) 2026-01-22 07:49:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:07 CET)" executed successfully 2026-01-22 07:49:08,864 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:08 CET)" (scheduled at 2026-01-22 07:49:08.847423+01:00) 2026-01-22 07:49:09,013 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:50:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.16 | 85.153 | 9.7733 | 4824.55 | | H4 | uptrend | 430.22 | 43.2397 | 2.7904 | 4824.55 | | H1 | uptrend | 415.84 | 28.2856 | 1.76435 | 4824.55 | | M30 | uptrend | 565.62 | 17.8908 | 1.51791 | 4824.55 | | M15 | uptrend | 170 | 9.8822 | 0.251995 | 4824.55 | | M5 | downtrend | 216.37 | 4.5182 | -0.146643 | 4824.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.18) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.93% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155235.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 96.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 96.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 96.9% 🎯 Enhanced Score: 69.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:49:10,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:20,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:30,947 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:40,995 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:49:51,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:01,043 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:03 CET)" (scheduled at 2026-01-22 07:50:03.329776+01:00) 2026-01-22 07:50:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:03 CET)" executed successfully 2026-01-22 07:50:07,832 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:07 CET)" (scheduled at 2026-01-22 07:50:07.461608+01:00) 2026-01-22 07:50:07,832 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:07 CET)" executed successfully 2026-01-22 07:50:08,855 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:08 CET)" (scheduled at 2026-01-22 07:50:08.847423+01:00) 2026-01-22 07:50:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:51:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.77312 | 4823.79 | | H4 | uptrend | 430.19 | 43.2397 | 2.79022 | 4823.79 | | H1 | uptrend | 415.79 | 28.2856 | 1.76414 | 4823.69 | | M30 | uptrend | 565.55 | 17.8908 | 1.51771 | 4823.69 | | M15 | uptrend | 169.75 | 9.8886 | 0.251792 | 4823.69 | | M5 | downtrend | 212.01 | 4.2998 | -0.136738 | 4823.69 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 96.99% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155304.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.0/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.0% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:50:11,057 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:21,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:31,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:41,143 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:50:51,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:01,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:03,400 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:03 CET)" (scheduled at 2026-01-22 07:51:03.329776+01:00) 2026-01-22 07:51:03,400 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:03 CET)" executed successfully 2026-01-22 07:51:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:07 CET)" (scheduled at 2026-01-22 07:51:07.461608+01:00) 2026-01-22 07:51:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:07 CET)" executed successfully 2026-01-22 07:51:08,869 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:08 CET)" (scheduled at 2026-01-22 07:51:08.847423+01:00) 2026-01-22 07:51:09,033 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:52:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.77316 | 4823.94 | | H4 | uptrend | 430.2 | 43.2397 | 2.79026 | 4823.94 | | H1 | uptrend | 415.81 | 28.2856 | 1.76421 | 4823.95 | | M30 | uptrend | 563.52 | 17.9558 | 1.51777 | 4823.95 | | M15 | uptrend | 168.61 | 9.9579 | 0.251853 | 4823.95 | | M5 | downtrend | 208.56 | 4.3691 | -0.136679 | 4823.94 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.04% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155163.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.0/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.0% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:51:11,213 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:21,223 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:31,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:41,279 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:51:51,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:01,334 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:03,348 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:03 CET)" (scheduled at 2026-01-22 07:52:03.329776+01:00) 2026-01-22 07:52:03,348 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:03 CET)" executed successfully 2026-01-22 07:52:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:07 CET)" (scheduled at 2026-01-22 07:52:07.461608+01:00) 2026-01-22 07:52:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:07 CET)" executed successfully 2026-01-22 07:52:08,860 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:08 CET)" (scheduled at 2026-01-22 07:52:08.847423+01:00) 2026-01-22 07:52:08,988 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:53:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+----------+---------| | D1 | uptrend | 765.12 | 85.153 | 9.77284 | 4822.58 | | H4 | uptrend | 430.15 | 43.2397 | 2.78994 | 4822.58 | | H1 | uptrend | 415.73 | 28.2856 | 1.76388 | 4822.58 | | M30 | uptrend | 562.33 | 17.99 | 1.51745 | 4822.58 | | M15 | uptrend | 167.82 | 9.9922 | 0.25153 | 4822.58 | | M5 | downtrend | 207.42 | 4.4034 | -0.137 | 4822.58 | +------+-----------+------------+---------+----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.13) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.05% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155029.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.0/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.0% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:52:11,363 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:21,381 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:31,409 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:41,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:52:51,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:01,498 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:03,459 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:03 CET)" (scheduled at 2026-01-22 07:53:03.329776+01:00) 2026-01-22 07:53:03,459 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:03 CET)" executed successfully 2026-01-22 07:53:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:07 CET)" (scheduled at 2026-01-22 07:53:07.461608+01:00) 2026-01-22 07:53:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:07 CET)" executed successfully 2026-01-22 07:53:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:08 CET)" (scheduled at 2026-01-22 07:53:08.847423+01:00) 2026-01-22 07:53:08,993 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:54:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.77309 | 4823.63 | | H4 | uptrend | 430.19 | 43.2397 | 2.79019 | 4823.63 | | H1 | uptrend | 415.79 | 28.2856 | 1.76413 | 4823.63 | | M30 | uptrend | 560.75 | 18.0436 | 1.51769 | 4823.63 | | M15 | uptrend | 167.09 | 10.0458 | 0.251778 | 4823.63 | | M5 | downtrend | 204.55 | 4.4569 | -0.136752 | 4823.63 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.09% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154936.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.1/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.1% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:53:11,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:21,541 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:31,572 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:41,597 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:53:51,618 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:01,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:03 CET)" (scheduled at 2026-01-22 07:54:03.329776+01:00) 2026-01-22 07:54:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:03 CET)" executed successfully 2026-01-22 07:54:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:07 CET)" (scheduled at 2026-01-22 07:54:07.461608+01:00) 2026-01-22 07:54:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:07 CET)" executed successfully 2026-01-22 07:54:09,150 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:08 CET)" (scheduled at 2026-01-22 07:54:08.847423+01:00) 2026-01-22 07:54:09,303 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:55:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.13 | 85.153 | 9.77294 | 4823.01 | | H4 | uptrend | 430.17 | 43.2397 | 2.79004 | 4823.01 | | H1 | uptrend | 415.76 | 28.2856 | 1.76398 | 4823.01 | | M30 | uptrend | 560.7 | 18.0436 | 1.51755 | 4823.01 | | M15 | uptrend | 166.99 | 10.0458 | 0.251631 | 4823.01 | | M5 | downtrend | 204.77 | 4.4569 | -0.136899 | 4823.01 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.08% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154905.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.1% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.1/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.1% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:54:11,669 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:21,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:31,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:41,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:54:51,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:01,790 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:03,443 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:03 CET)" (scheduled at 2026-01-22 07:55:03.329776+01:00) 2026-01-22 07:55:03,459 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:03 CET)" executed successfully 2026-01-22 07:55:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:07 CET)" (scheduled at 2026-01-22 07:55:07.461608+01:00) 2026-01-22 07:55:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:07 CET)" executed successfully 2026-01-22 07:55:08,849 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:08 CET)" (scheduled at 2026-01-22 07:55:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 07:55:09,077 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:56:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.1 | 85.153 | 9.77261 | 4821.61 | | H4 | uptrend | 430.12 | 43.2397 | 2.78971 | 4821.62 | | H1 | uptrend | 415.68 | 28.2856 | 1.76365 | 4821.62 | | M30 | uptrend | 560.48 | 18.0465 | 1.51721 | 4821.59 | | M15 | uptrend | 166.72 | 10.0486 | 0.251296 | 4821.59 | | M5 | downtrend | 207.11 | 4.155 | -0.129083 | 4821.6 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.05% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 154814.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.0/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.0% 🎯 Enhanced Score: 73.6% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:55:11,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:21,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:31,868 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:41,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:55:51,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:01,963 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:03,681 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:03 CET)" (scheduled at 2026-01-22 07:56:03.329776+01:00) 2026-01-22 07:56:03,681 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:03 CET)" executed successfully 2026-01-22 07:56:07,487 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:07 CET)" (scheduled at 2026-01-22 07:56:07.461608+01:00) 2026-01-22 07:56:07,487 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:07 CET)" executed successfully 2026-01-22 07:56:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:08 CET)" (scheduled at 2026-01-22 07:56:08.847423+01:00) 2026-01-22 07:56:09,060 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:57:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.14 | 85.153 | 9.7731 | 4823.7 | | H4 | uptrend | 430.19 | 43.2397 | 2.79022 | 4823.8 | | H1 | uptrend | 415.8 | 28.2856 | 1.76417 | 4823.8 | | M30 | uptrend | 560.67 | 18.0465 | 1.51771 | 4823.72 | | M15 | uptrend | 167.05 | 10.0486 | 0.251799 | 4823.72 | | M5 | downtrend | 198.79 | 4.3121 | -0.128582 | 4823.72 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.16) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.17% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155057.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.2/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.2% 🎯 Enhanced Score: 73.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:56:11,978 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:22,009 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:32,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:42,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:56:52,073 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:02,094 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:03 CET)" (scheduled at 2026-01-22 07:57:03.329776+01:00) 2026-01-22 07:57:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:03 CET)" executed successfully 2026-01-22 07:57:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:07 CET)" (scheduled at 2026-01-22 07:57:07.461608+01:00) 2026-01-22 07:57:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:07 CET)" executed successfully 2026-01-22 07:57:09,026 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:08 CET)" (scheduled at 2026-01-22 07:57:08.847423+01:00) 2026-01-22 07:57:09,191 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:58:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77357 | 4825.68 | | H4 | uptrend | 430.26 | 43.2397 | 2.79066 | 4825.63 | | H1 | uptrend | 415.9 | 28.2856 | 1.7646 | 4825.63 | | M30 | uptrend | 560.84 | 18.0465 | 1.51816 | 4825.62 | | M15 | uptrend | 167.2 | 10.0579 | 0.252248 | 4825.62 | | M5 | downtrend | 192.3 | 4.4421 | -0.128134 | 4825.62 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.26% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155236.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.3% 🎯 Enhanced Score: 73.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:57:12,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:22,152 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:32,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:42,194 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:57:52,222 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:02,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:03,359 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:03 CET)" (scheduled at 2026-01-22 07:58:03.329776+01:00) 2026-01-22 07:58:03,359 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:03 CET)" executed successfully 2026-01-22 07:58:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:07 CET)" (scheduled at 2026-01-22 07:58:07.461608+01:00) 2026-01-22 07:58:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:07 CET)" executed successfully 2026-01-22 07:58:08,876 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:08 CET)" (scheduled at 2026-01-22 07:58:08.847423+01:00) 2026-01-22 07:58:09,021 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 07:59:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77359 | 4825.77 | | H4 | uptrend | 430.27 | 43.2397 | 2.79069 | 4825.77 | | H1 | uptrend | 415.91 | 28.2856 | 1.76464 | 4825.77 | | M30 | uptrend | 560.85 | 18.0465 | 1.5182 | 4825.77 | | M15 | uptrend | 166.82 | 10.0822 | 0.252283 | 4825.77 | | M5 | downtrend | 191.2 | 4.4664 | -0.128098 | 4825.77 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.21) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.27% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155232.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.3% 🎯 Enhanced Score: 73.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:58:12,275 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:22,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:32,328 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:42,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:58:52,386 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:02,410 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:03 CET)" (scheduled at 2026-01-22 07:59:03.329776+01:00) 2026-01-22 07:59:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:03 CET)" executed successfully 2026-01-22 07:59:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:07 CET)" (scheduled at 2026-01-22 07:59:07.461608+01:00) 2026-01-22 07:59:07,478 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:07 CET)" executed successfully 2026-01-22 07:59:08,907 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:08 CET)" (scheduled at 2026-01-22 07:59:08.847423+01:00) 2026-01-22 07:59:09,059 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:00:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.19 | 85.153 | 9.77372 | 4826.32 | | H4 | uptrend | 430.29 | 43.2397 | 2.79082 | 4826.32 | | H1 | uptrend | 415.94 | 28.2856 | 1.76477 | 4826.32 | | M30 | uptrend | 560.9 | 18.0465 | 1.51833 | 4826.32 | | M15 | uptrend | 166.53 | 10.1051 | 0.252413 | 4826.32 | | M5 | downtrend | 190.04 | 4.4893 | -0.127968 | 4826.32 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.29% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 155255.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.3/100 Volume Score: 60.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.3% 🎯 Enhanced Score: 73.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 07:59:12,502 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:22,526 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:32,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:42,573 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 07:59:52,593 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:00,177 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 08:30:00 CET)" (scheduled at 2026-01-22 08:00:00+01:00) 2026-01-22 08:00:00,181 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 08:30:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 08:00:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 26.34 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 08:00:02,637 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:03,359 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:03 CET)" (scheduled at 2026-01-22 08:00:03.329776+01:00) 2026-01-22 08:00:03,361 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:03 CET)" executed successfully 2026-01-22 08:00:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:07 CET)" (scheduled at 2026-01-22 08:00:07.461608+01:00) 2026-01-22 08:00:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:07 CET)" executed successfully 2026-01-22 08:00:09,149 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:08 CET)" (scheduled at 2026-01-22 08:00:08.847423+01:00) 2026-01-22 08:00:09,334 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:01:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.19 | 85.153 | 9.77379 | 4826.59 | | H4 | uptrend | 430.3 | 43.2397 | 2.79088 | 4826.59 | | H1 | uptrend | 451.43 | 26.363 | 1.78518 | 4826.59 | | M30 | uptrend | 593.54 | 16.8551 | 1.50062 | 4826.59 | | M15 | uptrend | 163.53 | 9.5077 | 0.233213 | 4826.59 | | M5 | downtrend | 189.01 | 4.293 | -0.12171 | 4826.59 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.23) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.36% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 161190.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.4% 🎯 Enhanced Score: 69.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:00:12,659 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:22,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:32,714 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:42,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:00:52,769 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:02,792 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:03,332 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:03 CET)" (scheduled at 2026-01-22 08:01:03.329776+01:00) 2026-01-22 08:01:03,333 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:03 CET)" executed successfully 2026-01-22 08:01:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:07 CET)" (scheduled at 2026-01-22 08:01:07.461608+01:00) 2026-01-22 08:01:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:07 CET)" executed successfully 2026-01-22 08:01:08,850 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:08 CET)" (scheduled at 2026-01-22 08:01:08.847423+01:00) 2026-01-22 08:01:09,051 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:02:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.18 | 85.153 | 9.77367 | 4826.09 | | H4 | uptrend | 430.28 | 43.2397 | 2.79076 | 4826.07 | | H1 | uptrend | 450.57 | 26.4116 | 1.78505 | 4826.07 | | M30 | uptrend | 591.78 | 16.9036 | 1.5005 | 4826.07 | | M15 | uptrend | 162.61 | 9.5562 | 0.23309 | 4826.07 | | M5 | downtrend | 187.08 | 4.3415 | -0.121833 | 4826.07 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.22) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.38% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 160948.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.4% 🎯 Enhanced Score: 69.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:01:12,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:22,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:32,877 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:42,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:01:52,917 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:02,941 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:03,781 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:03 CET)" (scheduled at 2026-01-22 08:02:03.329776+01:00) 2026-01-22 08:02:03,783 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:03 CET)" executed successfully 2026-01-22 08:02:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:07 CET)" (scheduled at 2026-01-22 08:02:07.461608+01:00) 2026-01-22 08:02:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:07 CET)" executed successfully 2026-01-22 08:02:08,876 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:08 CET)" (scheduled at 2026-01-22 08:02:08.847423+01:00) 2026-01-22 08:02:09,038 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:03:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.21 | 85.153 | 9.77404 | 4827.67 | | H4 | uptrend | 430.34 | 43.2397 | 2.79114 | 4827.67 | | H1 | uptrend | 449.94 | 26.4544 | 1.78543 | 4827.67 | | M30 | uptrend | 590.44 | 16.9465 | 1.50088 | 4827.67 | | M15 | uptrend | 162.15 | 9.5991 | 0.233468 | 4827.67 | | M5 | downtrend | 184.68 | 4.3844 | -0.121455 | 4827.67 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.26) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.41% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 160808.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.4% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.4/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.4% 🎯 Enhanced Score: 69.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:02:12,962 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:22,984 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:33,017 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:43,036 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:02:53,064 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:03,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:03,563 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:03 CET)" (scheduled at 2026-01-22 08:03:03.329776+01:00) 2026-01-22 08:03:03,565 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:03 CET)" executed successfully 2026-01-22 08:03:07,529 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:07 CET)" (scheduled at 2026-01-22 08:03:07.461608+01:00) 2026-01-22 08:03:07,529 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:07 CET)" executed successfully 2026-01-22 08:03:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:08 CET)" (scheduled at 2026-01-22 08:03:08.847423+01:00) 2026-01-22 08:03:09,007 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:04:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.25 | 85.153 | 9.7745 | 4829.61 | | H4 | uptrend | 429.63 | 43.3176 | 2.7916 | 4829.61 | | H1 | uptrend | 447.73 | 26.5916 | 1.78589 | 4829.61 | | M30 | uptrend | 585.88 | 17.0836 | 1.50133 | 4829.61 | | M15 | uptrend | 160.18 | 9.7362 | 0.233926 | 4829.61 | | M5 | downtrend | 178.4 | 4.5215 | -0.120996 | 4829.61 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 631.00) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.49% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 160229.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.5% 🎯 Enhanced Score: 69.7% 📈 Signal Quality: good 💡 Analysis: Strong trend (97%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:03:13,118 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:23,150 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:33,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:43,206 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:03:53,220 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:03,262 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:03,333 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:03 CET)" (scheduled at 2026-01-22 08:04:03.329776+01:00) 2026-01-22 08:04:03,335 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:03 CET)" executed successfully 2026-01-22 08:04:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:07 CET)" (scheduled at 2026-01-22 08:04:07.461608+01:00) 2026-01-22 08:04:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:07 CET)" executed successfully 2026-01-22 08:04:09,059 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:08 CET)" (scheduled at 2026-01-22 08:04:08.847423+01:00) 2026-01-22 08:04:09,227 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:05:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 34%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.25 | 85.153 | 9.77454 | 4829.78 | | H4 | uptrend | 429.2 | 43.3619 | 2.79164 | 4829.78 | | H1 | uptrend | 447 | 26.6358 | 1.78593 | 4829.78 | | M30 | uptrend | 584.38 | 17.1279 | 1.50138 | 4829.79 | | M15 | uptrend | 159.48 | 9.7805 | 0.233969 | 4829.79 | | M5 | downtrend | 176.61 | 4.5658 | -0.120954 | 4829.79 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.83) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.51% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 160015.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.5% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:04:13,288 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:23,314 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:33,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:43,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:04:53,448 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:03 CET)" (scheduled at 2026-01-22 08:05:03.329776+01:00) 2026-01-22 08:05:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:03 CET)" executed successfully 2026-01-22 08:05:03,481 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:07 CET)" (scheduled at 2026-01-22 08:05:07.461608+01:00) 2026-01-22 08:05:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:07 CET)" executed successfully 2026-01-22 08:05:09,056 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:08 CET)" (scheduled at 2026-01-22 08:05:08.847423+01:00) 2026-01-22 08:05:09,235 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:06:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.28 | 85.153 | 9.77487 | 4831.18 | | H4 | uptrend | 429.05 | 43.3819 | 2.79197 | 4831.18 | | H1 | uptrend | 446.75 | 26.6558 | 1.78626 | 4831.18 | | M30 | uptrend | 583.82 | 17.1479 | 1.50171 | 4831.18 | | M15 | uptrend | 159.38 | 9.8005 | 0.234297 | 4831.18 | | M5 | downtrend | 173.09 | 4.2915 | -0.11142 | 4831.18 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.79) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.56% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 160019.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.6% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:05:13,497 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:23,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:33,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:43,587 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:05:53,606 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:03 CET)" (scheduled at 2026-01-22 08:06:03.329776+01:00) 2026-01-22 08:06:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:03 CET)" executed successfully 2026-01-22 08:06:03,635 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:07 CET)" (scheduled at 2026-01-22 08:06:07.461608+01:00) 2026-01-22 08:06:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:07 CET)" executed successfully 2026-01-22 08:06:08,853 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:08 CET)" (scheduled at 2026-01-22 08:06:08.847423+01:00) 2026-01-22 08:06:09,030 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:07:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.27 | 85.153 | 9.77482 | 4830.96 | | H4 | uptrend | 428.88 | 43.399 | 2.79192 | 4830.96 | | H1 | uptrend | 446.45 | 26.673 | 1.78621 | 4830.96 | | M30 | uptrend | 583.22 | 17.1651 | 1.50165 | 4830.96 | | M15 | uptrend | 159.06 | 9.8177 | 0.234245 | 4830.96 | | M5 | downtrend | 172.48 | 4.3086 | -0.111472 | 4830.96 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.72) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.57% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 159934.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.6% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:06:13,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:23,681 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:33,704 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:43,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:06:53,753 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:03 CET)" (scheduled at 2026-01-22 08:07:03.329776+01:00) 2026-01-22 08:07:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:03 CET)" executed successfully 2026-01-22 08:07:03,804 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:07,477 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:07 CET)" (scheduled at 2026-01-22 08:07:07.461608+01:00) 2026-01-22 08:07:07,477 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:07 CET)" executed successfully 2026-01-22 08:07:08,994 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:08 CET)" (scheduled at 2026-01-22 08:07:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 08:07:09,209 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:08:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 765.32 | 85.153 | 9.77538 | 4833.36 | | H4 | uptrend | 427.3 | 43.5683 | 2.79248 | 4833.36 | | H1 | uptrend | 443.77 | 26.8423 | 1.78678 | 4833.36 | | M30 | uptrend | 577.74 | 17.3344 | 1.50222 | 4833.36 | | M15 | uptrend | 156.75 | 9.9869 | 0.234812 | 4833.36 | | M5 | downtrend | 165.11 | 4.4779 | -0.110905 | 4833.36 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 630.11) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.66% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 159197.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.7% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:07:13,822 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:23,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:33,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:43,915 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:07:53,937 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:03,383 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:03 CET)" (scheduled at 2026-01-22 08:08:03.329776+01:00) 2026-01-22 08:08:03,383 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:03 CET)" executed successfully 2026-01-22 08:08:03,964 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:07,473 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:07 CET)" (scheduled at 2026-01-22 08:08:07.461608+01:00) 2026-01-22 08:08:07,473 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:07 CET)" executed successfully 2026-01-22 08:08:08,859 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:08 CET)" (scheduled at 2026-01-22 08:08:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 08:08:09,132 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:09:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.76 | 85.213 | 9.77516 | 4832.4 | | H4 | uptrend | 426.54 | 43.6419 | 2.79226 | 4832.4 | | H1 | uptrend | 442.5 | 26.9158 | 1.78656 | 4832.43 | | M30 | uptrend | 575.22 | 17.4079 | 1.502 | 4832.43 | | M15 | uptrend | 155.45 | 10.0605 | 0.234592 | 4832.43 | | M5 | downtrend | 162.77 | 4.5515 | -0.111124 | 4832.43 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.47) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.69% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158787.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.7% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:08:13,990 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:24,000 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:34,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:44,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:08:54,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:03 CET)" (scheduled at 2026-01-22 08:09:03.329776+01:00) 2026-01-22 08:09:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:03 CET)" executed successfully 2026-01-22 08:09:04,114 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:07,483 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:07 CET)" (scheduled at 2026-01-22 08:09:07.461608+01:00) 2026-01-22 08:09:07,483 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:07 CET)" executed successfully 2026-01-22 08:09:08,893 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:08 CET)" (scheduled at 2026-01-22 08:09:08.847423+01:00) 2026-01-22 08:09:09,041 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:10:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.74 | 85.213 | 9.77491 | 4831.33 | | H4 | uptrend | 426.5 | 43.6419 | 2.792 | 4831.33 | | H1 | uptrend | 442.44 | 26.9158 | 1.7863 | 4831.33 | | M30 | uptrend | 575.12 | 17.4079 | 1.50175 | 4831.35 | | M15 | uptrend | 155.29 | 10.0605 | 0.234337 | 4831.35 | | M5 | downtrend | 163.14 | 4.5515 | -0.11138 | 4831.35 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.45) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.68% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158744.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.7% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:09:14,141 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:24,158 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:34,181 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:44,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:09:54,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:03,346 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:03 CET)" (scheduled at 2026-01-22 08:10:03.329776+01:00) 2026-01-22 08:10:03,346 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:03 CET)" executed successfully 2026-01-22 08:10:04,261 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:07,470 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:07 CET)" (scheduled at 2026-01-22 08:10:07.461608+01:00) 2026-01-22 08:10:07,470 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:07 CET)" executed successfully 2026-01-22 08:10:09,007 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:08 CET)" (scheduled at 2026-01-22 08:10:08.847423+01:00) 2026-01-22 08:10:09,203 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:11:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.8 | 85.213 | 9.77563 | 4834.4 | | H4 | uptrend | 426.61 | 43.6419 | 2.79273 | 4834.4 | | H1 | uptrend | 442.61 | 26.9158 | 1.78699 | 4834.27 | | M30 | uptrend | 575.38 | 17.4079 | 1.50243 | 4834.27 | | M15 | uptrend | 155.74 | 10.0605 | 0.235027 | 4834.27 | | M5 | downtrend | 159.06 | 4.2771 | -0.102049 | 4834.3 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.52) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.74% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158914.4 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.7% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:10:14,276 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:24,313 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:34,337 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:44,369 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:10:54,393 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:03 CET)" (scheduled at 2026-01-22 08:11:03.329776+01:00) 2026-01-22 08:11:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:03 CET)" executed successfully 2026-01-22 08:11:04,419 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:07 CET)" (scheduled at 2026-01-22 08:11:07.461608+01:00) 2026-01-22 08:11:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:07 CET)" executed successfully 2026-01-22 08:11:09,191 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:08 CET)" (scheduled at 2026-01-22 08:11:08.847423+01:00) 2026-01-22 08:11:09,359 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:12:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.76 | 85.213 | 9.77512 | 4832.25 | | H4 | uptrend | 426.54 | 43.6419 | 2.79222 | 4832.25 | | H1 | uptrend | 442.49 | 26.9158 | 1.78652 | 4832.26 | | M30 | uptrend | 575.2 | 17.4079 | 1.50196 | 4832.26 | | M15 | uptrend | 155.43 | 10.0605 | 0.234552 | 4832.26 | | M5 | downtrend | 154.1 | 4.4364 | -0.102548 | 4832.19 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.47) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.81% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158978.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.8% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:11:14,434 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:24,474 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:34,493 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:44,531 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:11:54,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:03 CET)" (scheduled at 2026-01-22 08:12:03.329776+01:00) 2026-01-22 08:12:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:03 CET)" executed successfully 2026-01-22 08:12:04,577 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:07,775 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:07 CET)" (scheduled at 2026-01-22 08:12:07.461608+01:00) 2026-01-22 08:12:07,775 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:07 CET)" executed successfully 2026-01-22 08:12:08,862 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:08 CET)" (scheduled at 2026-01-22 08:12:08.847423+01:00) 2026-01-22 08:12:08,988 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:13:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.76 | 85.213 | 9.77516 | 4832.41 | | H4 | uptrend | 426.54 | 43.6419 | 2.79226 | 4832.41 | | H1 | uptrend | 442.5 | 26.9158 | 1.78655 | 4832.41 | | M30 | uptrend | 575.22 | 17.4079 | 1.502 | 4832.41 | | M15 | uptrend | 155.45 | 10.0605 | 0.234588 | 4832.41 | | M5 | downtrend | 153.46 | 4.4528 | -0.102496 | 4832.41 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.47) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.82% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158998.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.8% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:12:14,619 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:24,646 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:34,662 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:44,697 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:12:54,712 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:03,340 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:03 CET)" (scheduled at 2026-01-22 08:13:03.329776+01:00) 2026-01-22 08:13:03,340 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:03 CET)" executed successfully 2026-01-22 08:13:04,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:07,467 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:07 CET)" (scheduled at 2026-01-22 08:13:07.461608+01:00) 2026-01-22 08:13:07,467 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:07 CET)" executed successfully 2026-01-22 08:13:08,848 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:08 CET)" (scheduled at 2026-01-22 08:13:08.847423+01:00) 2026-01-22 08:13:08,985 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:14:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.77 | 85.213 | 9.7752 | 4832.57 | | H4 | uptrend | 426.55 | 43.6419 | 2.7923 | 4832.57 | | H1 | uptrend | 442.51 | 26.9158 | 1.78659 | 4832.57 | | M30 | uptrend | 575.23 | 17.4079 | 1.50203 | 4832.57 | | M15 | uptrend | 155.48 | 10.0605 | 0.234626 | 4832.57 | | M5 | downtrend | 153.4 | 4.4528 | -0.102458 | 4832.57 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.48) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.82% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 159002.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.8% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:13:14,763 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:24,782 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:34,808 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:44,854 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:13:54,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:03,431 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:03 CET)" (scheduled at 2026-01-22 08:14:03.329776+01:00) 2026-01-22 08:14:03,431 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:03 CET)" executed successfully 2026-01-22 08:14:04,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:07,549 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:07 CET)" (scheduled at 2026-01-22 08:14:07.461608+01:00) 2026-01-22 08:14:07,549 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:07 CET)" executed successfully 2026-01-22 08:14:09,087 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:08 CET)" (scheduled at 2026-01-22 08:14:08.847423+01:00) 2026-01-22 08:14:09,259 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:15:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.76 | 85.213 | 9.77511 | 4832.18 | | H4 | uptrend | 426.53 | 43.6419 | 2.79221 | 4832.18 | | H1 | uptrend | 442.49 | 26.9158 | 1.7865 | 4832.18 | | M30 | uptrend | 575.19 | 17.4079 | 1.50194 | 4832.18 | | M15 | uptrend | 155.42 | 10.0605 | 0.234533 | 4832.18 | | M5 | downtrend | 153.54 | 4.4528 | -0.10255 | 4832.18 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.47) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.82% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158993.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.8% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.8/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.8% 🎯 Enhanced Score: 69.8% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:14:14,926 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:24,942 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:34,971 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:45,011 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:14:55,027 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:03,572 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:03 CET)" (scheduled at 2026-01-22 08:15:03.329776+01:00) 2026-01-22 08:15:03,572 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:03 CET)" executed successfully 2026-01-22 08:15:05,056 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:07,466 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:07 CET)" (scheduled at 2026-01-22 08:15:07.461608+01:00) 2026-01-22 08:15:07,466 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:07 CET)" executed successfully 2026-01-22 08:15:09,159 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:08 CET)" (scheduled at 2026-01-22 08:15:08.847423+01:00) 2026-01-22 08:15:09,301 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:16:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.77 | 85.213 | 9.77524 | 4832.73 | | H4 | uptrend | 426.55 | 43.6419 | 2.79234 | 4832.73 | | H1 | uptrend | 442.52 | 26.9158 | 1.78663 | 4832.73 | | M30 | uptrend | 575.24 | 17.4079 | 1.50207 | 4832.73 | | M15 | uptrend | 154.62 | 9.3997 | 0.218004 | 4832.73 | | M5 | downtrend | 147.07 | 4.1926 | -0.09249 | 4832.73 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.48) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.91% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 159100.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 97.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 97.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 97.9% 🎯 Enhanced Score: 69.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:15:15,087 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:25,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:35,138 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:45,155 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:15:55,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:03,338 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:03 CET)" (scheduled at 2026-01-22 08:16:03.329776+01:00) 2026-01-22 08:16:03,338 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:03 CET)" executed successfully 2026-01-22 08:16:05,212 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:07,492 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:07 CET)" (scheduled at 2026-01-22 08:16:07.461608+01:00) 2026-01-22 08:16:07,493 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:07 CET)" executed successfully 2026-01-22 08:16:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:08 CET)" (scheduled at 2026-01-22 08:16:08.847423+01:00) 2026-01-22 08:16:09,210 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:17:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 764.7 | 85.2244 | 9.77573 | 4834.83 | | H4 | uptrend | 426.52 | 43.6533 | 2.79283 | 4834.83 | | H1 | uptrend | 442.46 | 26.9273 | 1.78712 | 4834.82 | | M30 | uptrend | 575.06 | 17.4194 | 1.50256 | 4834.82 | | M15 | uptrend | 153.16 | 9.5105 | 0.218497 | 4834.82 | | M5 | downtrend | 142.52 | 4.3033 | -0.091996 | 4834.82 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 629.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 97.97% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 159086.5 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.0% 🎯 Enhanced Score: 69.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:16:15,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:25,260 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:35,281 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:45,306 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:16:55,322 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:03,353 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:03 CET)" (scheduled at 2026-01-22 08:17:03.329776+01:00) 2026-01-22 08:17:03,353 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:03 CET)" executed successfully 2026-01-22 08:17:05,353 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:07 CET)" (scheduled at 2026-01-22 08:17:07.461608+01:00) 2026-01-22 08:17:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:07 CET)" executed successfully 2026-01-22 08:17:08,864 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:08 CET)" (scheduled at 2026-01-22 08:17:08.847423+01:00) 2026-01-22 08:17:09,016 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:18:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.45 | 85.3659 | 9.7759 | 4835.56 | | H4 | uptrend | 425.17 | 43.7947 | 2.793 | 4835.56 | | H1 | uptrend | 440.19 | 27.0687 | 1.7873 | 4835.56 | | M30 | uptrend | 570.49 | 17.5608 | 1.50274 | 4835.56 | | M15 | uptrend | 151.04 | 9.6519 | 0.218672 | 4835.56 | | M5 | downtrend | 137.72 | 4.4447 | -0.091821 | 4835.56 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 628.14) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158351.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.0% 🎯 Enhanced Score: 69.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:17:15,373 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:25,400 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:35,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:45,458 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:17:55,471 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:03,759 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:03 CET)" (scheduled at 2026-01-22 08:18:03.329776+01:00) 2026-01-22 08:18:03,759 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:03 CET)" executed successfully 2026-01-22 08:18:05,501 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:07,480 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:07 CET)" (scheduled at 2026-01-22 08:18:07.461608+01:00) 2026-01-22 08:18:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:07 CET)" executed successfully 2026-01-22 08:18:08,975 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:08 CET)" (scheduled at 2026-01-22 08:18:08.847423+01:00) 2026-01-22 08:18:09,179 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:19:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.44 | 85.3659 | 9.77577 | 4834.98 | | H4 | uptrend | 425.15 | 43.7947 | 2.79287 | 4834.98 | | H1 | uptrend | 440.15 | 27.0687 | 1.78716 | 4834.99 | | M30 | uptrend | 570.44 | 17.5608 | 1.5026 | 4834.99 | | M15 | uptrend | 150.95 | 9.6519 | 0.218538 | 4834.99 | | M5 | downtrend | 137.92 | 4.4447 | -0.091956 | 4834.99 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 628.12) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.03% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158337.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.0% 🎯 Enhanced Score: 69.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:18:15,525 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:25,559 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:35,588 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:45,602 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:18:55,636 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:03,343 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:03 CET)" (scheduled at 2026-01-22 08:19:03.329776+01:00) 2026-01-22 08:19:03,343 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:03 CET)" executed successfully 2026-01-22 08:19:05,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:07,482 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:07 CET)" (scheduled at 2026-01-22 08:19:07.461608+01:00) 2026-01-22 08:19:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:07 CET)" executed successfully 2026-01-22 08:19:08,861 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:08 CET)" (scheduled at 2026-01-22 08:19:08.847423+01:00) 2026-01-22 08:19:09,051 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:20:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.48 | 85.3659 | 9.77621 | 4836.87 | | H4 | uptrend | 425.21 | 43.7947 | 2.79331 | 4836.87 | | H1 | uptrend | 440.26 | 27.0687 | 1.78761 | 4836.87 | | M30 | uptrend | 570.61 | 17.5608 | 1.50305 | 4836.87 | | M15 | uptrend | 151.25 | 9.6519 | 0.218984 | 4836.88 | | M5 | downtrend | 137.27 | 4.4447 | -0.091516 | 4836.85 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 628.17) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.04% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158400.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.0% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.0/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.0% 🎯 Enhanced Score: 69.9% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:19:15,686 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:25,719 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:35,744 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:45,767 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:19:55,783 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:03,348 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:03 CET)" (scheduled at 2026-01-22 08:20:03.329776+01:00) 2026-01-22 08:20:03,348 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:03 CET)" executed successfully 2026-01-22 08:20:05,810 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:07,517 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:07 CET)" (scheduled at 2026-01-22 08:20:07.461608+01:00) 2026-01-22 08:20:07,517 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:07 CET)" executed successfully 2026-01-22 08:20:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:08 CET)" (scheduled at 2026-01-22 08:20:08.847423+01:00) 2026-01-22 08:20:09,181 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:21:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.16 | 85.4009 | 9.77612 | 4836.49 | | H4 | uptrend | 424.86 | 43.8297 | 2.79322 | 4836.49 | | H1 | uptrend | 439.67 | 27.1037 | 1.78752 | 4836.49 | | M30 | uptrend | 569.44 | 17.5958 | 1.50297 | 4836.53 | | M15 | uptrend | 150.65 | 9.6869 | 0.218901 | 4836.53 | | M5 | downtrend | 125.31 | 4.214 | -0.079211 | 4836.5 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.84) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.2% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158441.3 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.2% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:20:15,838 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:25,850 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:35,882 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:45,912 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:20:55,931 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:03,337 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:03 CET)" (scheduled at 2026-01-22 08:21:03.329776+01:00) 2026-01-22 08:21:03,337 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:03 CET)" executed successfully 2026-01-22 08:21:05,956 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:07,491 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:07 CET)" (scheduled at 2026-01-22 08:21:07.461608+01:00) 2026-01-22 08:21:07,491 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:07 CET)" executed successfully 2026-01-22 08:21:09,038 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:08 CET)" (scheduled at 2026-01-22 08:21:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 08:21:09,291 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:22:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.15 | 85.4009 | 9.77607 | 4836.25 | | H4 | uptrend | 424.85 | 43.8297 | 2.79317 | 4836.25 | | H1 | uptrend | 439.66 | 27.1037 | 1.78746 | 4836.25 | | M30 | uptrend | 569.42 | 17.5958 | 1.5029 | 4836.25 | | M15 | uptrend | 150.61 | 9.6869 | 0.218838 | 4836.26 | | M5 | downtrend | 124.87 | 4.2319 | -0.079268 | 4836.26 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.83) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.21% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158451.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.2% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:21:16,041 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:26,076 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:36,117 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:46,127 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:21:56,166 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:03,572 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:03 CET)" (scheduled at 2026-01-22 08:22:03.329776+01:00) 2026-01-22 08:22:03,572 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:03 CET)" executed successfully 2026-01-22 08:22:06,185 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:07,475 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:07 CET)" (scheduled at 2026-01-22 08:22:07.461608+01:00) 2026-01-22 08:22:07,475 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:07 CET)" executed successfully 2026-01-22 08:22:09,300 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:08 CET)" (scheduled at 2026-01-22 08:22:08.847423+01:00) 2026-01-22 08:22:09,468 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:23:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.14 | 85.4009 | 9.77592 | 4835.64 | | H4 | uptrend | 424.83 | 43.8297 | 2.79302 | 4835.64 | | H1 | uptrend | 439.62 | 27.1037 | 1.78731 | 4835.64 | | M30 | uptrend | 569.36 | 17.5958 | 1.50276 | 4835.64 | | M15 | uptrend | 150.51 | 9.6869 | 0.218691 | 4835.64 | | M5 | downtrend | 122.58 | 4.319 | -0.079414 | 4835.64 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.82) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.24% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158484.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.2% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.2/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.2% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:22:16,217 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:26,244 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:36,259 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:46,285 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:22:56,327 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:03,371 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:03 CET)" (scheduled at 2026-01-22 08:23:03.329776+01:00) 2026-01-22 08:23:03,387 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:03 CET)" executed successfully 2026-01-22 08:23:06,355 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:07,482 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:07 CET)" (scheduled at 2026-01-22 08:23:07.461608+01:00) 2026-01-22 08:23:07,482 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:07 CET)" executed successfully 2026-01-22 08:23:08,852 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:08 CET)" (scheduled at 2026-01-22 08:23:08.847423+01:00) 2026-01-22 08:23:09,033 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:24:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.11 | 85.4009 | 9.77558 | 4834.2 | | H4 | uptrend | 424.78 | 43.8297 | 2.79268 | 4834.2 | | H1 | uptrend | 439.54 | 27.1037 | 1.78697 | 4834.2 | | M30 | uptrend | 569.23 | 17.5958 | 1.50242 | 4834.2 | | M15 | uptrend | 150.27 | 9.6869 | 0.218351 | 4834.2 | | M5 | downtrend | 119.82 | 4.4376 | -0.079755 | 4834.2 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.78) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.28% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158512.9 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.3% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:23:16,382 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:26,401 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:36,418 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:46,443 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:23:56,482 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:03,739 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:03 CET)" (scheduled at 2026-01-22 08:24:03.329776+01:00) 2026-01-22 08:24:03,739 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:03 CET)" executed successfully 2026-01-22 08:24:06,509 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:07,468 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:07 CET)" (scheduled at 2026-01-22 08:24:07.461608+01:00) 2026-01-22 08:24:07,468 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:07 CET)" executed successfully 2026-01-22 08:24:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:08 CET)" (scheduled at 2026-01-22 08:24:08.847423+01:00) 2026-01-22 08:24:09,101 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:25:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.1 | 85.4009 | 9.77543 | 4833.55 | | H4 | uptrend | 424.75 | 43.8297 | 2.79253 | 4833.55 | | H1 | uptrend | 439.5 | 27.1037 | 1.78682 | 4833.55 | | M30 | uptrend | 569.18 | 17.5958 | 1.50226 | 4833.55 | | M15 | uptrend | 150.17 | 9.6869 | 0.218197 | 4833.55 | | M5 | downtrend | 120.05 | 4.4376 | -0.079908 | 4833.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.76) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.28% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158496.7 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.3% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:24:16,527 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:26,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:36,578 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:46,603 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:24:56,623 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:03,525 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:03 CET)" (scheduled at 2026-01-22 08:25:03.329776+01:00) 2026-01-22 08:25:03,525 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:03 CET)" executed successfully 2026-01-22 08:25:06,650 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:07,464 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:07 CET)" (scheduled at 2026-01-22 08:25:07.461608+01:00) 2026-01-22 08:25:07,464 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:07 CET)" executed successfully 2026-01-22 08:25:08,943 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:08 CET)" (scheduled at 2026-01-22 08:25:08.847423+01:00) 2026-01-22 08:25:09,128 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:26:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.07 | 85.4009 | 9.77497 | 4831.59 | | H4 | uptrend | 424.68 | 43.8297 | 2.79207 | 4831.59 | | H1 | uptrend | 439.39 | 27.1037 | 1.78636 | 4831.59 | | M30 | uptrend | 569 | 17.5958 | 1.5018 | 4831.59 | | M15 | uptrend | 147.21 | 9.8605 | 0.217734 | 4831.59 | | M5 | downtrend | 115.62 | 4.634 | -0.080371 | 4831.59 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.71) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.34% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158389.1 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.3% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.3/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.3% 🎯 Enhanced Score: 70.0% 📈 Signal Quality: good 💡 Analysis: Strong trend (98%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:25:16,680 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:26,709 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:36,730 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:46,755 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:25:56,775 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:03,339 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:03 CET)" (scheduled at 2026-01-22 08:26:03.329776+01:00) 2026-01-22 08:26:03,339 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:03 CET)" executed successfully 2026-01-22 08:26:06,803 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:07,563 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:07 CET)" (scheduled at 2026-01-22 08:26:07.461608+01:00) 2026-01-22 08:26:07,564 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:07 CET)" executed successfully 2026-01-22 08:26:08,966 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:08 CET)" (scheduled at 2026-01-22 08:26:08.847423+01:00) 2026-01-22 08:26:09,138 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:27:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.08 | 85.4009 | 9.77514 | 4832.34 | | H4 | uptrend | 424.71 | 43.8297 | 2.79224 | 4832.34 | | H1 | uptrend | 439.43 | 27.1037 | 1.78653 | 4832.34 | | M30 | uptrend | 569.07 | 17.5958 | 1.50198 | 4832.34 | | M15 | uptrend | 147.33 | 9.8605 | 0.217911 | 4832.34 | | M5 | downtrend | 101.28 | 4.4523 | -0.067638 | 4832.34 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.73) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.54% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158729.8 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.5% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.5/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.5% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:26:16,825 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:26,852 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:36,878 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:46,900 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:26:56,918 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:03,334 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:03 CET)" (scheduled at 2026-01-22 08:27:03.329776+01:00) 2026-01-22 08:27:03,334 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:03 CET)" executed successfully 2026-01-22 08:27:06,951 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:07,465 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:07 CET)" (scheduled at 2026-01-22 08:27:07.461608+01:00) 2026-01-22 08:27:07,465 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:07 CET)" executed successfully 2026-01-22 08:27:09,165 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:08 CET)" (scheduled at 2026-01-22 08:27:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters...
2026-01-22 08:27:09,393 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:28:08 CET)" executed successfully
📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.13 | 85.4009 | 9.77574 | 4834.88 | | H4 | uptrend | 424.8 | 43.8297 | 2.79284 | 4834.88 | | H1 | uptrend | 439.58 | 27.1037 | 1.78713 | 4834.87 | | M30 | uptrend | 569.29 | 17.5958 | 1.50258 | 4834.87 | | M15 | uptrend | 147.73 | 9.8605 | 0.218509 | 4834.87 | | M5 | downtrend | 96.59 | 4.6273 | -0.06704 | 4834.87 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.80) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.61% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158905.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.6% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:27:17,059 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:27,388 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:37,412 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:47,431 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:27:57,462 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:03,455 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:03 CET)" (scheduled at 2026-01-22 08:28:03.329776+01:00) 2026-01-22 08:28:03,455 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:03 CET)" executed successfully 2026-01-22 08:28:07,462 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:07 CET)" (scheduled at 2026-01-22 08:28:07.461608+01:00) 2026-01-22 08:28:07,462 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:07 CET)" executed successfully 2026-01-22 08:28:07,488 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:08,931 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:08 CET)" (scheduled at 2026-01-22 08:28:08.847423+01:00)
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 763.14 | 85.4009 | 9.77594 | 4835.7 | | H4 | uptrend | 424.83 | 43.8297 | 2.79304 | 4835.7 | | H1 | uptrend | 439.63 | 27.1037 | 1.78733 | 4835.7 | | M30 | uptrend | 569.37 | 17.5958 | 1.50277 | 4835.7 | | M15 | uptrend | 147.87 | 9.8605 | 0.218705 | 4835.7 | | M5 | downtrend | 95.22 | 4.6802 | -0.066844 | 4835.7 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.82) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.63% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158958.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.6% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score...
2026-01-22 08:28:09,143 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:29:08 CET)" executed successfully
⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.6/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.6% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:28:17,543 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:27,556 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:37,596 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:47,628 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:28:57,653 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:03,355 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:03 CET)" (scheduled at 2026-01-22 08:29:03.329776+01:00) 2026-01-22 08:29:03,357 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:03 CET)" executed successfully 2026-01-22 08:29:07,506 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:07 CET)" (scheduled at 2026-01-22 08:29:07.461608+01:00) 2026-01-22 08:29:07,509 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:07 CET)" executed successfully 2026-01-22 08:29:07,682 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:08,882 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:08 CET)" (scheduled at 2026-01-22 08:29:08.847423+01:00) 2026-01-22 08:29:09,081 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:30:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 762.72 | 85.448 | 9.77592 | 4835.64 | | H4 | uptrend | 424.37 | 43.8769 | 2.79302 | 4835.64 | | H1 | uptrend | 438.86 | 27.1508 | 1.78731 | 4835.64 | | M30 | uptrend | 567.84 | 17.6429 | 1.50276 | 4835.64 | | M15 | uptrend | 147.15 | 9.9076 | 0.218691 | 4835.64 | | M5 | downtrend | 91.88 | 4.8509 | -0.066858 | 4835.64 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.38) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.67% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 158741.0 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.7% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.7/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.7% 🎯 Enhanced Score: 70.1% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:29:17,715 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:27,740 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:37,773 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:47,801 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:29:57,807 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:00,010 - INFO - Running job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 09:00:00 CET)" (scheduled at 2026-01-22 08:30:00+01:00) 2026-01-22 08:30:00,035 - INFO - Job "print_status_report (trigger: cron[minute='0,30'], next run at: 2026-01-22 09:00:00 CET)" executed successfully
╔════════════════════════════════════════════════════════╗ ║ ADAPTIVE RHYTHM STATUS - 08:30:00 UTC ║ ╠════════════════════════════════════════════════════════╣ ║ Aktuelles Intervall: 15 Minuten ║ ║ Trading Session: ASIAN ║ ║ Volatilitätslevel: HIGH ║ ║ ATR (H1): 27.22 ║ ╠════════════════════════════════════════════════════════╣ ║ INTERVALL-SCHEMA: ║ ║ • Overlap (13-16 UTC): 5-15 Min (aktivste Phase) ║ ║ • London/NY: 5-30 Min (volatilitätsabh.) ║ ║ • Asian Session: 15-30 Min (ruhigere Phase) ║ ╚════════════════════════════════════════════════════════╝
2026-01-22 08:30:03,479 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:03 CET)" (scheduled at 2026-01-22 08:30:03.329776+01:00) 2026-01-22 08:30:03,481 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:03 CET)" executed successfully 2026-01-22 08:30:07,555 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:07 CET)" (scheduled at 2026-01-22 08:30:07.461608+01:00) 2026-01-22 08:30:07,560 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:07 CET)" executed successfully 2026-01-22 08:30:07,859 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:08,855 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:08 CET)" (scheduled at 2026-01-22 08:30:08.847423+01:00) 2026-01-22 08:30:09,036 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:31:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 762.75 | 85.448 | 9.77637 | 4837.55 | | H4 | uptrend | 424.44 | 43.8769 | 2.79347 | 4837.55 | | H1 | uptrend | 438.97 | 27.1508 | 1.78777 | 4837.55 | | M30 | uptrend | 611.79 | 16.4234 | 1.50714 | 4837.55 | | M15 | uptrend | 147.22 | 9.2406 | 0.204062 | 4837.55 | | M5 | downtrend | 77.65 | 4.5451 | -0.052939 | 4837.55 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.89% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 162591.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.9% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:30:17,886 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:27,906 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:37,949 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:47,973 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:30:57,996 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:03 CET)" (scheduled at 2026-01-22 08:31:03.329776+01:00) 2026-01-22 08:31:03,344 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:03 CET)" executed successfully 2026-01-22 08:31:07,478 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:07 CET)" (scheduled at 2026-01-22 08:31:07.461608+01:00) 2026-01-22 08:31:07,480 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:07 CET)" executed successfully 2026-01-22 08:31:08,051 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:08,890 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:08 CET)" (scheduled at 2026-01-22 08:31:08.847423+01:00) 2026-01-22 08:31:09,080 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 762.75 | 85.448 | 9.77638 | 4837.59 | | H4 | uptrend | 424.44 | 43.8769 | 2.79349 | 4837.62 | | H1 | uptrend | 438.98 | 27.1508 | 1.78778 | 4837.62 | | M30 | uptrend | 606.39 | 16.5698 | 1.50716 | 4837.62 | | M15 | uptrend | 144.94 | 9.3871 | 0.204078 | 4837.62 | | M5 | downtrend | 75.2 | 4.6915 | -0.052922 | 4837.62 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.43) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.92% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 162078.2 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.9% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:31:18,078 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:28,103 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:38,151 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:48,175 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:31:58,197 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:32:03,330 - INFO - Running job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:33:03 CET)" (scheduled at 2026-01-22 08:32:03.329776+01:00) 2026-01-22 08:32:03,331 - INFO - Job "PositionMonitor.check_open_positions (trigger: interval[0:01:00], next run at: 2026-01-22 08:33:03 CET)" executed successfully 2026-01-22 08:32:07,535 - INFO - Running job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:07 CET)" (scheduled at 2026-01-22 08:32:07.461608+01:00) 2026-01-22 08:32:07,537 - INFO - Job "create_enhanced_position_monitor.<locals>.enhanced_position_monitor (trigger: interval[0:01:00], next run at: 2026-01-22 08:32:07 CET)" executed successfully 2026-01-22 08:32:08,228 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK" 2026-01-22 08:32:08,928 - INFO - Running job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:33:08 CET)" (scheduled at 2026-01-22 08:32:08.847423+01:00) 2026-01-22 08:32:09,140 - INFO - Job "Enhanced Adaptive Trading Check (trigger: interval[0:01:00], next run at: 2026-01-22 08:33:08 CET)" executed successfully
✅ Position-Check OK: 0/1 🔍 Analyzing XAUUSD with V1.6 ADAPTIVE COMPLETE parameters... 📊 V1.6 ADAPTIVE COMPLETE Trend-Analyse für XAUUSD ⚡ Adaptive Interval: 15 min | Session: ASIAN 🎯 Market Regime: RANGING (Strength: 33%) 🎚️ Adaptive Threshold: 70% (RELAXED) +------+-----------+------------+---------+-----------+---------+ | TF | Trend | Strength | ATR | Slope | Price | |------+-----------+------------+---------+-----------+---------| | D1 | uptrend | 762.73 | 85.448 | 9.77607 | 4836.25 | | H4 | uptrend | 424.39 | 43.8769 | 2.79317 | 4836.25 | | H1 | uptrend | 438.9 | 27.1508 | 1.78746 | 4836.25 | | M30 | uptrend | 606.26 | 16.5698 | 1.50683 | 4836.25 | | M15 | uptrend | 144.71 | 9.3871 | 0.203755 | 4836.25 | | M5 | downtrend | 75.66 | 4.6915 | -0.053246 | 4836.25 | +------+-----------+------------+---------+-----------+---------+ ➡️ Standard-Trend: uptrend (Strength: 627.40) ➡️ Fast-Trend: uptrend (Required: 2/4) ➡️ Top-Down-Trend: uptrend ➡️ Confidence: 98.91% (Threshold: 70%) ➡️ Risk-Adjusted Strength: 162026.6 (Min: 80) ➡️ Signal Quality: EXCELLENT 🚀 V1.6 Adaptive Complete: Full Features + Adaptive Rhythm 📊 Base Signal Analysis: Direction: 1 Base Confidence: 98.9% Adaptive Threshold: 70.0% 🎯 Calculating Enhanced Signal Score... ⚠️ Support/Resistance calculation error: bad operand type for unary -: 'list' ✅ Enhanced Signal Scoring: Trend Score: 98.9/100 Volume Score: 40.0/100 Momentum Score: 80.0/100 S/R Score: 50.0/100 Fibonacci Score: 60.0/100 ───────────────────────────────────── 📊 Base Confidence: 98.9% 🎯 Enhanced Score: 70.2% 📈 Signal Quality: good 💡 Analysis: Strong trend (99%), Strong momentum ⏸️ No clear signal: 1
2026-01-22 08:32:18,252 - INFO - HTTP Request: POST https://api.telegram.org/bot7783303065:AAHVVvwWGqmhJ2BVq8LqkLRSsicKy1CUsD8/getUpdates "HTTP/1.1 200 OK"
Warning:
Output truncated. This notebook contains too many cells to display efficiently.