@fintatech/fintachart 3.1.8 → 3.1.9
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 +7 -0
- package/d.ts/FintaChart.d.ts +44 -0
- package/package.json +1 -1
- package/scripts/FintaChart.min.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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.9] - 2026-05-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- 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`).
|
|
13
|
+
|
|
8
14
|
## [3.1.8] - 2026-05-15
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -123,6 +129,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
123
129
|
|
|
124
130
|
- Initial public release of `@fintatech/fintachart`
|
|
125
131
|
|
|
132
|
+
[3.1.9]: https://github.com/fintatech/fintachart/releases/tag/v3.1.9
|
|
126
133
|
[3.1.8]: https://github.com/fintatech/fintachart/releases/tag/v3.1.8
|
|
127
134
|
[3.1.7]: https://github.com/fintatech/fintachart/releases/tag/v3.1.7
|
|
128
135
|
[3.1.6]: https://github.com/fintatech/fintachart/releases/tag/v3.1.6
|
package/d.ts/FintaChart.d.ts
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "3.1.9",
|
|
6
6
|
"types": "./d.ts/FintaChart.d.ts",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
8
8
|
"repository": {
|