acttrader-charts 1.2.0-beta.3 → 1.2.0-beta.4
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/dist/{MACD-9_am0Nfz.d.cts → MACD-dGgN6dtc.d.cts} +1 -1
- package/dist/{MACD-9_am0Nfz.d.ts → MACD-dGgN6dtc.d.ts} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- 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 +1 -1
- package/package.json +1 -1
|
@@ -958,7 +958,7 @@ interface ChartConfig {
|
|
|
958
958
|
* Always render SL/TP bracket lines + price pills, even when the parent
|
|
959
959
|
* trade level is not hovered or selected. Close (×) buttons remain
|
|
960
960
|
* hover-only to keep the chart uncluttered.
|
|
961
|
-
* Default: `false
|
|
961
|
+
* Default: `true`. Set `false` to only show them on hover/selection.
|
|
962
962
|
*/
|
|
963
963
|
showTradeLevelsAlways?: boolean;
|
|
964
964
|
/**
|
|
@@ -958,7 +958,7 @@ interface ChartConfig {
|
|
|
958
958
|
* Always render SL/TP bracket lines + price pills, even when the parent
|
|
959
959
|
* trade level is not hovered or selected. Close (×) buttons remain
|
|
960
960
|
* hover-only to keep the chart uncluttered.
|
|
961
|
-
* Default: `false
|
|
961
|
+
* Default: `true`. Set `false` to only show them on hover/selection.
|
|
962
962
|
*/
|
|
963
963
|
showTradeLevelsAlways?: boolean;
|
|
964
964
|
/**
|
package/dist/index.cjs
CHANGED
|
@@ -22493,7 +22493,7 @@ var _ChartEngine = class _ChartEngine {
|
|
|
22493
22493
|
this.tfcActive = this.tfcEnabled;
|
|
22494
22494
|
this.showCandleCountdown = config.showCandleCountdown ?? true;
|
|
22495
22495
|
this.candleCountdownTimeframes = config.candleCountdownTimeframes;
|
|
22496
|
-
this.showTradeLevelsAlways = config.showTradeLevelsAlways ??
|
|
22496
|
+
this.showTradeLevelsAlways = config.showTradeLevelsAlways ?? true;
|
|
22497
22497
|
this.showPriceAxisCountdown = config.showPriceAxisCountdown ?? false;
|
|
22498
22498
|
try {
|
|
22499
22499
|
const persistedSlTp = localStorage.getItem(this.SHOW_SLTP_ALWAYS_LS_KEY);
|