Skip to content

Commit 5ff74cb

Browse files
committed
swap colors
1 parent 03e7af1 commit 5ff74cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

notebooks/charts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,11 +1332,11 @@ def plot_regime_overlay(
13321332

13331333
# Regime → (color, alpha)
13341334
_REGIME_COLORS: dict[str, tuple[str, float]] = {
1335-
"TRENDING": (_GREEN, 0.15),
1336-
"RANGING": (_RED, 0.15),
1335+
"TRENDING": (_BLUE, 0.15),
1336+
"RANGING": (_AMBER, 0.15),
13371337
"TRANSITIONAL": ("#888888", 0.08),
1338-
"HIGH_VOL": (_AMBER, 0.15),
1339-
"LOW_VOL": (_BLUE, 0.12),
1338+
"HIGH_VOL": (_RED, 0.15),
1339+
"LOW_VOL": (_GREEN, 0.12),
13401340
}
13411341

13421342
fig, ax = plt.subplots(figsize=(16, 6))

0 commit comments

Comments
 (0)