Look for these in the logs:
💡 Signals found: 1-8 (was: 0)
🔇 Smart filter: 5-15 (was: 18-24)
🚫 No entry signal: 2-8 (was: 6-12)
📊 Market filter: 0-5 (normal)
💡 Signals found: 0 → Still blocked, check config
💡 Signals found: >15 → Too aggressive, watch quality
🔇 Smart filter: >20 → Volume filter still too strict
| Metric | Target | Warning | Critical | |——–|——–|———|———-| | Signals per cycle | 1-8 | 0 or >15 | Still 0 after 6hrs | | Smart filter % | 20-40% | >60% | >80% | | Markets passing | 15-20 | <10 | <5 |
| Metric | Good | Acceptable | Poor | |——–|——|————|——| | Win Rate | >55% | 45-55% | <40% | | Avg Win | >+1.5% | +1.0-1.5% | <+1.0% | | Avg Loss | <-1.5% | -1.5 to -2% | >-2% |
# In bot/nija_apex_strategy_v71.py, revert to Third Relaxation:
self.min_adx = 8 # was 6
self.volume_threshold = 0.1 # was 0.05
self.volume_min_threshold = 0.005 # was 0.001
self.min_trend_confirmation = 2 # was 1
self.candle_exclusion_seconds = 1 # was 0
# In bot/nija_apex_strategy_v71.py:
MIN_CONFIDENCE = 0.75 # was 0.50
# In bot/enhanced_entry_scoring.py:
self.min_score_threshold = 75 # was 50
Action: Increase MIN_CONFIDENCE to 0.60 (from 0.50)
MIN_CONFIDENCE = 0.60 # Increase quality slightly
Action: Further reduce volume_min_threshold
self.volume_min_threshold = 0.0005 # Allow ANY volume
Action: Increase volume_min_threshold slightly
self.volume_min_threshold = 0.002 # Require more volume
Action: Increase min_adx slightly
self.min_adx = 7 # Require slightly stronger trends
tail -100 /path/to/logs | grep "Signals found"
tail -100 /path/to/logs | grep "Smart filter"
tail -100 /path/to/logs | grep "No entry signal"
tail -100 /path/to/logs | grep "TRADE EXECUTED"
tail -100 /path/to/logs | grep "Entry score"
tail -100 /path/to/logs | grep "Confidence"
tail -500 /path/to/logs | grep "PROFIT\|LOSS"
✅ Signals generating (>0 per cycle) ✅ Trades executing (>10 in 24hrs) ✅ No critical errors ✅ Balance stable or growing
✅ Win rate >40% ✅ Net P&L positive or break-even ✅ Filter settings stabilized ✅ No further relaxations needed
✅ Win rate >50% ✅ Consistent profitability ✅ Balance growing ✅ System operating smoothly
If any CRITICAL issues:
Last Updated: January 29, 2026 Status: DEPLOYED - Active Monitoring Phase Next Review: After 6 hours or 10+ trades