Redesign indicators panel: dynamic catalog, multi-instance, chart legend

- Build indicator list dynamically from class getMetadata() instead of hardcoded array
- Remove checkboxes; single-click previews config, double-click adds to chart
- Support multiple instances of same indicator type (unique IDs)
- Add TradingView-style column legend overlay on chart (top-left)
- Recalculate indicators when historical data is prefetched on scroll
- Make indicator list and config panels scrollable (hidden scrollbars)
- Remove AVAILABLE_INDICATORS from strategies/config.js
This commit is contained in:
BTC Bot
2026-02-24 11:21:30 +01:00
parent 610911bca0
commit 06b2a4eac4
13 changed files with 558 additions and 155 deletions

View File

@ -27,6 +27,7 @@ export class BollingerBandsIndicator extends BaseIndicator {
getMetadata() {
return {
name: 'Bollinger Bands',
description: 'Volatility bands around a moving average',
inputs: [
{ name: 'period', label: 'Period', type: 'number', default: 20, min: 1, max: 100 },
{ name: 'stdDev', label: 'Std Dev', type: 'number', default: 2, min: 0.5, max: 5, step: 0.5 }