]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
fix(plot): switch raw direction/weight to bar with steelblue color
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 25 May 2026 03:18:52 +0000 (05:18 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 25 May 2026 03:18:52 +0000 (05:18 +0200)
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

index 4e19c742231381b9aa2dd109b5f3b2da87ceeac1..c0f122f798cd6b9af4a9a019da11a6f9ca18f551 100644 (file)
@@ -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",