07.4.4.1.6 — Signal Aging & Runtime Expiration

This commit is contained in:
2026-05-11 13:33:21 +03:00
parent e17f847603
commit fe33e0c026
9 changed files with 491 additions and 6 deletions

View File

@@ -125,4 +125,16 @@ class AutoTradeState:
entry_block_reason: str | None = None
# человекочитаемое объяснение причины не входа
entry_block_message: str | None = None
entry_block_message: str | None = None
# время последнего обновления сигнала, monotonic timestamp
signal_updated_at: float | None = None
# время последнего обновления market analysis, monotonic timestamp
market_analysis_updated_at: float | None = None
# причина runtime expiration
runtime_expired_reason: str | None = None
# человекочитаемое сообщение runtime expiration
runtime_expired_message: str | None = None