fix: sensitive signal thresholds in Brief + lower Decio risk filter (75%→70%)

- RSI threshold: 35/65 → 38/62
- Funding: 0.001 → 0.0001 (any positive = bearish signal)
- Long ratio: 48-52 → 47-53 (tighter)
- MACD: 10 → 5 (more sensitive)
- BTC dominance: 57.5 → 55
- 4h change: 1.5% → 1%
- Decio risk filter: 75% → 70% to allow 74% signals through
- Fix UnboundLocalError on change_4h (defined earlier in run())
This commit is contained in:
Hermes
2026-05-17 17:10:39 +00:00
parent 50960bab21
commit 738490ea4f
2 changed files with 25 additions and 19 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ class DecioAgent:
# ── CORE RULE: confidence < 75% → always HOLD ─────────────────────────
def _risk_filter(self, confidence, signal):
"""Décio is a mathematician: no confidence ≥75%, no operation."""
return confidence < 75 or signal not in ("ALTA", "BAIXA")
"""Décio is a mathematician: no confidence ≥70%, no operation."""
return confidence < 70 or signal not in ("ALTA", "BAIXA")
# ── Stop Loss / Take Profit ────────────────────────────────────────────────
def _calc_levels(self, price, action):