try to fix input dimentions
This commit is contained in:
@ -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"
|
||||
|
Reference in New Issue
Block a user