Hide live acknowledgement from bot settings output

Этот коммит содержится в:
Виктор
2026-05-08 03:58:42 +09:00
родитель ff178755c4
Коммит db79b91b2c
+4 -5
Просмотреть файл
@@ -94,10 +94,10 @@ class AiTradingBot:
confidence = max(0, min(100, abs(score - 50) * 1.8)) confidence = max(0, min(100, abs(score - 50) * 1.8))
reason = ( reason = (
f'AI-bot: {market} score={score:.1f}. ' f'{market}: score {score:.1f}. '
f'SMA fast {sma_fast:.8f} vs slow {sma_slow:.8f}; ' f'Быстрая средняя {sma_fast:.8f}, медленная {sma_slow:.8f}; '
f'momentum {momentum_pct:.2f}%; volatility {volatility_pct:.2f}%; news_score {news_score:.1f}. ' f'импульс {momentum_pct:.2f}%, волатильность {volatility_pct:.2f}%, новостной фон {news_score:.1f}. '
f'Action: {action}.' f'Действие: {action}.'
) )
return IndicatorPack( return IndicatorPack(
market=market, market=market,
@@ -194,7 +194,6 @@ class AiTradingBot:
'max_open_positions': state.max_open_positions, 'max_open_positions': state.max_open_positions,
'max_quote_per_trade': state.max_quote_per_trade, 'max_quote_per_trade': state.max_quote_per_trade,
'emergency_stop': state.emergency_stop, 'emergency_stop': state.emergency_stop,
'live_acknowledged': state.live_acknowledged,
} }
def _parse_candles(self, raw: dict[str, Any]) -> list[dict[str, float]]: def _parse_candles(self, raw: dict[str, Any]) -> list[dict[str, float]]: