Bugfix: Bot V0.3 - Remove undefined variable from startup logging (line 229)

This commit is contained in:
Marc Blatter 2026-07-09 18:51:42 +02:00
parent cba8e4f4d4
commit d5e030b170
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ class TradingBotV03:
logger.info("TRADING BOT V0.3 STARTED")
logger.info(f"Symbols: {SYMBOLS}")
logger.info(f"Strategy: Local Min Signals | Risk: TP=+{TAKE_PROFIT_PCT*100:.1f}% / SL={STOP_LOSS_PCT*100:.1f}%")
logger.info(f"Position size: Max ${MAX_TRADE_USDT}/trade (${usdt_free*0.5} = 50% avail)")
logger.info(f"Position size: Max ${MAX_TRADE_USDT}/trade (50% capital)")
logger.info(f"KEY FIX: Fresh balance fetched EVERY cycle (no stale cache!)")
logger.info("=" * 70)