From cc5f842fc7f03e2a1d4fb5833c42800c3fb8da06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 25 May 2026 05:18:52 +0200 Subject: [PATCH] fix(plot): switch raw direction/weight to bar with steelblue color Raw discrete signals (direction +/-1/0, weight at pivots) are sparse and read better as bars than lines. Steelblue contrasts with the orange smoothed lines for clearer visual separation. --- quickadapter/user_data/strategies/QuickAdapterV3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickadapter/user_data/strategies/QuickAdapterV3.py b/quickadapter/user_data/strategies/QuickAdapterV3.py index 4e19c74..c0f122f 100644 --- a/quickadapter/user_data/strategies/QuickAdapterV3.py +++ b/quickadapter/user_data/strategies/QuickAdapterV3.py @@ -211,14 +211,14 @@ class QuickAdapterV3(IStrategy): EXTREMA_COLUMN: {"color": "orange", "type": "line"}, }, "direction": { - EXTREMA_DIRECTION_COLUMN: {"color": "wheat", "type": "line"}, + EXTREMA_DIRECTION_COLUMN: {"color": "steelblue", "type": "bar"}, EXTREMA_DIRECTION_SMOOTHED_COLUMN: { "color": "orange", "type": "line", }, }, "weight": { - EXTREMA_WEIGHT_COLUMN: {"color": "wheat", "type": "line"}, + EXTREMA_WEIGHT_COLUMN: {"color": "steelblue", "type": "bar"}, EXTREMA_WEIGHT_SMOOTHED_COLUMN: { "color": "orange", "type": "line", -- 2.53.0