@invinite-org/chartlang-host-worker 1.2.0 → 1.3.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/CHANGELOG.md +33 -0
- package/dist/worker-boot.js +1178 -479
- package/dist/worker-boot.js.map +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @invinite-org/chartlang-host-worker
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1efb49c: Add multi-symbol support to `request.security`. `request.security({ symbol,
|
|
8
|
+
interval })` now reads a **different instrument** (not just a higher
|
|
9
|
+
timeframe), e.g. `request.security({ symbol: "AMEX:SPY", interval: "1D" })`.
|
|
10
|
+
`symbol` is optional (defaults to the chart symbol) and must be a compile-time
|
|
11
|
+
literal (`input.symbol` / `input.enum` resolved). A new `multiSymbol` adapter
|
|
12
|
+
capability gates non-chart-symbol requests: a different-symbol request against
|
|
13
|
+
an adapter declaring `multiSymbol: false` degrades to an all-NaN
|
|
14
|
+
bar/series with a single deduped `multi-symbol-not-supported` diagnostic,
|
|
15
|
+
mirroring `multi-timeframe-not-supported` (the symbol gate precedes the
|
|
16
|
+
timeframe gate, so a both-different request emits only the symbol diagnostic).
|
|
17
|
+
The Pine converter now lowers `request.security("OTHER", tf, expr)`, and the
|
|
18
|
+
`chartlang scaffold-adapter` template advertises `multiSymbol`.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [189493a]
|
|
23
|
+
- Updated dependencies [8bc628e]
|
|
24
|
+
- Updated dependencies [ab8b218]
|
|
25
|
+
- Updated dependencies [8bc628e]
|
|
26
|
+
- Updated dependencies [ab8b218]
|
|
27
|
+
- Updated dependencies [189493a]
|
|
28
|
+
- Updated dependencies [e620ba8]
|
|
29
|
+
- Updated dependencies [08cba38]
|
|
30
|
+
- Updated dependencies [1efb49c]
|
|
31
|
+
- Updated dependencies [1efb49c]
|
|
32
|
+
- @invinite-org/chartlang-adapter-kit@1.6.0
|
|
33
|
+
- @invinite-org/chartlang-core@1.3.0
|
|
34
|
+
- @invinite-org/chartlang-runtime@1.3.0
|
|
35
|
+
|
|
3
36
|
## 1.2.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|