acttrader-charts 1.0.21 → 1.1.0
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 +5 -2
- package/dist/{MACD-DGFPNwy9.d.cts → MACD-BgCuLbX_.d.cts} +70 -5
- package/dist/{MACD-DGFPNwy9.d.ts → MACD-BgCuLbX_.d.ts} +70 -5
- package/dist/index.cjs +1749 -555
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +179 -75
- package/dist/index.d.ts +179 -75
- package/dist/index.js +1747 -553
- package/dist/index.js.map +1 -1
- package/dist/indicators/index.d.cts +2 -2
- package/dist/indicators/index.d.ts +2 -2
- package/dist/webview/chart.html +67 -67
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -280,17 +280,20 @@ When `enableTrading` is on and live BID/ASK data is streaming, hovering / activa
|
|
|
280
280
|
| `tickClosePriceSource` | | `"bid"` | Which quote side drives live tick close/high/low (`"bid"` or `"ask"`) |
|
|
281
281
|
| `showBidAskLines` | | `false` | Show both bid and ask as dashed lines during a live stream |
|
|
282
282
|
| `showActLogo` | | `false` | Show the ACT watermark logo in the bottom-left corner |
|
|
283
|
-
| `showCandleCountdown` | | `true` | Show countdown timer on the live candle |
|
|
283
|
+
| `showCandleCountdown` | | `true` | Show countdown timer on the live candle (time axis) |
|
|
284
284
|
| `candleCountdownTimeframes` | | intraday only | Timeframes where the countdown appears; `'all'` or `Timeframe[]` |
|
|
285
|
+
| `showPriceAxisCountdown` | | `false` | Show candle countdown timer on the right price axis, just below the live price tag. Honours `candleCountdownTimeframes`. Toggleable from the Settings dialog (Appearance tab). |
|
|
285
286
|
| `maxSubPanes` | | `3` | Max simultaneous oscillator sub-panes |
|
|
286
287
|
| `tradeDisplayFilter` | | `"all"` | Which TFC levels are visible: `"all"` · `"positions"` · `"orders"` · `"none"` |
|
|
287
288
|
| `positionRenderStyle` | | auto | Force position render style: `"line"` or `"dot"` |
|
|
288
289
|
| `hideLevelConfirmCancel` | | `false` | Hide on-canvas ✓/✗ confirm-cancel buttons for TFC level edits |
|
|
290
|
+
| `showTradeLevelsAlways` | | `false` | Always render SL/TP bracket lines + price pills, even when the parent level is not hovered or selected. The close (×) button stays hover-only so the chart isn't cluttered. Toggleable from the Settings dialog (Trading tab). Persisted in `localStorage`. |
|
|
289
291
|
| `tradeLevelButtonScale` | | `1` | Multiplier for trade-level Confirm/Cancel/Edit/Close button radii and gaps. Scales visuals **and** hit/drag areas together — raise it on touch devices for larger tap targets. Clamped to `[1, 3]`. Also settable at runtime via `chart.setTradeLevelButtonScale(scale)` |
|
|
290
292
|
| `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 |
|
|
291
293
|
| `levelClusteringEnabled` | | `true` | Enable trade-level fan-out clustering; overlapping levels group into expandable badges |
|
|
292
294
|
| `clusterThresholdDistance` | | `20` | Pixel proximity threshold for clustering (only when `levelClusteringEnabled` is `true`) |
|
|
293
|
-
| `hideSymbolAndTick` | | `false` | Hide the symbol name
|
|
295
|
+
| `hideSymbolAndTick` | | `false` | Hide the symbol name and tick-activity (streaming) dot in the top-left overlay. Does **not** affect the OHLC(V) strip — use `hideOHLCV` for that |
|
|
296
|
+
| `hideOHLCV` | | `false` | Hide the OHLC(V) data strip (`O: H: L: C: V:`) in the top-left overlay. Independent of `hideSymbolAndTick` — set both to `true` to hide the entire overlay |
|
|
294
297
|
| `showBottomBar` | | `false` | Show the bottom duration-selector bar |
|
|
295
298
|
| `hideQtyButton` | | `false` | Hide the floating Qty input overlay on draft orders |
|
|
296
299
|
| `showQuantityField` | | `false` | Render an editable QTY pill at the left of the draft order info box. Clicking the pill opens a flyout input to edit the quantity before submitting |
|
|
@@ -426,6 +426,12 @@ interface TradeLevelColors {
|
|
|
426
426
|
/** Color of the drag grip icon when hovered. */
|
|
427
427
|
dragHandleHover: string;
|
|
428
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* Default per-drawing-type style fallbacks. Each drawing type has an entry that
|
|
431
|
+
* provides default stroke/fill/text values; per-instance `IDrawing.style`
|
|
432
|
+
* overrides these. Used by `resolveStyle()` in `src/drawings/styleUtils.ts`.
|
|
433
|
+
*/
|
|
434
|
+
type DrawingThemeMap = Record<DrawingToolType, AnyDrawingStyle>;
|
|
429
435
|
/** Colors for the Trade Panel side drawer. */
|
|
430
436
|
interface TradePanelColors {
|
|
431
437
|
background: string;
|
|
@@ -476,6 +482,8 @@ interface ChartTheme {
|
|
|
476
482
|
tradeLevels: TradeLevelColors;
|
|
477
483
|
/** Trade Panel side drawer colors */
|
|
478
484
|
tradePanel: TradePanelColors;
|
|
485
|
+
/** Per-drawing-type default style fallbacks (keyed by DrawingToolType). */
|
|
486
|
+
drawing: DrawingThemeMap;
|
|
479
487
|
}
|
|
480
488
|
/** A deep-partial version of ChartTheme for use in `themeOverrides`. */
|
|
481
489
|
type DeepPartialChartTheme = DeepPartial<ChartTheme>;
|
|
@@ -871,6 +879,20 @@ interface ChartConfig {
|
|
|
871
879
|
* Default: `false`.
|
|
872
880
|
*/
|
|
873
881
|
hideLevelConfirmCancel?: boolean;
|
|
882
|
+
/**
|
|
883
|
+
* Always render SL/TP bracket lines + price pills, even when the parent
|
|
884
|
+
* trade level is not hovered or selected. Close (×) buttons remain
|
|
885
|
+
* hover-only to keep the chart uncluttered.
|
|
886
|
+
* Default: `false`.
|
|
887
|
+
*/
|
|
888
|
+
showTradeLevelsAlways?: boolean;
|
|
889
|
+
/**
|
|
890
|
+
* Show the candle countdown timer on the right price axis, just below
|
|
891
|
+
* the live price tag. Subject to the same `candleCountdownTimeframes`
|
|
892
|
+
* filter as the time-axis countdown.
|
|
893
|
+
* Default: `false`.
|
|
894
|
+
*/
|
|
895
|
+
showPriceAxisCountdown?: boolean;
|
|
874
896
|
/**
|
|
875
897
|
* Multiplier applied to the Confirm (✓), Cancel (✗), Edit (✎), and Close (×)
|
|
876
898
|
* buttons on trade-level overlays (both main-level and SL/TP bracket boxes).
|
|
@@ -885,11 +907,18 @@ interface ChartConfig {
|
|
|
885
907
|
*/
|
|
886
908
|
enableThemeToggle?: boolean;
|
|
887
909
|
/**
|
|
888
|
-
* Hide the symbol name
|
|
889
|
-
*
|
|
890
|
-
*
|
|
910
|
+
* Hide the symbol name and tick-activity (streaming) dot shown in the
|
|
911
|
+
* top-left corner of the chart canvas. The OHLC(V) data strip is **not**
|
|
912
|
+
* affected by this flag — use `hideOHLCV` to hide it independently.
|
|
913
|
+
* Default: `false` (symbol + dot are visible).
|
|
891
914
|
*/
|
|
892
915
|
hideSymbolAndTick?: boolean;
|
|
916
|
+
/**
|
|
917
|
+
* Hide the OHLC(V) data strip rendered in the top-left overlay
|
|
918
|
+
* (the `O: H: L: C: V:` line(s)). Independent of `hideSymbolAndTick`.
|
|
919
|
+
* Default: `false` (strip is visible).
|
|
920
|
+
*/
|
|
921
|
+
hideOHLCV?: boolean;
|
|
893
922
|
/**
|
|
894
923
|
* Show the bottom duration-selector bar.
|
|
895
924
|
* Default: `false` (bar is hidden).
|
|
@@ -943,6 +972,38 @@ interface DrawingHandle {
|
|
|
943
972
|
pointIndex: number;
|
|
944
973
|
cursor: string;
|
|
945
974
|
}
|
|
975
|
+
/** Base per-instance style fields applicable to every drawing. */
|
|
976
|
+
interface DrawingStyle {
|
|
977
|
+
/** Primary line/border/marker color. */
|
|
978
|
+
strokeColor?: string;
|
|
979
|
+
/** Stroke width in px (typically 1–4). */
|
|
980
|
+
lineWidth?: number;
|
|
981
|
+
/** Dash pattern for lines and shape borders. */
|
|
982
|
+
lineStyle?: 'solid' | 'dashed' | 'dotted';
|
|
983
|
+
/** Fill color for shapes that have a fill (rectangle, channel, fib level fills). */
|
|
984
|
+
fillColor?: string;
|
|
985
|
+
/** Fill opacity (0..1). */
|
|
986
|
+
fillOpacity?: number;
|
|
987
|
+
}
|
|
988
|
+
/** Extends DrawingStyle for text-bearing drawings (text, callout, anchoredNote, priceNote). */
|
|
989
|
+
interface DrawingTextStyle extends DrawingStyle {
|
|
990
|
+
/** Foreground text color. */
|
|
991
|
+
textColor?: string;
|
|
992
|
+
/** Font size in px (default 13). */
|
|
993
|
+
fontSize?: number;
|
|
994
|
+
}
|
|
995
|
+
/** Per-level visibility + color for multi-level drawings (fib family, gann box). */
|
|
996
|
+
interface DrawingLevelStyle {
|
|
997
|
+
visible: boolean;
|
|
998
|
+
color: string;
|
|
999
|
+
}
|
|
1000
|
+
/** Extends DrawingStyle for fib/multi-level drawings. */
|
|
1001
|
+
interface DrawingFibStyle extends DrawingStyle {
|
|
1002
|
+
/** Map of level value (as string, e.g. '0', '0.236', '0.5', '1') → per-level style. */
|
|
1003
|
+
levels?: Record<string, DrawingLevelStyle>;
|
|
1004
|
+
}
|
|
1005
|
+
/** Union of all drawing style shapes. */
|
|
1006
|
+
type AnyDrawingStyle = DrawingStyle | DrawingTextStyle | DrawingFibStyle;
|
|
946
1007
|
interface IDrawing {
|
|
947
1008
|
id: string;
|
|
948
1009
|
type: DrawingToolType;
|
|
@@ -951,7 +1012,9 @@ interface IDrawing {
|
|
|
951
1012
|
visible?: boolean;
|
|
952
1013
|
locked?: boolean;
|
|
953
1014
|
text?: string;
|
|
954
|
-
|
|
1015
|
+
/** Optional per-instance style override; falls back to theme defaults when absent. */
|
|
1016
|
+
style?: AnyDrawingStyle;
|
|
1017
|
+
render(ctx: CanvasRenderingContext2D, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number, isSelected: boolean, pricePrecision?: number, theme?: ChartTheme): void;
|
|
955
1018
|
hitTest(x: number, y: number, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number): boolean;
|
|
956
1019
|
/** Returns the handle under (x, y), or null if none */
|
|
957
1020
|
getHandle(x: number, y: number, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number): DrawingHandle | null;
|
|
@@ -985,6 +1048,8 @@ interface SerializedDrawing {
|
|
|
985
1048
|
visible?: boolean;
|
|
986
1049
|
text?: string;
|
|
987
1050
|
locked?: boolean;
|
|
1051
|
+
/** Optional per-instance style override; absent for drawings using theme defaults. */
|
|
1052
|
+
style?: AnyDrawingStyle;
|
|
988
1053
|
}
|
|
989
1054
|
/** Serializable per-symbol chart state emitted via the `stateChange` event. */
|
|
990
1055
|
interface IndicatorStateEntry {
|
|
@@ -1442,4 +1507,4 @@ declare class MACD implements IIndicator {
|
|
|
1442
1507
|
render(ctx: CanvasRenderingContext2D, results: IndicatorResult[], scale: ScaleManager, viewport: Viewport, paneHeight: number, rangeOverride?: PriceRange): void;
|
|
1443
1508
|
}
|
|
1444
1509
|
|
|
1445
|
-
export { type
|
|
1510
|
+
export { type IndicatorOverlayColors as $, type AnyDrawingStyle as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_DRAWING_TOOLBAR_CONFIG as E, DEFAULT_INDICATOR_OVERLAY_CONFIG as F, DEFAULT_LABELS as G, DEFAULT_PRICE_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TIME_AXIS_CONFIG as J, DEFAULT_TOP_BAR_CONFIG as K, DEFAULT_TRADE_BUTTON_CONFIG as L, DEFAULT_UI_CONFIG as M, type DataLoaderParams as N, type OHLCVBar as O, type PriceRange as P, type DeepPartial$1 as Q, type DeepPartialChartTheme as R, type SeriesType as S, type Timeframe as T, type DialogLabels as U, type Viewport as V, type DrawingToolbarColors as W, type DrawingToolbarLabels as X, type DrawingToolbarUiConfig as Y, type Duration as Z, EMA as _, type ChartEventMap as a, type IndicatorOverlayUiConfig as a0, type IndicatorParams as a1, type IndicatorResult as a2, type IndicatorStateEntry as a3, LIGHT_THEME as a4, MACD as a5, type OhlcLabels as a6, type OrderSubmit as a7, type Padding as a8, type PendingOrderLevel as a9, type PositionLevel as aa, type PositionRenderStyle as ab, type PriceAxisUiConfig as ac, RSI as ad, SMA as ae, type Theme as af, type ThemeOverrides as ag, type TimeAxisUiConfig as ah, type TopBarColors as ai, type TopBarLabels as aj, type TopBarUiConfig as ak, type TradeButtonUiConfig as al, type TradeDisplayFilter as am, type TradeLabels as an, type TradeLevel as ao, type TradeLevelColors as ap, type TradePanelColors as aq, type UiConfig as ar, deepMergeTheme as as, resolveCssVarsInTheme as at, resolveLabels as au, resolveUiConfig as av, type PriceSource as aw, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type AnyLevel as f, type DrawingPoint as g, ScaleManager as h, type DrawingHandle as i, type ChartTheme as j, type SerializedDrawing as k, type Tick as l, type StreamStatus as m, type ActiveIndicatorState as n, type BottomBarColors as o, type BottomBarLabels as p, type BottomBarUiConfig as q, type CanvasColorSettings as r, type ChartLabels as s, type ChartMiscLabels as t, type ChartThemeUi as u, type CrosshairPosition as v, type CrosshairUiConfig as w, DARK_THEME as x, DEFAULT_BOTTOM_BAR_CONFIG as y, DEFAULT_CROSSHAIR_CONFIG as z };
|
|
@@ -426,6 +426,12 @@ interface TradeLevelColors {
|
|
|
426
426
|
/** Color of the drag grip icon when hovered. */
|
|
427
427
|
dragHandleHover: string;
|
|
428
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* Default per-drawing-type style fallbacks. Each drawing type has an entry that
|
|
431
|
+
* provides default stroke/fill/text values; per-instance `IDrawing.style`
|
|
432
|
+
* overrides these. Used by `resolveStyle()` in `src/drawings/styleUtils.ts`.
|
|
433
|
+
*/
|
|
434
|
+
type DrawingThemeMap = Record<DrawingToolType, AnyDrawingStyle>;
|
|
429
435
|
/** Colors for the Trade Panel side drawer. */
|
|
430
436
|
interface TradePanelColors {
|
|
431
437
|
background: string;
|
|
@@ -476,6 +482,8 @@ interface ChartTheme {
|
|
|
476
482
|
tradeLevels: TradeLevelColors;
|
|
477
483
|
/** Trade Panel side drawer colors */
|
|
478
484
|
tradePanel: TradePanelColors;
|
|
485
|
+
/** Per-drawing-type default style fallbacks (keyed by DrawingToolType). */
|
|
486
|
+
drawing: DrawingThemeMap;
|
|
479
487
|
}
|
|
480
488
|
/** A deep-partial version of ChartTheme for use in `themeOverrides`. */
|
|
481
489
|
type DeepPartialChartTheme = DeepPartial<ChartTheme>;
|
|
@@ -871,6 +879,20 @@ interface ChartConfig {
|
|
|
871
879
|
* Default: `false`.
|
|
872
880
|
*/
|
|
873
881
|
hideLevelConfirmCancel?: boolean;
|
|
882
|
+
/**
|
|
883
|
+
* Always render SL/TP bracket lines + price pills, even when the parent
|
|
884
|
+
* trade level is not hovered or selected. Close (×) buttons remain
|
|
885
|
+
* hover-only to keep the chart uncluttered.
|
|
886
|
+
* Default: `false`.
|
|
887
|
+
*/
|
|
888
|
+
showTradeLevelsAlways?: boolean;
|
|
889
|
+
/**
|
|
890
|
+
* Show the candle countdown timer on the right price axis, just below
|
|
891
|
+
* the live price tag. Subject to the same `candleCountdownTimeframes`
|
|
892
|
+
* filter as the time-axis countdown.
|
|
893
|
+
* Default: `false`.
|
|
894
|
+
*/
|
|
895
|
+
showPriceAxisCountdown?: boolean;
|
|
874
896
|
/**
|
|
875
897
|
* Multiplier applied to the Confirm (✓), Cancel (✗), Edit (✎), and Close (×)
|
|
876
898
|
* buttons on trade-level overlays (both main-level and SL/TP bracket boxes).
|
|
@@ -885,11 +907,18 @@ interface ChartConfig {
|
|
|
885
907
|
*/
|
|
886
908
|
enableThemeToggle?: boolean;
|
|
887
909
|
/**
|
|
888
|
-
* Hide the symbol name
|
|
889
|
-
*
|
|
890
|
-
*
|
|
910
|
+
* Hide the symbol name and tick-activity (streaming) dot shown in the
|
|
911
|
+
* top-left corner of the chart canvas. The OHLC(V) data strip is **not**
|
|
912
|
+
* affected by this flag — use `hideOHLCV` to hide it independently.
|
|
913
|
+
* Default: `false` (symbol + dot are visible).
|
|
891
914
|
*/
|
|
892
915
|
hideSymbolAndTick?: boolean;
|
|
916
|
+
/**
|
|
917
|
+
* Hide the OHLC(V) data strip rendered in the top-left overlay
|
|
918
|
+
* (the `O: H: L: C: V:` line(s)). Independent of `hideSymbolAndTick`.
|
|
919
|
+
* Default: `false` (strip is visible).
|
|
920
|
+
*/
|
|
921
|
+
hideOHLCV?: boolean;
|
|
893
922
|
/**
|
|
894
923
|
* Show the bottom duration-selector bar.
|
|
895
924
|
* Default: `false` (bar is hidden).
|
|
@@ -943,6 +972,38 @@ interface DrawingHandle {
|
|
|
943
972
|
pointIndex: number;
|
|
944
973
|
cursor: string;
|
|
945
974
|
}
|
|
975
|
+
/** Base per-instance style fields applicable to every drawing. */
|
|
976
|
+
interface DrawingStyle {
|
|
977
|
+
/** Primary line/border/marker color. */
|
|
978
|
+
strokeColor?: string;
|
|
979
|
+
/** Stroke width in px (typically 1–4). */
|
|
980
|
+
lineWidth?: number;
|
|
981
|
+
/** Dash pattern for lines and shape borders. */
|
|
982
|
+
lineStyle?: 'solid' | 'dashed' | 'dotted';
|
|
983
|
+
/** Fill color for shapes that have a fill (rectangle, channel, fib level fills). */
|
|
984
|
+
fillColor?: string;
|
|
985
|
+
/** Fill opacity (0..1). */
|
|
986
|
+
fillOpacity?: number;
|
|
987
|
+
}
|
|
988
|
+
/** Extends DrawingStyle for text-bearing drawings (text, callout, anchoredNote, priceNote). */
|
|
989
|
+
interface DrawingTextStyle extends DrawingStyle {
|
|
990
|
+
/** Foreground text color. */
|
|
991
|
+
textColor?: string;
|
|
992
|
+
/** Font size in px (default 13). */
|
|
993
|
+
fontSize?: number;
|
|
994
|
+
}
|
|
995
|
+
/** Per-level visibility + color for multi-level drawings (fib family, gann box). */
|
|
996
|
+
interface DrawingLevelStyle {
|
|
997
|
+
visible: boolean;
|
|
998
|
+
color: string;
|
|
999
|
+
}
|
|
1000
|
+
/** Extends DrawingStyle for fib/multi-level drawings. */
|
|
1001
|
+
interface DrawingFibStyle extends DrawingStyle {
|
|
1002
|
+
/** Map of level value (as string, e.g. '0', '0.236', '0.5', '1') → per-level style. */
|
|
1003
|
+
levels?: Record<string, DrawingLevelStyle>;
|
|
1004
|
+
}
|
|
1005
|
+
/** Union of all drawing style shapes. */
|
|
1006
|
+
type AnyDrawingStyle = DrawingStyle | DrawingTextStyle | DrawingFibStyle;
|
|
946
1007
|
interface IDrawing {
|
|
947
1008
|
id: string;
|
|
948
1009
|
type: DrawingToolType;
|
|
@@ -951,7 +1012,9 @@ interface IDrawing {
|
|
|
951
1012
|
visible?: boolean;
|
|
952
1013
|
locked?: boolean;
|
|
953
1014
|
text?: string;
|
|
954
|
-
|
|
1015
|
+
/** Optional per-instance style override; falls back to theme defaults when absent. */
|
|
1016
|
+
style?: AnyDrawingStyle;
|
|
1017
|
+
render(ctx: CanvasRenderingContext2D, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number, isSelected: boolean, pricePrecision?: number, theme?: ChartTheme): void;
|
|
955
1018
|
hitTest(x: number, y: number, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number): boolean;
|
|
956
1019
|
/** Returns the handle under (x, y), or null if none */
|
|
957
1020
|
getHandle(x: number, y: number, scale: ScaleManager, viewport: Viewport, priceRange: PriceRange, chartW: number, chartH: number): DrawingHandle | null;
|
|
@@ -985,6 +1048,8 @@ interface SerializedDrawing {
|
|
|
985
1048
|
visible?: boolean;
|
|
986
1049
|
text?: string;
|
|
987
1050
|
locked?: boolean;
|
|
1051
|
+
/** Optional per-instance style override; absent for drawings using theme defaults. */
|
|
1052
|
+
style?: AnyDrawingStyle;
|
|
988
1053
|
}
|
|
989
1054
|
/** Serializable per-symbol chart state emitted via the `stateChange` event. */
|
|
990
1055
|
interface IndicatorStateEntry {
|
|
@@ -1442,4 +1507,4 @@ declare class MACD implements IIndicator {
|
|
|
1442
1507
|
render(ctx: CanvasRenderingContext2D, results: IndicatorResult[], scale: ScaleManager, viewport: Viewport, paneHeight: number, rangeOverride?: PriceRange): void;
|
|
1443
1508
|
}
|
|
1444
1509
|
|
|
1445
|
-
export { type
|
|
1510
|
+
export { type IndicatorOverlayColors as $, type AnyDrawingStyle as A, BollingerBands as B, type ChartConfig as C, type DrawingToolType as D, DEFAULT_DRAWING_TOOLBAR_CONFIG as E, DEFAULT_INDICATOR_OVERLAY_CONFIG as F, DEFAULT_LABELS as G, DEFAULT_PRICE_AXIS_CONFIG as H, type IIndicator as I, DEFAULT_TIME_AXIS_CONFIG as J, DEFAULT_TOP_BAR_CONFIG as K, DEFAULT_TRADE_BUTTON_CONFIG as L, DEFAULT_UI_CONFIG as M, type DataLoaderParams as N, type OHLCVBar as O, type PriceRange as P, type DeepPartial$1 as Q, type DeepPartialChartTheme as R, type SeriesType as S, type Timeframe as T, type DialogLabels as U, type Viewport as V, type DrawingToolbarColors as W, type DrawingToolbarLabels as X, type DrawingToolbarUiConfig as Y, type Duration as Z, EMA as _, type ChartEventMap as a, type IndicatorOverlayUiConfig as a0, type IndicatorParams as a1, type IndicatorResult as a2, type IndicatorStateEntry as a3, LIGHT_THEME as a4, MACD as a5, type OhlcLabels as a6, type OrderSubmit as a7, type Padding as a8, type PendingOrderLevel as a9, type PositionLevel as aa, type PositionRenderStyle as ab, type PriceAxisUiConfig as ac, RSI as ad, SMA as ae, type Theme as af, type ThemeOverrides as ag, type TimeAxisUiConfig as ah, type TopBarColors as ai, type TopBarLabels as aj, type TopBarUiConfig as ak, type TradeButtonUiConfig as al, type TradeDisplayFilter as am, type TradeLabels as an, type TradeLevel as ao, type TradeLevelColors as ap, type TradePanelColors as aq, type UiConfig as ar, deepMergeTheme as as, resolveCssVarsInTheme as at, resolveLabels as au, resolveUiConfig as av, type PriceSource as aw, type ChartState as b, type IDrawing as c, type IWebSocketAdapter as d, type TradeLevelType as e, type AnyLevel as f, type DrawingPoint as g, ScaleManager as h, type DrawingHandle as i, type ChartTheme as j, type SerializedDrawing as k, type Tick as l, type StreamStatus as m, type ActiveIndicatorState as n, type BottomBarColors as o, type BottomBarLabels as p, type BottomBarUiConfig as q, type CanvasColorSettings as r, type ChartLabels as s, type ChartMiscLabels as t, type ChartThemeUi as u, type CrosshairPosition as v, type CrosshairUiConfig as w, DARK_THEME as x, DEFAULT_BOTTOM_BAR_CONFIG as y, DEFAULT_CROSSHAIR_CONFIG as z };
|