@fintatech/fintachart 3.1.8 → 3.1.10

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/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.1.10] - 2026-05-18
9
+
10
+ ### Fixed
11
+
12
+ - Minor bug fixes and improvements.
13
+
14
+ ## [3.1.9] - 2026-05-15
15
+
16
+ ### Fixed
17
+
18
+ - Bar replay now preserves trailing future-projection placeholder bars instead of cutting them when replay engages, so forward-projecting indicators (e.g. composite cycle forecasts) keep their future slots and continue plotting ahead of the replay cursor (`ReplayModeManager`).
19
+
8
20
  ## [3.1.8] - 2026-05-15
9
21
 
10
22
  ### Fixed
@@ -123,6 +135,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123
135
 
124
136
  - Initial public release of `@fintatech/fintachart`
125
137
 
138
+ [3.1.10]: https://github.com/fintatech/fintachart/releases/tag/v3.1.10
139
+ [3.1.9]: https://github.com/fintatech/fintachart/releases/tag/v3.1.9
126
140
  [3.1.8]: https://github.com/fintatech/fintachart/releases/tag/v3.1.8
127
141
  [3.1.7]: https://github.com/fintatech/fintachart/releases/tag/v3.1.7
128
142
  [3.1.6]: https://github.com/fintatech/fintachart/releases/tag/v3.1.6
package/README.md CHANGED
@@ -16,7 +16,7 @@ High-performance financial charting component for web applications. Designed for
16
16
  ## Features
17
17
 
18
18
  - **19 chart types** — Candlestick, OHLC, Heikin Ashi, Renko, Kagi, Line Break, Point & Figure, Hollow Candle, Range Bar, Candle Volume, Equi Volume, Line, Area, and more
19
- - **114 technical indicators** — RSI, MACD, Bollinger Bands, Ichimoku, EMA, SMA, Stochastics, and the full range of standard analysis tools
19
+ - **130+ technical indicators** — RSI, MACD, Bollinger Bands, Ichimoku, EMA, SMA, Stochastics, and the full range of standard analysis tools
20
20
  - **Drawing and analysis tools** — Lines, channels, rectangles, circles, ellipses, polygons, freehand, arrows, text and image annotations
21
21
  - **Fibonacci tools** — Retracements, Fan, Extensions, Arcs, Ellipses, Time Zones
22
22
  - **Trend analysis** — Andrews' Pitchfork, Raff Regression, Error Channel, Gann Fan, Speed Lines, Quadrant Lines, Tirone Levels
@@ -5724,6 +5724,14 @@ declare module FintaChart {
5724
5724
  private _timeInterval;
5725
5725
  private _toRealTimeBtn;
5726
5726
  private _toolbar;
5727
+ /**
5728
+ * Number of trailing future-projection placeholder bars (bars with no
5729
+ * price data) detected in the series when replay engaged. While replay
5730
+ * is active this many NaN-OHLC placeholder bars are kept past the
5731
+ * replay cursor so forward-projecting indicators (e.g. composite cycle
5732
+ * forecast) keep their slots and can still plot into the future.
5733
+ */
5734
+ private _projectionCount;
5727
5735
  replaySpeed: number;
5728
5736
  /**
5729
5737
  * Replay Mode Manager's current index
@@ -5836,6 +5844,42 @@ declare module FintaChart {
5836
5844
  private setPauseView;
5837
5845
  private startPlay;
5838
5846
  private setPlayView;
5847
+ /**
5848
+ * Counts the trailing future-projection placeholder bars in the
5849
+ * preserved origin series — bars at the end of the data that carry no
5850
+ * price (NaN/empty close). Consumers append these for forward-projection
5851
+ * rendering; we keep an equally-sized window alive past the replay
5852
+ * cursor so projecting indicators still have slots to plot into.
5853
+ */
5854
+ private countTrailingPlaceholders;
5855
+ /**
5856
+ * Builds a no-price placeholder bar carrying the date at `index` in
5857
+ * the given (origin) series, or null when `index` is out of range.
5858
+ */
5859
+ private placeholderBarAt;
5860
+ /**
5861
+ * Appends the future-projection placeholder window (NaN-OHLC bars with
5862
+ * real future dates from the origin series) starting at origin index
5863
+ * `start`, for the primary series and every compared instrument, so
5864
+ * forward-projecting indicators keep slots past the replay cursor.
5865
+ */
5866
+ private appendProjectionPlaceholders;
5867
+ /**
5868
+ * Reveals the bar at the current replay index.
5869
+ *
5870
+ * Without a projection window (legacy behaviour) the bar is simply
5871
+ * appended. With a projection window active the real bar is written
5872
+ * in-place into the first placeholder slot (its date already matches)
5873
+ * and one fresh placeholder is appended at the tail, so the projection
5874
+ * window keeps its width and forward-projecting indicators continue to
5875
+ * plot past the replay cursor.
5876
+ */
5877
+ private revealNextReplayBar;
5878
+ /**
5879
+ * Overwrites the OHLCV values at `index` of the given bar data rows
5880
+ * with `bar` (the date is left untouched — it already matches).
5881
+ */
5882
+ private revealInPlace;
5839
5883
  }
5840
5884
  }
5841
5885
  declare module FintaChart {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@fintatech/fintachart",
3
3
  "description": "FintaChart financial charting component",
4
4
  "homepage": "https://fintatech.com",
5
- "version": "3.1.8",
5
+ "version": "3.1.10",
6
6
  "types": "./d.ts/FintaChart.d.ts",
7
7
  "license": "SEE LICENSE IN LICENSE.md",
8
8
  "repository": {