From: Jérôme Benoit Date: Mon, 25 May 2026 03:18:52 +0000 (+0200) Subject: fix(plot): switch raw direction/weight to bar with steelblue color X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=cc5f842fc7f03e2a1d4fb5833c42800c3fb8da06;p=freqai-strategies.git 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. --- 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",