Bugfix: Bot V0.3 - Remove undefined variable from startup logging (line 229)
This commit is contained in:
parent
cba8e4f4d4
commit
d5e030b170
|
|
@ -226,7 +226,7 @@ class TradingBotV03:
|
||||||
logger.info("TRADING BOT V0.3 STARTED")
|
logger.info("TRADING BOT V0.3 STARTED")
|
||||||
logger.info(f"Symbols: {SYMBOLS}")
|
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"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(f"KEY FIX: Fresh balance fetched EVERY cycle (no stale cache!)")
|
||||||
logger.info("=" * 70)
|
logger.info("=" * 70)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue