Stage 07.4.3.1 — trend strategy stabilization

This commit is contained in:
2026-05-01 18:25:27 +03:00
parent ec8e53c416
commit 38c8686a9b
8 changed files with 735 additions and 49 deletions

View File

@@ -88,6 +88,7 @@
✔ стратегия
✔ риск
✔ символ
✔ leverage (default x2)
## 07.3 — Analysis Cycle
✔ run_cycle()
@@ -122,8 +123,23 @@
### 07.4.2
✔ Strategy Registry
### 07.4.3
⏳ Trend Strategy
### 07.4.3 — Trend Strategy
✔ signal generation
✔ repeat confirmation logic
✔ confidence scoring
✔ UI integration
### 07.4.3.1 — UI Optimization
✔ compact auto screen
✔ state-based rendering (OFF / RUNNING / OBSERVING)
✔ minimal trading layout
✔ duplicate info removal
### 07.4.3.2 — Engine Decoupling (NEXT)
⏳ split analysis / UI refresh
⏳ fast price polling (1s)
⏳ slow UI updates (event-driven / 60s)
⏳ anti-flood protection
### 07.4.4
⏳ Grid Strategy
@@ -166,5 +182,5 @@
## Текущий статус проекта
👉 Завершён: 07.4.1
👉 Следующий шаг: 07.4.2 Strategy Registry
👉 Завершён: 07.4.3.1
👉 Следующий шаг: 07.4.3.2 — Engine Decoupling + Price Polling

View File

@@ -16,7 +16,7 @@
✔ стратегия
✔ риск
✔ символ
presets UI
leverage (default x2)
---
@@ -86,8 +86,38 @@
### 07.4.2
✔ registry стратегий
### 07.4.3
⏳ Trend strategy
---
### 07.4.3 — Trend Strategy
✔ генерация сигналов
✔ repeat tracking
✔ confidence logic
✔ decision state (WAITING / CONFIRMING / READY / BLOCKED)
---
### 07.4.3.1 — UI Optimization
✔ компактный экран автоторговли
✔ разделение OFF / ACTIVE / OBSERVING
✔ убраны дубли (WAITING / HOLD и т.д.)
✔ оптимизация под mobile
---
### 07.4.3.2 — Engine Decoupling (NEXT)
⏳ разделение:
- analysis loop (частый)
- UI loop (редкий)
⏳ price polling:
- быстрый (1s)
- независимый от UI
⏳ Telegram:
- обновление только при изменении состояния
- защита от flood control
---
### 07.4.4
⏳ Grid strategy
@@ -99,5 +129,5 @@
## Текущий статус
👉 Завершён: 07.4.1
👉 Следующий шаг: 07.4.2
👉 Завершён: 07.4.3.1
👉 Следующий шаг: 07.4.3.2 — Decoupling + Price Polling