acttrader-charts 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -187,6 +187,10 @@ chart.on('tradeLevelDrag', ({ label, newPrice, bracketType, isFullscreen }) => {
187
187
  });
188
188
  ```
189
189
 
190
+ **Off-viewport level indicators:**
191
+
192
+ When a trade level's entry, SL, or TP price lies outside the visible price range, a small pill (`▲ N` / `▼ N`) appears near the right edge of the chart showing the count of off-screen markers per direction. Clicking the pill smooth-scrolls the nearest off-viewport marker to the vertical center of the chart. This requires no configuration — it activates automatically whenever levels are present.
193
+
190
194
  **Drag constraints (enforced live):**
191
195
 
192
196
  | Order side | Stop Loss | Take Profit |
@@ -229,6 +233,7 @@ When `enableTrading` is on and live BID/ASK data is streaming, hovering / activa
229
233
  | `minLots` | | `1` | Default lot size in the trade popover |
230
234
  | `tickActivityMs` | | `30000` | ms the stream dot stays green after last tick |
231
235
  | `maxCandles` | | `200` | Max bars fetched per data-load request |
236
+ | `prefetchThreshold` | | `80` | Bars from start of data at which historical fetch triggers (min 20) |
232
237
  | `mobileBarDivisor` | | `2` | Divide desktop visible bar count on touch devices (`2`, `3`, or `4`) |
233
238
  | `targetCandleWidth` | | `10` | Target px width per candle for auto-calculating initial bar count |
234
239
  | `durationTimeframeMap` | | *(see below)* | Override duration → timeframe pairings |
@@ -245,6 +250,11 @@ When `enableTrading` is on and live BID/ASK data is streaming, hovering / activa
245
250
  | `tradeDisplayFilter` | | `"all"` | Which TFC levels are visible: `"all"` · `"positions"` · `"orders"` · `"none"` |
246
251
  | `positionRenderStyle` | | auto | Force position render style: `"line"` or `"dot"` |
247
252
  | `hideLevelConfirmCancel` | | `false` | Hide on-canvas ✓/✗ confirm-cancel buttons for TFC level edits |
253
+ | `tfcEnabled` | | `true` | Enable the TFC toggle button in the top bar. When `false`, TFC is completely disabled — the toggle button is hidden and all trade levels, draft orders, and the floating trade button are suppressed |
254
+ | `levelClusteringEnabled` | | `true` | Enable trade-level fan-out clustering; overlapping levels group into expandable badges |
255
+ | `clusterThresholdDistance` | | `20` | Pixel proximity threshold for clustering (only when `levelClusteringEnabled` is `true`) |
256
+ | `hideSymbolAndTick` | | `false` | Hide the symbol name, OHLC strip, and tick-activity dot overlay |
257
+ | `showBottomBar` | | `false` | Show the bottom duration-selector bar |
248
258
  | `hideQtyButton` | | `false` | Hide the floating Qty input overlay on draft orders |
249
259
  | `tradesThresholdForHorizontalLine` | | `2` | Level count above which render auto-switches to `"dot"` mode |
250
260
  | `canvasColors` | | — | Per-theme canvas background color overrides (persisted from Settings dialog) |
@@ -477,7 +487,7 @@ chart.setLoading(loading: boolean): this
477
487
  chart.setSeries(series: SeriesType): this
478
488
  chart.setTheme('dark' | 'light'): this
479
489
  chart.setTimeframe(tf: Timeframe): this // change timeframe and reload data
480
- chart.setThemeOverrides(overrides: ChartConfig['themeOverrides']): this // update per-theme color overrides at runtime
490
+ chart.setThemeOverrides(overrides: ThemeOverrides): this // update per-theme color overrides at runtime
481
491
  chart.setVolume(show: boolean): this
482
492
  ```
483
493
 
@@ -504,6 +514,7 @@ chart.removeLevelByLabel(label: string): this
504
514
  chart.cancelCurrentEdit(): this // cancel the active draft order or in-progress level edit; no-op when nothing is active
505
515
  chart.addLevelBracket(label: string, bracketType: 'sl' | 'tp'): this // auto-place a SL or TP bracket at a default offset; emits tradeLevelBracketActivated with the computed price
506
516
  chart.setDraftBracketPnl(bracketType: 'sl' | 'tp', pnlText: string | null): this // set estimated P&L text on a draft order bracket line; pass null to clear
517
+ chart.setTfcActive(enabled: boolean): this // toggle TFC on/off at runtime; hides/shows all trade levels, draft orders, and floating trade button; fires tfcToggle event
507
518
  ```
508
519
 
509
520
  ### Trade Button
@@ -680,6 +691,7 @@ chart.on('tradeLevelEditOpen', ({ label, type, price, side, stopLossPrice, takeP
680
691
  chart.on('tradeLevelConfirmed',({ label, type, isFullscreen }) => {});
681
692
  chart.on('draftInitiated', ({ side, price, orderType, isFullscreen }) => {}); // new draft order shown — open buy/sell form
682
693
  chart.on('draftCancelled', ({ label, isFullscreen }) => {}); // draft order dismissed without confirming
694
+ chart.on('tfcToggle', ({ enabled }) => {}); // TFC toggled on or off via top bar button or setTfcActive()
683
695
  chart.on('tradeLevelDragEnd', ({ label, type, newPrice, data }) => {}); // deprecated — use tradeLevelEdit
684
696
  chart.on('tradeLevelBracketDrag', ({ label, bracketType, newPrice, data }) => {}); // deprecated
685
697
 
@@ -189,6 +189,8 @@ interface TopBarLabels {
189
189
  exitFullscreenTitle: string;
190
190
  /** Tooltip on the chart-settings button. */
191
191
  settingsTitle: string;
192
+ /** Tooltip on the TFC (Trade from Charts) toggle button. */
193
+ tfcToggleTitle: string;
192
194
  }
193
195
  interface BottomBarLabels {
194
196
  /** Duration selector button labels. */
@@ -528,6 +530,14 @@ interface DataLoaderParams {
528
530
  end: Date;
529
531
  interval: string;
530
532
  }
533
+ /**
534
+ * Per-theme deep-partial color overrides applied on top of the built-in
535
+ * dark / light themes. Only the keys you supply are replaced.
536
+ */
537
+ type ThemeOverrides = {
538
+ dark?: DeepPartialChartTheme;
539
+ light?: DeepPartialChartTheme;
540
+ };
531
541
  interface ChartConfig {
532
542
  container: HTMLElement;
533
543
  theme?: Theme;
@@ -610,10 +620,7 @@ interface ChartConfig {
610
620
  * light: { background: 'var(--sidebar-bg-light)' },
611
621
  * }
612
622
  */
613
- themeOverrides?: {
614
- dark?: DeepPartialChartTheme;
615
- light?: DeepPartialChartTheme;
616
- };
623
+ themeOverrides?: ThemeOverrides;
617
624
  /**
618
625
  * Optional per-component UI configuration overrides (font sizes, icon
619
626
  * sizes, spacing). Only the keys you provide are overridden; all others
@@ -645,6 +652,12 @@ interface ChartConfig {
645
652
  * of bars. Default: 200.
646
653
  */
647
654
  maxCandles?: number;
655
+ /**
656
+ * How close (in bars) the viewport must be to the start of loaded data
657
+ * before a historical fetch is triggered. Higher values prefetch earlier.
658
+ * Clamped to a minimum of 20. Default: 80 (one screen-width of bars).
659
+ */
660
+ prefetchThreshold?: number;
648
661
  /**
649
662
  * On touch/mobile devices, the initial visible bar count is
650
663
  * `DEFAULT_VISIBLE_BARS / mobileBarDivisor`. Accepted values: 2, 3, 4.
@@ -761,6 +774,21 @@ interface ChartConfig {
761
774
  * }
762
775
  */
763
776
  aggregateFrom?: Partial<Record<Timeframe, Timeframe>>;
777
+ /**
778
+ * Enable trade-level fan-out clustering. When `true`, overlapping
779
+ * trade levels whose Y pixel positions are within `clusterThresholdDistance`
780
+ * pixels are grouped into a single expandable cluster badge.
781
+ * Default: `true`.
782
+ */
783
+ levelClusteringEnabled?: boolean;
784
+ /**
785
+ * Pixel proximity threshold for level clustering. Levels whose Y pixel
786
+ * positions are within this distance get grouped into a cluster.
787
+ * Only effective when `levelClusteringEnabled` is `true` (default). Set to
788
+ * a higher value for more aggressive grouping, lower for tighter grouping.
789
+ * Default: `20`.
790
+ */
791
+ clusterThresholdDistance?: number;
764
792
  /**
765
793
  * Hide the ✓ / ✗ confirm-cancel buttons on trade levels that have pending changes.
766
794
  * Use when the host app provides its own native confirm/cancel controls.
@@ -772,11 +800,30 @@ interface ChartConfig {
772
800
  * Default: `false` — the toggle is hidden.
773
801
  */
774
802
  enableThemeToggle?: boolean;
803
+ /**
804
+ * Hide the symbol name, OHLC strip, and tick-activity dot overlay
805
+ * shown in the top-left corner of the chart canvas.
806
+ * Default: `false` (overlay is visible).
807
+ */
808
+ hideSymbolAndTick?: boolean;
809
+ /**
810
+ * Show the bottom duration-selector bar.
811
+ * Default: `false` (bar is hidden).
812
+ */
813
+ showBottomBar?: boolean;
775
814
  /**
776
815
  * @deprecated DraftOrderQtyInput has been removed. This option is a no-op.
777
816
  * Accepted for backward compatibility only.
778
817
  */
779
818
  hideQtyButton?: boolean;
819
+ /**
820
+ * Enable TFC (Trade from Charts) functionality.
821
+ * When `false`, the TFC toggle button is never shown and all trade levels,
822
+ * trade button, and trade popover are completely disabled.
823
+ * When `true` (default), a TFC toggle button appears in the top bar
824
+ * allowing the user to enable/disable TFC at runtime.
825
+ */
826
+ tfcEnabled?: boolean;
780
827
  }
781
828
  interface IndicatorResult {
782
829
  index: number;
@@ -896,6 +943,8 @@ interface ChartState {
896
943
  dark?: Partial<CanvasColorSettings>;
897
944
  light?: Partial<CanvasColorSettings>;
898
945
  };
946
+ /** Whether TFC (Trade from Charts) is currently active (user toggle state). */
947
+ tfcEnabled?: boolean;
899
948
  }
900
949
  interface CrosshairPosition {
901
950
  x: number;
@@ -1032,6 +1081,10 @@ type ChartEventMap = {
1032
1081
  price: number;
1033
1082
  isFullscreen: boolean;
1034
1083
  };
1084
+ /** Emitted when TFC (Trade from Charts) is toggled on or off via the top bar button or API. */
1085
+ tfcToggle: {
1086
+ enabled: boolean;
1087
+ };
1035
1088
  /** Emitted when the user confirms all edits to a level — replaces separate tradeLevelDragEnd / tradeLevelBracketDrag events. */
1036
1089
  tradeLevelEdit: {
1037
1090
  label: string;
@@ -1240,4 +1293,4 @@ declare class MACD implements IIndicator {
1240
1293
  render(ctx: CanvasRenderingContext2D, results: IndicatorResult[], scale: ScaleManager, viewport: Viewport, paneHeight: number, rangeOverride?: PriceRange): void;
1241
1294
  }
1242
1295
 
1243
- export { type IndicatorOverlayUiConfig as $, type AnyLevel as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_INDICATOR_OVERLAY_CONFIG as E, DEFAULT_LABELS as F, DEFAULT_PRICE_AXIS_CONFIG as G, DEFAULT_TIME_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TOP_BAR_CONFIG as J, DEFAULT_TRADE_BUTTON_CONFIG as K, DEFAULT_UI_CONFIG as L, type DataLoaderParams as M, type DeepPartial$1 as N, type OHLCVBar as O, type PriceRange as P, type DeepPartialChartTheme as Q, type DialogLabels as R, type SeriesType as S, type Timeframe as T, type DrawingToolbarColors as U, type Viewport as V, type DrawingToolbarLabels as W, type DrawingToolbarUiConfig as X, type Duration as Y, EMA as Z, type IndicatorOverlayColors as _, type ChartEventMap as a, type IndicatorParams as a0, type IndicatorResult as a1, type IndicatorStateEntry as a2, LIGHT_THEME as a3, MACD as a4, type OhlcLabels as a5, type OrderSubmit as a6, type Padding as a7, type PendingOrderLevel as a8, type PositionLevel as a9, type PositionRenderStyle as aa, type PriceAxisUiConfig as ab, RSI as ac, SMA as ad, type Theme as ae, type TimeAxisUiConfig as af, type TopBarColors as ag, type TopBarLabels as ah, type TopBarUiConfig as ai, type TradeButtonUiConfig as aj, type TradeDisplayFilter as ak, type TradeLabels as al, type TradeLevel as am, type TradeLevelColors as an, type TradePanelColors as ao, type UiConfig as ap, deepMergeTheme as aq, resolveCssVarsInTheme as ar, resolveLabels as as, resolveUiConfig as at, type PriceSource as au, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type DrawingPoint as f, ScaleManager as g, type DrawingHandle as h, type SerializedDrawing as i, type Tick as j, type StreamStatus as k, type ActiveIndicatorState as l, type BottomBarColors as m, type BottomBarLabels as n, type BottomBarUiConfig as o, type CanvasColorSettings as p, type ChartLabels as q, type ChartMiscLabels as r, type ChartTheme as s, type ChartThemeUi as t, type CrosshairPosition as u, type CrosshairUiConfig as v, DARK_THEME as w, DEFAULT_BOTTOM_BAR_CONFIG as x, DEFAULT_CROSSHAIR_CONFIG as y, DEFAULT_DRAWING_TOOLBAR_CONFIG as z };
1296
+ export { type IndicatorOverlayUiConfig as $, type AnyLevel as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_INDICATOR_OVERLAY_CONFIG as E, DEFAULT_LABELS as F, DEFAULT_PRICE_AXIS_CONFIG as G, DEFAULT_TIME_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TOP_BAR_CONFIG as J, DEFAULT_TRADE_BUTTON_CONFIG as K, DEFAULT_UI_CONFIG as L, type DataLoaderParams as M, type DeepPartial$1 as N, type OHLCVBar as O, type PriceRange as P, type DeepPartialChartTheme as Q, type DialogLabels as R, type SeriesType as S, type Timeframe as T, type DrawingToolbarColors as U, type Viewport as V, type DrawingToolbarLabels as W, type DrawingToolbarUiConfig as X, type Duration as Y, EMA as Z, type IndicatorOverlayColors as _, type ChartEventMap as a, type IndicatorParams as a0, type IndicatorResult as a1, type IndicatorStateEntry as a2, LIGHT_THEME as a3, MACD as a4, type OhlcLabels as a5, type OrderSubmit as a6, type Padding as a7, type PendingOrderLevel as a8, type PositionLevel as a9, type PositionRenderStyle as aa, type PriceAxisUiConfig as ab, RSI as ac, SMA as ad, type Theme as ae, type ThemeOverrides as af, type TimeAxisUiConfig as ag, type TopBarColors as ah, type TopBarLabels as ai, type TopBarUiConfig as aj, type TradeButtonUiConfig as ak, type TradeDisplayFilter as al, type TradeLabels as am, type TradeLevel as an, type TradeLevelColors as ao, type TradePanelColors as ap, type UiConfig as aq, deepMergeTheme as ar, resolveCssVarsInTheme as as, resolveLabels as at, resolveUiConfig as au, type PriceSource as av, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type DrawingPoint as f, ScaleManager as g, type DrawingHandle as h, type SerializedDrawing as i, type Tick as j, type StreamStatus as k, type ActiveIndicatorState as l, type BottomBarColors as m, type BottomBarLabels as n, type BottomBarUiConfig as o, type CanvasColorSettings as p, type ChartLabels as q, type ChartMiscLabels as r, type ChartTheme as s, type ChartThemeUi as t, type CrosshairPosition as u, type CrosshairUiConfig as v, DARK_THEME as w, DEFAULT_BOTTOM_BAR_CONFIG as x, DEFAULT_CROSSHAIR_CONFIG as y, DEFAULT_DRAWING_TOOLBAR_CONFIG as z };
@@ -189,6 +189,8 @@ interface TopBarLabels {
189
189
  exitFullscreenTitle: string;
190
190
  /** Tooltip on the chart-settings button. */
191
191
  settingsTitle: string;
192
+ /** Tooltip on the TFC (Trade from Charts) toggle button. */
193
+ tfcToggleTitle: string;
192
194
  }
193
195
  interface BottomBarLabels {
194
196
  /** Duration selector button labels. */
@@ -528,6 +530,14 @@ interface DataLoaderParams {
528
530
  end: Date;
529
531
  interval: string;
530
532
  }
533
+ /**
534
+ * Per-theme deep-partial color overrides applied on top of the built-in
535
+ * dark / light themes. Only the keys you supply are replaced.
536
+ */
537
+ type ThemeOverrides = {
538
+ dark?: DeepPartialChartTheme;
539
+ light?: DeepPartialChartTheme;
540
+ };
531
541
  interface ChartConfig {
532
542
  container: HTMLElement;
533
543
  theme?: Theme;
@@ -610,10 +620,7 @@ interface ChartConfig {
610
620
  * light: { background: 'var(--sidebar-bg-light)' },
611
621
  * }
612
622
  */
613
- themeOverrides?: {
614
- dark?: DeepPartialChartTheme;
615
- light?: DeepPartialChartTheme;
616
- };
623
+ themeOverrides?: ThemeOverrides;
617
624
  /**
618
625
  * Optional per-component UI configuration overrides (font sizes, icon
619
626
  * sizes, spacing). Only the keys you provide are overridden; all others
@@ -645,6 +652,12 @@ interface ChartConfig {
645
652
  * of bars. Default: 200.
646
653
  */
647
654
  maxCandles?: number;
655
+ /**
656
+ * How close (in bars) the viewport must be to the start of loaded data
657
+ * before a historical fetch is triggered. Higher values prefetch earlier.
658
+ * Clamped to a minimum of 20. Default: 80 (one screen-width of bars).
659
+ */
660
+ prefetchThreshold?: number;
648
661
  /**
649
662
  * On touch/mobile devices, the initial visible bar count is
650
663
  * `DEFAULT_VISIBLE_BARS / mobileBarDivisor`. Accepted values: 2, 3, 4.
@@ -761,6 +774,21 @@ interface ChartConfig {
761
774
  * }
762
775
  */
763
776
  aggregateFrom?: Partial<Record<Timeframe, Timeframe>>;
777
+ /**
778
+ * Enable trade-level fan-out clustering. When `true`, overlapping
779
+ * trade levels whose Y pixel positions are within `clusterThresholdDistance`
780
+ * pixels are grouped into a single expandable cluster badge.
781
+ * Default: `true`.
782
+ */
783
+ levelClusteringEnabled?: boolean;
784
+ /**
785
+ * Pixel proximity threshold for level clustering. Levels whose Y pixel
786
+ * positions are within this distance get grouped into a cluster.
787
+ * Only effective when `levelClusteringEnabled` is `true` (default). Set to
788
+ * a higher value for more aggressive grouping, lower for tighter grouping.
789
+ * Default: `20`.
790
+ */
791
+ clusterThresholdDistance?: number;
764
792
  /**
765
793
  * Hide the ✓ / ✗ confirm-cancel buttons on trade levels that have pending changes.
766
794
  * Use when the host app provides its own native confirm/cancel controls.
@@ -772,11 +800,30 @@ interface ChartConfig {
772
800
  * Default: `false` — the toggle is hidden.
773
801
  */
774
802
  enableThemeToggle?: boolean;
803
+ /**
804
+ * Hide the symbol name, OHLC strip, and tick-activity dot overlay
805
+ * shown in the top-left corner of the chart canvas.
806
+ * Default: `false` (overlay is visible).
807
+ */
808
+ hideSymbolAndTick?: boolean;
809
+ /**
810
+ * Show the bottom duration-selector bar.
811
+ * Default: `false` (bar is hidden).
812
+ */
813
+ showBottomBar?: boolean;
775
814
  /**
776
815
  * @deprecated DraftOrderQtyInput has been removed. This option is a no-op.
777
816
  * Accepted for backward compatibility only.
778
817
  */
779
818
  hideQtyButton?: boolean;
819
+ /**
820
+ * Enable TFC (Trade from Charts) functionality.
821
+ * When `false`, the TFC toggle button is never shown and all trade levels,
822
+ * trade button, and trade popover are completely disabled.
823
+ * When `true` (default), a TFC toggle button appears in the top bar
824
+ * allowing the user to enable/disable TFC at runtime.
825
+ */
826
+ tfcEnabled?: boolean;
780
827
  }
781
828
  interface IndicatorResult {
782
829
  index: number;
@@ -896,6 +943,8 @@ interface ChartState {
896
943
  dark?: Partial<CanvasColorSettings>;
897
944
  light?: Partial<CanvasColorSettings>;
898
945
  };
946
+ /** Whether TFC (Trade from Charts) is currently active (user toggle state). */
947
+ tfcEnabled?: boolean;
899
948
  }
900
949
  interface CrosshairPosition {
901
950
  x: number;
@@ -1032,6 +1081,10 @@ type ChartEventMap = {
1032
1081
  price: number;
1033
1082
  isFullscreen: boolean;
1034
1083
  };
1084
+ /** Emitted when TFC (Trade from Charts) is toggled on or off via the top bar button or API. */
1085
+ tfcToggle: {
1086
+ enabled: boolean;
1087
+ };
1035
1088
  /** Emitted when the user confirms all edits to a level — replaces separate tradeLevelDragEnd / tradeLevelBracketDrag events. */
1036
1089
  tradeLevelEdit: {
1037
1090
  label: string;
@@ -1240,4 +1293,4 @@ declare class MACD implements IIndicator {
1240
1293
  render(ctx: CanvasRenderingContext2D, results: IndicatorResult[], scale: ScaleManager, viewport: Viewport, paneHeight: number, rangeOverride?: PriceRange): void;
1241
1294
  }
1242
1295
 
1243
- export { type IndicatorOverlayUiConfig as $, type AnyLevel as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_INDICATOR_OVERLAY_CONFIG as E, DEFAULT_LABELS as F, DEFAULT_PRICE_AXIS_CONFIG as G, DEFAULT_TIME_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TOP_BAR_CONFIG as J, DEFAULT_TRADE_BUTTON_CONFIG as K, DEFAULT_UI_CONFIG as L, type DataLoaderParams as M, type DeepPartial$1 as N, type OHLCVBar as O, type PriceRange as P, type DeepPartialChartTheme as Q, type DialogLabels as R, type SeriesType as S, type Timeframe as T, type DrawingToolbarColors as U, type Viewport as V, type DrawingToolbarLabels as W, type DrawingToolbarUiConfig as X, type Duration as Y, EMA as Z, type IndicatorOverlayColors as _, type ChartEventMap as a, type IndicatorParams as a0, type IndicatorResult as a1, type IndicatorStateEntry as a2, LIGHT_THEME as a3, MACD as a4, type OhlcLabels as a5, type OrderSubmit as a6, type Padding as a7, type PendingOrderLevel as a8, type PositionLevel as a9, type PositionRenderStyle as aa, type PriceAxisUiConfig as ab, RSI as ac, SMA as ad, type Theme as ae, type TimeAxisUiConfig as af, type TopBarColors as ag, type TopBarLabels as ah, type TopBarUiConfig as ai, type TradeButtonUiConfig as aj, type TradeDisplayFilter as ak, type TradeLabels as al, type TradeLevel as am, type TradeLevelColors as an, type TradePanelColors as ao, type UiConfig as ap, deepMergeTheme as aq, resolveCssVarsInTheme as ar, resolveLabels as as, resolveUiConfig as at, type PriceSource as au, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type DrawingPoint as f, ScaleManager as g, type DrawingHandle as h, type SerializedDrawing as i, type Tick as j, type StreamStatus as k, type ActiveIndicatorState as l, type BottomBarColors as m, type BottomBarLabels as n, type BottomBarUiConfig as o, type CanvasColorSettings as p, type ChartLabels as q, type ChartMiscLabels as r, type ChartTheme as s, type ChartThemeUi as t, type CrosshairPosition as u, type CrosshairUiConfig as v, DARK_THEME as w, DEFAULT_BOTTOM_BAR_CONFIG as x, DEFAULT_CROSSHAIR_CONFIG as y, DEFAULT_DRAWING_TOOLBAR_CONFIG as z };
1296
+ export { type IndicatorOverlayUiConfig as $, type AnyLevel as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_INDICATOR_OVERLAY_CONFIG as E, DEFAULT_LABELS as F, DEFAULT_PRICE_AXIS_CONFIG as G, DEFAULT_TIME_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TOP_BAR_CONFIG as J, DEFAULT_TRADE_BUTTON_CONFIG as K, DEFAULT_UI_CONFIG as L, type DataLoaderParams as M, type DeepPartial$1 as N, type OHLCVBar as O, type PriceRange as P, type DeepPartialChartTheme as Q, type DialogLabels as R, type SeriesType as S, type Timeframe as T, type DrawingToolbarColors as U, type Viewport as V, type DrawingToolbarLabels as W, type DrawingToolbarUiConfig as X, type Duration as Y, EMA as Z, type IndicatorOverlayColors as _, type ChartEventMap as a, type IndicatorParams as a0, type IndicatorResult as a1, type IndicatorStateEntry as a2, LIGHT_THEME as a3, MACD as a4, type OhlcLabels as a5, type OrderSubmit as a6, type Padding as a7, type PendingOrderLevel as a8, type PositionLevel as a9, type PositionRenderStyle as aa, type PriceAxisUiConfig as ab, RSI as ac, SMA as ad, type Theme as ae, type ThemeOverrides as af, type TimeAxisUiConfig as ag, type TopBarColors as ah, type TopBarLabels as ai, type TopBarUiConfig as aj, type TradeButtonUiConfig as ak, type TradeDisplayFilter as al, type TradeLabels as am, type TradeLevel as an, type TradeLevelColors as ao, type TradePanelColors as ap, type UiConfig as aq, deepMergeTheme as ar, resolveCssVarsInTheme as as, resolveLabels as at, resolveUiConfig as au, type PriceSource as av, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type DrawingPoint as f, ScaleManager as g, type DrawingHandle as h, type SerializedDrawing as i, type Tick as j, type StreamStatus as k, type ActiveIndicatorState as l, type BottomBarColors as m, type BottomBarLabels as n, type BottomBarUiConfig as o, type CanvasColorSettings as p, type ChartLabels as q, type ChartMiscLabels as r, type ChartTheme as s, type ChartThemeUi as t, type CrosshairPosition as u, type CrosshairUiConfig as v, DARK_THEME as w, DEFAULT_BOTTOM_BAR_CONFIG as x, DEFAULT_CROSSHAIR_CONFIG as y, DEFAULT_DRAWING_TOOLBAR_CONFIG as z };