try to fix input dimentions

This commit is contained in:
Dobromir Popov
2025-07-13 23:41:47 +03:00
parent bcc13a5db3
commit ebf65494a8
7 changed files with 358 additions and 145 deletions

View File

@ -45,6 +45,10 @@ class DashboardComponentManager:
blocked = decision.get('blocked', False)
manual = decision.get('manual', False)
# FILTER OUT INVALID PRICES - Skip signals with price 0 or None
if price is None or price <= 0:
continue
# Determine signal style
if executed:
badge_class = "bg-success"