From 8f362a137947d2ab91fec9327d8336bf73deeab1 Mon Sep 17 00:00:00 2001 From: rob Date: Sun, 8 Mar 2026 11:55:43 -0300 Subject: [PATCH] Add categorized indicator dropdown with expandable Patterns submenu - Group candlestick patterns under expandable "Patterns" category - Regular indicators shown directly in dropdown - Patterns submenu expands on hover with all CDL_* indicators - Fixed submenu positioning outside scrollable container - Tooltip shows pattern description and SVG when hovering items Co-Authored-By: Claude Opus 4.5 --- src/templates/new_indicator_popup.html | 213 +++++++++++++++++++++++-- 1 file changed, 199 insertions(+), 14 deletions(-) diff --git a/src/templates/new_indicator_popup.html b/src/templates/new_indicator_popup.html index ffbcc73..8668d1e 100644 --- a/src/templates/new_indicator_popup.html +++ b/src/templates/new_indicator_popup.html @@ -24,15 +24,24 @@ onfocus="showIndicatorDropdown()" oninput="filterIndicatorTypes()"> - + @@ -122,6 +131,19 @@
+ +
+ {% for i_type in indicator_types %} + {% if i_type.startswith('CDL_') %} +
+ {{i_type}} +
+ {% endif %} + {% endfor %} +
+