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.
@@ -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 ?? false;
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);