@invinite-org/chartlang-language-service 1.1.0 → 1.2.1
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 +88 -0
- package/README.md +7 -0
- package/dist/_lib/collectCompletions.d.ts +1 -1
- package/dist/_lib/collectCompletions.d.ts.map +1 -1
- package/dist/_lib/collectCompletions.js +20 -1
- package/dist/_lib/collectCompletions.js.map +1 -1
- package/dist/_lib/isInsideOutputStringLiteral.d.ts +14 -0
- package/dist/_lib/isInsideOutputStringLiteral.d.ts.map +1 -0
- package/dist/_lib/isInsideOutputStringLiteral.js +44 -0
- package/dist/_lib/isInsideOutputStringLiteral.js.map +1 -0
- package/dist/_lib/isInsideWithInputsKey.d.ts +15 -0
- package/dist/_lib/isInsideWithInputsKey.d.ts.map +1 -0
- package/dist/_lib/isInsideWithInputsKey.js +64 -0
- package/dist/_lib/isInsideWithInputsKey.js.map +1 -0
- package/dist/_lib/resolveDepAccessor.d.ts +77 -0
- package/dist/_lib/resolveDepAccessor.d.ts.map +1 -0
- package/dist/_lib/resolveDepAccessor.js +307 -0
- package/dist/_lib/resolveDepAccessor.js.map +1 -0
- package/dist/createLanguageService.d.ts.map +1 -1
- package/dist/createLanguageService.js +16 -12
- package/dist/createLanguageService.js.map +1 -1
- package/dist/hoverRegistry.generated.d.ts.map +1 -1
- package/dist/hoverRegistry.generated.js +221 -122
- package/dist/hoverRegistry.generated.js.map +1 -1
- package/package.json +4 -4
|
@@ -48,7 +48,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
48
48
|
"fqn": "AdxOpts",
|
|
49
49
|
"kind": "type",
|
|
50
50
|
"title": "AdxOpts",
|
|
51
|
-
"summary": "Options bag for `ta.adx` (Wilder's Average Directional Index).\n`smoothing` is the second-stage Wilder window applied to DX\n(default `14` — matches the DI window). `offset` shifts the\noutput
|
|
51
|
+
"summary": "Options bag for `ta.adx` (Wilder's Average Directional Index).\n`smoothing` is the second-stage Wilder window applied to DX\n(default `14` — matches the DI window). `offset` shifts the\noutput. `lineStyle` is a forward-compat plot-\nstyling hint surfaced for §9.1 ergonomics — not consumed by the\nprimitive itself.",
|
|
52
52
|
"examples": [
|
|
53
53
|
"const opts: AdxOpts = { smoothing: 14 };"
|
|
54
54
|
],
|
|
@@ -59,7 +59,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
59
59
|
"fqn": "alert",
|
|
60
60
|
"kind": "function",
|
|
61
61
|
"title": "alert(_message, _opts?)",
|
|
62
|
-
"summary": "Compile-time callable hole for `alert(message, opts?)`. The compiler\nrewrites every callsite
|
|
62
|
+
"summary": "Compile-time callable hole for `alert(message, opts?)`. The compiler\nrewrites every callsite to dispatch to the runtime; calling this\noutside the runtime throws the sentinel.",
|
|
63
63
|
"paramTable": [
|
|
64
64
|
{
|
|
65
65
|
"name": "_message",
|
|
@@ -247,7 +247,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
247
247
|
"fqn": "AroonOpts",
|
|
248
248
|
"kind": "type",
|
|
249
249
|
"title": "AroonOpts",
|
|
250
|
-
"summary": "Options bag for `ta.aroon`. `offset` shifts the read window backwards\n
|
|
250
|
+
"summary": "Options bag for `ta.aroon`. `offset` shifts the read window backwards\n. `outputs` carries per-output styling hints that\ndownstream `plot()` callsites can lift defaults from; the runtime\nitself ignores it in Phase 2 — script-author `plot(a.up,\n{ lineStyle })` is the styling seam.",
|
|
251
251
|
"examples": [
|
|
252
252
|
"const opts: AroonOpts = { offset: 0 };"
|
|
253
253
|
],
|
|
@@ -353,6 +353,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
353
353
|
"since": "0.1",
|
|
354
354
|
"stability": "stable"
|
|
355
355
|
},
|
|
356
|
+
"attachDepAccessorSentinels": {
|
|
357
|
+
"fqn": "attachDepAccessorSentinels",
|
|
358
|
+
"kind": "property",
|
|
359
|
+
"title": "attachDepAccessorSentinels",
|
|
360
|
+
"summary": "/**\nAttach the {@link depAccessorSentinel} -backed `output` /\n`withInputs` accessors to a `{ manifest, compute }` pair so the\n`defineIndicator` / `defineAlert` / `defineDrawing` /\n`defineAlertCondition` constructors return a complete\n{@link CompiledScriptObject} . The compiler rewrites both accessors\nto static dep lookups at bundle time — the throwing bodies only\nfire when an un-compiled module is invoked directly.",
|
|
361
|
+
"examples": [
|
|
362
|
+
"declare const manifest: ScriptManifest;\ndeclare const compute: ComputeFn;\nconst cs: CompiledScriptObject = attachDepAccessorSentinels({\nmanifest,\ncompute,\n});\nvoid cs;"
|
|
363
|
+
],
|
|
364
|
+
"since": "0.7",
|
|
365
|
+
"stability": "stable"
|
|
366
|
+
},
|
|
356
367
|
"Bar": {
|
|
357
368
|
"fqn": "Bar",
|
|
358
369
|
"kind": "type",
|
|
@@ -423,7 +434,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
423
434
|
"fqn": "BbPercentBOpts",
|
|
424
435
|
"kind": "type",
|
|
425
436
|
"title": "BbPercentBOpts",
|
|
426
|
-
"summary": "Options bag for `ta.bbPercentB`. `multiplier` scales the BB envelope\n(defaults to `2`, mirroring Pine / TradingView). `offset` shifts the\nread window backwards
|
|
437
|
+
"summary": "Options bag for `ta.bbPercentB`. `multiplier` scales the BB envelope\n(defaults to `2`, mirroring Pine / TradingView). `offset` shifts the\nread window backwards; `lineStyle` is a forward-compat\nplot-styling hint surfaced for §9.1 ergonomics.",
|
|
427
438
|
"examples": [
|
|
428
439
|
"const opts: BbPercentBOpts = { multiplier: 2 };"
|
|
429
440
|
],
|
|
@@ -529,7 +540,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
529
540
|
"fqn": "CciOpts",
|
|
530
541
|
"kind": "type",
|
|
531
542
|
"title": "CciOpts",
|
|
532
|
-
"summary": "Options bag for `ta.cci`. `offset` shifts the read window backwards\n(Phase-2 backfill
|
|
543
|
+
"summary": "Options bag for `ta.cci`. `offset` shifts the read window backwards\n(Phase-2 backfill). `lineStyle` is a pass-through\nfor the script-author's downstream `plot(cci, { lineStyle })` call\nand is not consumed by the primitive itself.",
|
|
533
544
|
"examples": [
|
|
534
545
|
"const opts: CciOpts = { offset: 0 };"
|
|
535
546
|
],
|
|
@@ -540,7 +551,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
540
551
|
"fqn": "ChaikinOscOpts",
|
|
541
552
|
"kind": "type",
|
|
542
553
|
"title": "ChaikinOscOpts",
|
|
543
|
-
"summary": "Options bag for `ta.chaikinOsc` (Chaikin Oscillator). Defaults\nmatch Pine / invinite: `fastLength = 3`, `slowLength = 10`. `offset`\nshifts the read window backwards (
|
|
554
|
+
"summary": "Options bag for `ta.chaikinOsc` (Chaikin Oscillator). Defaults\nmatch Pine / invinite: `fastLength = 3`, `slowLength = 10`. `offset`\nshifts the read window backwards (universal offset).",
|
|
544
555
|
"examples": [
|
|
545
556
|
"const opts: ChaikinOscOpts = { fastLength: 3, slowLength: 10 };"
|
|
546
557
|
],
|
|
@@ -551,7 +562,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
551
562
|
"fqn": "ChandeKrollStopOpts",
|
|
552
563
|
"kind": "type",
|
|
553
564
|
"title": "ChandeKrollStopOpts",
|
|
554
|
-
"summary": "Options bag for `ta.chandeKrollStop`. `length` controls BOTH the\nATR period AND the first-pass rolling extreme window (default\n`10`); `multiplier` scales the ATR offset (default `1`);\n`smoothingLength` is the second-pass extreme window (default `9`)\n— matches Chande Kroll's 1995 paper. `offset` shifts the read\nwindow backwards (
|
|
565
|
+
"summary": "Options bag for `ta.chandeKrollStop`. `length` controls BOTH the\nATR period AND the first-pass rolling extreme window (default\n`10`); `multiplier` scales the ATR offset (default `1`);\n`smoothingLength` is the second-pass extreme window (default `9`)\n— matches Chande Kroll's 1995 paper. `offset` shifts the read\nwindow backwards (accepted on the surface).",
|
|
555
566
|
"examples": [
|
|
556
567
|
"const opts: ChandeKrollStopOpts = { length: 10, multiplier: 1, smoothingLength: 9 };"
|
|
557
568
|
],
|
|
@@ -573,7 +584,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
573
584
|
"fqn": "ChandelierOpts",
|
|
574
585
|
"kind": "type",
|
|
575
586
|
"title": "ChandelierOpts",
|
|
576
|
-
"summary": "Options bag for `ta.chandelier` (Chandelier Exit). `length` is the\nATR period AND the rolling extreme window (default `22`);\n`multiplier` scales the ATR offset (default `3`). `offset` shifts\nthe read window backwards (
|
|
587
|
+
"summary": "Options bag for `ta.chandelier` (Chandelier Exit). `length` is the\nATR period AND the rolling extreme window (default `22`);\n`multiplier` scales the ATR offset (default `3`). `offset` shifts\nthe read window backwards (accepted on the surface).",
|
|
577
588
|
"examples": [
|
|
578
589
|
"const opts: ChandelierOpts = { length: 22, multiplier: 3 };"
|
|
579
590
|
],
|
|
@@ -606,7 +617,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
606
617
|
"fqn": "ChopOpts",
|
|
607
618
|
"kind": "type",
|
|
608
619
|
"title": "ChopOpts",
|
|
609
|
-
"summary": "Options bag for `ta.chop` (Choppiness Index). `offset` is the\nuniversal bar-shift (
|
|
620
|
+
"summary": "Options bag for `ta.chop` (Choppiness Index). `offset` is the\nuniversal bar-shift (accepted on the surface).\n`lineStyle` is a forward-compat plot-styling hint surfaced for\n§9.1 ergonomics — not consumed by the primitive itself.",
|
|
610
621
|
"examples": [
|
|
611
622
|
"const opts: ChopOpts = { offset: 0 };"
|
|
612
623
|
],
|
|
@@ -679,6 +690,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
679
690
|
"since": "0.4",
|
|
680
691
|
"stability": "stable"
|
|
681
692
|
},
|
|
693
|
+
"CompiledScriptBundle": {
|
|
694
|
+
"fqn": "CompiledScriptBundle",
|
|
695
|
+
"kind": "type",
|
|
696
|
+
"title": "CompiledScriptBundle",
|
|
697
|
+
"summary": "The compiled artefact for a `.chart.ts` file when it contains\nmultiple drawn indicators or any dependency graph. The Phase-7\nruntime accepts either this shape or the legacy\n`CompiledScriptObject` (single-script files).",
|
|
698
|
+
"examples": [
|
|
699
|
+
"declare const primary: CompiledScriptObject;\nconst bundle: CompiledScriptBundle = {\nprimary,\nsiblings: [],\ndependencies: [],\n};\nvoid bundle;"
|
|
700
|
+
],
|
|
701
|
+
"since": "0.7",
|
|
702
|
+
"stability": "stable"
|
|
703
|
+
},
|
|
682
704
|
"CompiledScriptObject": {
|
|
683
705
|
"fqn": "CompiledScriptObject",
|
|
684
706
|
"kind": "type",
|
|
@@ -716,7 +738,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
716
738
|
"fqn": "ConnorsRsiOpts",
|
|
717
739
|
"kind": "type",
|
|
718
740
|
"title": "ConnorsRsiOpts",
|
|
719
|
-
"summary": "Options bag for `ta.connorsRsi`. `rsiLength` / `streakLength` /\n`rocLength` default to Larry Connors' canonical `3` / `2` / `100`.\n`offset` shifts the read window backwards
|
|
741
|
+
"summary": "Options bag for `ta.connorsRsi`. `rsiLength` / `streakLength` /\n`rocLength` default to Larry Connors' canonical `3` / `2` / `100`.\n`offset` shifts the read window backwards.",
|
|
720
742
|
"examples": [
|
|
721
743
|
"const opts: ConnorsRsiOpts = { rsiLength: 3, streakLength: 2, rocLength: 100 };"
|
|
722
744
|
],
|
|
@@ -862,7 +884,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
862
884
|
"fqn": "defineDrawing",
|
|
863
885
|
"kind": "function",
|
|
864
886
|
"title": "defineDrawing(opts)",
|
|
865
|
-
"summary": "/**\nConstruct a Phase-3 drawing script object. Mirrors `defineIndicator`\nstructurally; only `manifest.kind` (`\"drawing\"`) and the declared\n`capabilities` (`[\"drawings\"]`) differ. The runtime treats indicator\nand drawing scripts identically at the per-bar level — the\ndiscriminator is a host-side hint the editor uses to distinguish\ndrawing scripts from indicator scripts in the script-picker UI\n
|
|
887
|
+
"summary": "/**\nConstruct a Phase-3 drawing script object. Mirrors `defineIndicator`\nstructurally; only `manifest.kind` (`\"drawing\"`) and the declared\n`capabilities` (`[\"drawings\"]`) differ. The runtime treats indicator\nand drawing scripts identically at the per-bar level — the\ndiscriminator is a host-side hint the editor uses to distinguish\ndrawing scripts from indicator scripts in the script-picker UI\n.",
|
|
866
888
|
"paramTable": [
|
|
867
889
|
{
|
|
868
890
|
"name": "opts",
|
|
@@ -927,6 +949,28 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
927
949
|
"since": "0.2",
|
|
928
950
|
"stability": "stable"
|
|
929
951
|
},
|
|
952
|
+
"depAccessorSentinel": {
|
|
953
|
+
"fqn": "depAccessorSentinel",
|
|
954
|
+
"kind": "property",
|
|
955
|
+
"title": "depAccessorSentinel",
|
|
956
|
+
"summary": "Sentinel thrown when `output` / `withInputs` are called outside the\ncompiler-rewritten bundle path. The Phase-7 compiler statically\nreplaces every consumer-side `.output(\"title\")` call site with a\nsynthesised `__chartlang_depOutput(...)` runtime call, and every\n`.withInputs({...})` chain with a folded dep manifest, so these\nbodies are unreachable when the bundle is loaded normally. Hand-\nrunning an un-compiled script in a unit test hits the sentinel,\nwhich is the desired failure.",
|
|
957
|
+
"examples": [
|
|
958
|
+
"try {\ndepAccessorSentinel(\"output(\\\"line\\\")\");\n} catch (err) {\nvoid (err as Error).message;\n}"
|
|
959
|
+
],
|
|
960
|
+
"since": "0.7",
|
|
961
|
+
"stability": "stable"
|
|
962
|
+
},
|
|
963
|
+
"DependencyDeclaration": {
|
|
964
|
+
"fqn": "DependencyDeclaration",
|
|
965
|
+
"kind": "type",
|
|
966
|
+
"title": "DependencyDeclaration",
|
|
967
|
+
"summary": "One node in a script's compiled dependency graph. Emitted by the\ncompiler's `extractDependencyGraph` pass (Task 2) and consumed by\nthe runtime's dep executor (Task 4).",
|
|
968
|
+
"examples": [
|
|
969
|
+
"const dep: DependencyDeclaration = {\nlocalId: \"fastTrend\",\nproducerName: \"Base Trend\",\nproducerSourcePath: \"trend-confirmation.chart.ts\",\nproducerExportName: \"default\",\neffectiveInputs: { length: 20 },\noutputs: [{ title: \"line\", kind: \"series-number\" }],\nisDrawn: false,\n};\nvoid dep;"
|
|
970
|
+
],
|
|
971
|
+
"since": "0.7",
|
|
972
|
+
"stability": "stable"
|
|
973
|
+
},
|
|
930
974
|
"DisjointChannelState": {
|
|
931
975
|
"fqn": "DisjointChannelState",
|
|
932
976
|
"kind": "type",
|
|
@@ -942,7 +986,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
942
986
|
"fqn": "DmiOpts",
|
|
943
987
|
"kind": "type",
|
|
944
988
|
"title": "DmiOpts",
|
|
945
|
-
"summary": "Options bag for `ta.dmi` (Directional Movement Index). `offset`\nshifts both output series in lockstep
|
|
989
|
+
"summary": "Options bag for `ta.dmi` (Directional Movement Index). `offset`\nshifts both output series in lockstep. `outputs`\ncarries per-output styling hints downstream `plot()` callsites\ncan lift defaults from; the runtime itself ignores it in Phase 2\n— script-author `plot(d.plusDi, { lineStyle })` is the styling\nseam.",
|
|
946
990
|
"examples": [
|
|
947
991
|
"const opts: DmiOpts = { offset: 0 };"
|
|
948
992
|
],
|
|
@@ -964,7 +1008,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
964
1008
|
"fqn": "DonchianOpts",
|
|
965
1009
|
"kind": "type",
|
|
966
1010
|
"title": "DonchianOpts",
|
|
967
|
-
"summary": "Options bag for `ta.donchian`. `offset` shifts the read window\nbackwards
|
|
1011
|
+
"summary": "Options bag for `ta.donchian`. `offset` shifts the read window\nbackwards. `outputs` carries per-output styling\nhints downstream `plot()` callsites can lift defaults from; the\nruntime itself ignores it in Phase 2.",
|
|
968
1012
|
"examples": [
|
|
969
1013
|
"const opts: DonchianOpts = { offset: 0 };"
|
|
970
1014
|
],
|
|
@@ -997,7 +1041,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
997
1041
|
"fqn": "DpoOpts",
|
|
998
1042
|
"kind": "type",
|
|
999
1043
|
"title": "DpoOpts",
|
|
1000
|
-
"summary": "Options bag for `ta.dpo`. `offset` shifts the read window backwards\n
|
|
1044
|
+
"summary": "Options bag for `ta.dpo`. `offset` shifts the read window backwards\n. `lineStyle` is a forward-compat plot-styling hint\nsurfaced for §9.1 ergonomics — not consumed by the primitive\nitself.",
|
|
1001
1045
|
"examples": [
|
|
1002
1046
|
"const opts: DpoOpts = { offset: 0 };"
|
|
1003
1047
|
],
|
|
@@ -1008,7 +1052,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1008
1052
|
"fqn": "draw",
|
|
1009
1053
|
"kind": "property",
|
|
1010
1054
|
"title": "draw",
|
|
1011
|
-
"summary": "Compile-time callable hole for the `draw.*` namespace. Every `get`\non the proxy returns a function that throws the\n`\"draw.<method> called outside compiled runtime\"` sentinel — same\nconvention as the `plot` / `hline` / `alert` stubs in\n`plot/plot.ts:plot` / `alert/alert.ts:alert`. The runtime swaps this\nstub for the real namespace at boot per the\n`@invinite-org/chartlang-runtime` `primitives.ts` seam
|
|
1055
|
+
"summary": "Compile-time callable hole for the `draw.*` namespace. Every `get`\non the proxy returns a function that throws the\n`\"draw.<method> called outside compiled runtime\"` sentinel — same\nconvention as the `plot` / `hline` / `alert` stubs in\n`plot/plot.ts:plot` / `alert/alert.ts:alert`. The runtime swaps this\nstub for the real namespace at boot per the\n`@invinite-org/chartlang-runtime` `primitives.ts` seam.",
|
|
1012
1056
|
"examples": [
|
|
1013
1057
|
"import { draw } from \"@invinite-org/chartlang-core\";\ntry {\ndraw.horizontalLine(0);\n} catch {\n// expected: \"draw.horizontalLine called outside compiled runtime\"\n}"
|
|
1014
1058
|
],
|
|
@@ -1019,7 +1063,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1019
1063
|
"fqn": "draw.abcdPattern",
|
|
1020
1064
|
"kind": "function",
|
|
1021
1065
|
"title": "draw.abcdPattern(anchors, opts?)",
|
|
1022
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1066
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.abcdPattern.",
|
|
1023
1067
|
"paramTable": [
|
|
1024
1068
|
{
|
|
1025
1069
|
"name": "anchors",
|
|
@@ -1039,7 +1083,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1039
1083
|
"fqn": "draw.arc",
|
|
1040
1084
|
"kind": "function",
|
|
1041
1085
|
"title": "draw.arc(anchors, opts?)",
|
|
1042
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1086
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.arc.",
|
|
1043
1087
|
"paramTable": [
|
|
1044
1088
|
{
|
|
1045
1089
|
"name": "anchors",
|
|
@@ -1059,7 +1103,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1059
1103
|
"fqn": "draw.arrow",
|
|
1060
1104
|
"kind": "function",
|
|
1061
1105
|
"title": "draw.arrow(a, b, opts?)",
|
|
1062
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1106
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.arrow.",
|
|
1063
1107
|
"paramTable": [
|
|
1064
1108
|
{
|
|
1065
1109
|
"name": "a",
|
|
@@ -1084,7 +1128,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1084
1128
|
"fqn": "draw.arrowMarkDown",
|
|
1085
1129
|
"kind": "function",
|
|
1086
1130
|
"title": "draw.arrowMarkDown(anchor, opts?)",
|
|
1087
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1131
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.arrowMarkDown.",
|
|
1088
1132
|
"paramTable": [
|
|
1089
1133
|
{
|
|
1090
1134
|
"name": "anchor",
|
|
@@ -1104,7 +1148,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1104
1148
|
"fqn": "draw.arrowMarker",
|
|
1105
1149
|
"kind": "function",
|
|
1106
1150
|
"title": "draw.arrowMarker(anchor, opts?)",
|
|
1107
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1151
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.arrowMarker.",
|
|
1108
1152
|
"paramTable": [
|
|
1109
1153
|
{
|
|
1110
1154
|
"name": "anchor",
|
|
@@ -1124,7 +1168,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1124
1168
|
"fqn": "draw.arrowMarkUp",
|
|
1125
1169
|
"kind": "function",
|
|
1126
1170
|
"title": "draw.arrowMarkUp(anchor, opts?)",
|
|
1127
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1171
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.arrowMarkUp.",
|
|
1128
1172
|
"paramTable": [
|
|
1129
1173
|
{
|
|
1130
1174
|
"name": "anchor",
|
|
@@ -1144,7 +1188,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1144
1188
|
"fqn": "draw.brush",
|
|
1145
1189
|
"kind": "function",
|
|
1146
1190
|
"title": "draw.brush(anchors, opts)",
|
|
1147
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1191
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.brush.",
|
|
1148
1192
|
"paramTable": [
|
|
1149
1193
|
{
|
|
1150
1194
|
"name": "anchors",
|
|
@@ -1164,7 +1208,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1164
1208
|
"fqn": "draw.circle",
|
|
1165
1209
|
"kind": "function",
|
|
1166
1210
|
"title": "draw.circle(centre, radiusAnchor, opts?)",
|
|
1167
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1211
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.circle.",
|
|
1168
1212
|
"paramTable": [
|
|
1169
1213
|
{
|
|
1170
1214
|
"name": "centre",
|
|
@@ -1189,7 +1233,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1189
1233
|
"fqn": "draw.crossLine",
|
|
1190
1234
|
"kind": "function",
|
|
1191
1235
|
"title": "draw.crossLine(anchor, opts?)",
|
|
1192
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1236
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.crossLine.",
|
|
1193
1237
|
"paramTable": [
|
|
1194
1238
|
{
|
|
1195
1239
|
"name": "anchor",
|
|
@@ -1209,7 +1253,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1209
1253
|
"fqn": "draw.curve",
|
|
1210
1254
|
"kind": "function",
|
|
1211
1255
|
"title": "draw.curve(anchors, opts?)",
|
|
1212
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1256
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.curve.",
|
|
1213
1257
|
"paramTable": [
|
|
1214
1258
|
{
|
|
1215
1259
|
"name": "anchors",
|
|
@@ -1229,7 +1273,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1229
1273
|
"fqn": "draw.cyclicLines",
|
|
1230
1274
|
"kind": "function",
|
|
1231
1275
|
"title": "draw.cyclicLines(a, b, opts?)",
|
|
1232
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1276
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.cyclicLines.",
|
|
1233
1277
|
"paramTable": [
|
|
1234
1278
|
{
|
|
1235
1279
|
"name": "a",
|
|
@@ -1254,7 +1298,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1254
1298
|
"fqn": "draw.cypherPattern",
|
|
1255
1299
|
"kind": "function",
|
|
1256
1300
|
"title": "draw.cypherPattern(anchors, opts?)",
|
|
1257
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1301
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.cypherPattern.",
|
|
1258
1302
|
"paramTable": [
|
|
1259
1303
|
{
|
|
1260
1304
|
"name": "anchors",
|
|
@@ -1274,7 +1318,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1274
1318
|
"fqn": "draw.disjointChannel",
|
|
1275
1319
|
"kind": "function",
|
|
1276
1320
|
"title": "draw.disjointChannel(anchors, opts?)",
|
|
1277
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1321
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.disjointChannel.",
|
|
1278
1322
|
"paramTable": [
|
|
1279
1323
|
{
|
|
1280
1324
|
"name": "anchors",
|
|
@@ -1294,7 +1338,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1294
1338
|
"fqn": "draw.doubleCurve",
|
|
1295
1339
|
"kind": "function",
|
|
1296
1340
|
"title": "draw.doubleCurve(anchors, opts?)",
|
|
1297
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1341
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.doubleCurve.",
|
|
1298
1342
|
"paramTable": [
|
|
1299
1343
|
{
|
|
1300
1344
|
"name": "anchors",
|
|
@@ -1314,7 +1358,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1314
1358
|
"fqn": "draw.elliottCorrectionWave",
|
|
1315
1359
|
"kind": "function",
|
|
1316
1360
|
"title": "draw.elliottCorrectionWave(anchors, opts?)",
|
|
1317
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1361
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.elliottCorrectionWave.",
|
|
1318
1362
|
"paramTable": [
|
|
1319
1363
|
{
|
|
1320
1364
|
"name": "anchors",
|
|
@@ -1334,7 +1378,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1334
1378
|
"fqn": "draw.elliottDoubleCombo",
|
|
1335
1379
|
"kind": "function",
|
|
1336
1380
|
"title": "draw.elliottDoubleCombo(anchors, opts?)",
|
|
1337
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1381
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.elliottDoubleCombo.",
|
|
1338
1382
|
"paramTable": [
|
|
1339
1383
|
{
|
|
1340
1384
|
"name": "anchors",
|
|
@@ -1354,7 +1398,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1354
1398
|
"fqn": "draw.elliottImpulseWave",
|
|
1355
1399
|
"kind": "function",
|
|
1356
1400
|
"title": "draw.elliottImpulseWave(anchors, opts?)",
|
|
1357
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1401
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.elliottImpulseWave.",
|
|
1358
1402
|
"paramTable": [
|
|
1359
1403
|
{
|
|
1360
1404
|
"name": "anchors",
|
|
@@ -1374,7 +1418,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1374
1418
|
"fqn": "draw.elliottTriangleWave",
|
|
1375
1419
|
"kind": "function",
|
|
1376
1420
|
"title": "draw.elliottTriangleWave(anchors, opts?)",
|
|
1377
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1421
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.elliottTriangleWave.",
|
|
1378
1422
|
"paramTable": [
|
|
1379
1423
|
{
|
|
1380
1424
|
"name": "anchors",
|
|
@@ -1394,7 +1438,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1394
1438
|
"fqn": "draw.elliottTripleCombo",
|
|
1395
1439
|
"kind": "function",
|
|
1396
1440
|
"title": "draw.elliottTripleCombo(anchors, opts?)",
|
|
1397
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1441
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.elliottTripleCombo.",
|
|
1398
1442
|
"paramTable": [
|
|
1399
1443
|
{
|
|
1400
1444
|
"name": "anchors",
|
|
@@ -1414,7 +1458,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1414
1458
|
"fqn": "draw.ellipse",
|
|
1415
1459
|
"kind": "function",
|
|
1416
1460
|
"title": "draw.ellipse(a, b, opts?)",
|
|
1417
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1461
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.ellipse.",
|
|
1418
1462
|
"paramTable": [
|
|
1419
1463
|
{
|
|
1420
1464
|
"name": "a",
|
|
@@ -1439,7 +1483,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1439
1483
|
"fqn": "draw.fibChannel",
|
|
1440
1484
|
"kind": "function",
|
|
1441
1485
|
"title": "draw.fibChannel(anchors, opts?)",
|
|
1442
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1486
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibChannel.",
|
|
1443
1487
|
"paramTable": [
|
|
1444
1488
|
{
|
|
1445
1489
|
"name": "anchors",
|
|
@@ -1459,7 +1503,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1459
1503
|
"fqn": "draw.fibCircles",
|
|
1460
1504
|
"kind": "function",
|
|
1461
1505
|
"title": "draw.fibCircles(a, b, opts?)",
|
|
1462
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1506
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibCircles.",
|
|
1463
1507
|
"paramTable": [
|
|
1464
1508
|
{
|
|
1465
1509
|
"name": "a",
|
|
@@ -1484,7 +1528,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1484
1528
|
"fqn": "draw.fibRetracement",
|
|
1485
1529
|
"kind": "function",
|
|
1486
1530
|
"title": "draw.fibRetracement(a, b, opts?)",
|
|
1487
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1531
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibRetracement.",
|
|
1488
1532
|
"paramTable": [
|
|
1489
1533
|
{
|
|
1490
1534
|
"name": "a",
|
|
@@ -1509,7 +1553,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1509
1553
|
"fqn": "draw.fibSpeedArcs",
|
|
1510
1554
|
"kind": "function",
|
|
1511
1555
|
"title": "draw.fibSpeedArcs(a, b, opts?)",
|
|
1512
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1556
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibSpeedArcs.",
|
|
1513
1557
|
"paramTable": [
|
|
1514
1558
|
{
|
|
1515
1559
|
"name": "a",
|
|
@@ -1534,7 +1578,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1534
1578
|
"fqn": "draw.fibSpeedFan",
|
|
1535
1579
|
"kind": "function",
|
|
1536
1580
|
"title": "draw.fibSpeedFan(a, b, opts?)",
|
|
1537
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1581
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibSpeedFan.",
|
|
1538
1582
|
"paramTable": [
|
|
1539
1583
|
{
|
|
1540
1584
|
"name": "a",
|
|
@@ -1559,7 +1603,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1559
1603
|
"fqn": "draw.fibSpiral",
|
|
1560
1604
|
"kind": "function",
|
|
1561
1605
|
"title": "draw.fibSpiral(a, b, opts?)",
|
|
1562
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1606
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibSpiral.",
|
|
1563
1607
|
"paramTable": [
|
|
1564
1608
|
{
|
|
1565
1609
|
"name": "a",
|
|
@@ -1584,7 +1628,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1584
1628
|
"fqn": "draw.fibTimeZone",
|
|
1585
1629
|
"kind": "function",
|
|
1586
1630
|
"title": "draw.fibTimeZone(a, b, opts?)",
|
|
1587
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1631
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibTimeZone.",
|
|
1588
1632
|
"paramTable": [
|
|
1589
1633
|
{
|
|
1590
1634
|
"name": "a",
|
|
@@ -1609,7 +1653,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1609
1653
|
"fqn": "draw.fibTrendExtension",
|
|
1610
1654
|
"kind": "function",
|
|
1611
1655
|
"title": "draw.fibTrendExtension(anchors, opts?)",
|
|
1612
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1656
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibTrendExtension.",
|
|
1613
1657
|
"paramTable": [
|
|
1614
1658
|
{
|
|
1615
1659
|
"name": "anchors",
|
|
@@ -1629,7 +1673,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1629
1673
|
"fqn": "draw.fibTrendTime",
|
|
1630
1674
|
"kind": "function",
|
|
1631
1675
|
"title": "draw.fibTrendTime(anchors, opts?)",
|
|
1632
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1676
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibTrendTime.",
|
|
1633
1677
|
"paramTable": [
|
|
1634
1678
|
{
|
|
1635
1679
|
"name": "anchors",
|
|
@@ -1649,7 +1693,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1649
1693
|
"fqn": "draw.fibWedge",
|
|
1650
1694
|
"kind": "function",
|
|
1651
1695
|
"title": "draw.fibWedge(anchors, opts?)",
|
|
1652
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1696
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.fibWedge.",
|
|
1653
1697
|
"paramTable": [
|
|
1654
1698
|
{
|
|
1655
1699
|
"name": "anchors",
|
|
@@ -1669,7 +1713,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1669
1713
|
"fqn": "draw.flatTopBottom",
|
|
1670
1714
|
"kind": "function",
|
|
1671
1715
|
"title": "draw.flatTopBottom(anchors, opts?)",
|
|
1672
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1716
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.flatTopBottom.",
|
|
1673
1717
|
"paramTable": [
|
|
1674
1718
|
{
|
|
1675
1719
|
"name": "anchors",
|
|
@@ -1689,7 +1733,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1689
1733
|
"fqn": "draw.frame",
|
|
1690
1734
|
"kind": "function",
|
|
1691
1735
|
"title": "draw.frame(a, b, opts?)",
|
|
1692
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1736
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.frame.",
|
|
1693
1737
|
"paramTable": [
|
|
1694
1738
|
{
|
|
1695
1739
|
"name": "a",
|
|
@@ -1714,7 +1758,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1714
1758
|
"fqn": "draw.gannBox",
|
|
1715
1759
|
"kind": "function",
|
|
1716
1760
|
"title": "draw.gannBox(a, b, opts?)",
|
|
1717
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1761
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.gannBox.",
|
|
1718
1762
|
"paramTable": [
|
|
1719
1763
|
{
|
|
1720
1764
|
"name": "a",
|
|
@@ -1739,7 +1783,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1739
1783
|
"fqn": "draw.gannFan",
|
|
1740
1784
|
"kind": "function",
|
|
1741
1785
|
"title": "draw.gannFan(a, b, opts?)",
|
|
1742
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1786
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.gannFan.",
|
|
1743
1787
|
"paramTable": [
|
|
1744
1788
|
{
|
|
1745
1789
|
"name": "a",
|
|
@@ -1764,7 +1808,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1764
1808
|
"fqn": "draw.gannSquare",
|
|
1765
1809
|
"kind": "function",
|
|
1766
1810
|
"title": "draw.gannSquare(a, b, opts?)",
|
|
1767
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1811
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.gannSquare.",
|
|
1768
1812
|
"paramTable": [
|
|
1769
1813
|
{
|
|
1770
1814
|
"name": "a",
|
|
@@ -1789,7 +1833,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1789
1833
|
"fqn": "draw.gannSquareFixed",
|
|
1790
1834
|
"kind": "function",
|
|
1791
1835
|
"title": "draw.gannSquareFixed(anchor, opts?)",
|
|
1792
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1836
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.gannSquareFixed.",
|
|
1793
1837
|
"paramTable": [
|
|
1794
1838
|
{
|
|
1795
1839
|
"name": "anchor",
|
|
@@ -1809,7 +1853,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1809
1853
|
"fqn": "draw.group",
|
|
1810
1854
|
"kind": "function",
|
|
1811
1855
|
"title": "draw.group(childHandleIds)",
|
|
1812
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1856
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.group.",
|
|
1813
1857
|
"paramTable": [
|
|
1814
1858
|
{
|
|
1815
1859
|
"name": "childHandleIds",
|
|
@@ -1824,7 +1868,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1824
1868
|
"fqn": "draw.headAndShoulders",
|
|
1825
1869
|
"kind": "function",
|
|
1826
1870
|
"title": "draw.headAndShoulders(anchors, opts?)",
|
|
1827
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1871
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.headAndShoulders.",
|
|
1828
1872
|
"paramTable": [
|
|
1829
1873
|
{
|
|
1830
1874
|
"name": "anchors",
|
|
@@ -1844,7 +1888,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1844
1888
|
"fqn": "draw.highlighter",
|
|
1845
1889
|
"kind": "function",
|
|
1846
1890
|
"title": "draw.highlighter(anchors, opts)",
|
|
1847
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1891
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.highlighter.",
|
|
1848
1892
|
"paramTable": [
|
|
1849
1893
|
{
|
|
1850
1894
|
"name": "anchors",
|
|
@@ -1864,7 +1908,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1864
1908
|
"fqn": "draw.horizontalLine",
|
|
1865
1909
|
"kind": "function",
|
|
1866
1910
|
"title": "draw.horizontalLine(price, opts?)",
|
|
1867
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1911
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.horizontalLine.",
|
|
1868
1912
|
"paramTable": [
|
|
1869
1913
|
{
|
|
1870
1914
|
"name": "price",
|
|
@@ -1884,7 +1928,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1884
1928
|
"fqn": "draw.horizontalRay",
|
|
1885
1929
|
"kind": "function",
|
|
1886
1930
|
"title": "draw.horizontalRay(anchor, opts?)",
|
|
1887
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1931
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.horizontalRay.",
|
|
1888
1932
|
"paramTable": [
|
|
1889
1933
|
{
|
|
1890
1934
|
"name": "anchor",
|
|
@@ -1904,7 +1948,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1904
1948
|
"fqn": "draw.line",
|
|
1905
1949
|
"kind": "function",
|
|
1906
1950
|
"title": "draw.line(a, b, opts?)",
|
|
1907
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1951
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.line.",
|
|
1908
1952
|
"paramTable": [
|
|
1909
1953
|
{
|
|
1910
1954
|
"name": "a",
|
|
@@ -1929,7 +1973,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1929
1973
|
"fqn": "draw.marker",
|
|
1930
1974
|
"kind": "function",
|
|
1931
1975
|
"title": "draw.marker(anchor, opts?)",
|
|
1932
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1976
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.marker.",
|
|
1933
1977
|
"paramTable": [
|
|
1934
1978
|
{
|
|
1935
1979
|
"name": "anchor",
|
|
@@ -1949,7 +1993,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1949
1993
|
"fqn": "draw.path",
|
|
1950
1994
|
"kind": "function",
|
|
1951
1995
|
"title": "draw.path(anchors, opts?)",
|
|
1952
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
1996
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.path.",
|
|
1953
1997
|
"paramTable": [
|
|
1954
1998
|
{
|
|
1955
1999
|
"name": "anchors",
|
|
@@ -1969,7 +2013,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1969
2013
|
"fqn": "draw.pen",
|
|
1970
2014
|
"kind": "function",
|
|
1971
2015
|
"title": "draw.pen(anchors, opts?)",
|
|
1972
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2016
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.pen.",
|
|
1973
2017
|
"paramTable": [
|
|
1974
2018
|
{
|
|
1975
2019
|
"name": "anchors",
|
|
@@ -1989,7 +2033,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
1989
2033
|
"fqn": "draw.pitchfan",
|
|
1990
2034
|
"kind": "function",
|
|
1991
2035
|
"title": "draw.pitchfan(anchors, opts?)",
|
|
1992
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2036
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.pitchfan.",
|
|
1993
2037
|
"paramTable": [
|
|
1994
2038
|
{
|
|
1995
2039
|
"name": "anchors",
|
|
@@ -2009,7 +2053,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2009
2053
|
"fqn": "draw.pitchfork",
|
|
2010
2054
|
"kind": "function",
|
|
2011
2055
|
"title": "draw.pitchfork(anchors, opts?)",
|
|
2012
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2056
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.pitchfork.",
|
|
2013
2057
|
"paramTable": [
|
|
2014
2058
|
{
|
|
2015
2059
|
"name": "anchors",
|
|
@@ -2029,7 +2073,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2029
2073
|
"fqn": "draw.polyline",
|
|
2030
2074
|
"kind": "function",
|
|
2031
2075
|
"title": "draw.polyline(anchors, opts?)",
|
|
2032
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2076
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.polyline.",
|
|
2033
2077
|
"paramTable": [
|
|
2034
2078
|
{
|
|
2035
2079
|
"name": "anchors",
|
|
@@ -2049,7 +2093,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2049
2093
|
"fqn": "draw.rectangle",
|
|
2050
2094
|
"kind": "function",
|
|
2051
2095
|
"title": "draw.rectangle(a, b, opts?)",
|
|
2052
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2096
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.rectangle.",
|
|
2053
2097
|
"paramTable": [
|
|
2054
2098
|
{
|
|
2055
2099
|
"name": "a",
|
|
@@ -2074,7 +2118,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2074
2118
|
"fqn": "draw.regressionTrend",
|
|
2075
2119
|
"kind": "function",
|
|
2076
2120
|
"title": "draw.regressionTrend(a, b, opts?)",
|
|
2077
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2121
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.regressionTrend.",
|
|
2078
2122
|
"paramTable": [
|
|
2079
2123
|
{
|
|
2080
2124
|
"name": "a",
|
|
@@ -2099,7 +2143,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2099
2143
|
"fqn": "draw.rotatedRectangle",
|
|
2100
2144
|
"kind": "function",
|
|
2101
2145
|
"title": "draw.rotatedRectangle(anchors, opts?)",
|
|
2102
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2146
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.rotatedRectangle.",
|
|
2103
2147
|
"paramTable": [
|
|
2104
2148
|
{
|
|
2105
2149
|
"name": "anchors",
|
|
@@ -2119,7 +2163,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2119
2163
|
"fqn": "draw.sineLine",
|
|
2120
2164
|
"kind": "function",
|
|
2121
2165
|
"title": "draw.sineLine(a, b, opts?)",
|
|
2122
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2166
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.sineLine.",
|
|
2123
2167
|
"paramTable": [
|
|
2124
2168
|
{
|
|
2125
2169
|
"name": "a",
|
|
@@ -2144,7 +2188,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2144
2188
|
"fqn": "draw.table",
|
|
2145
2189
|
"kind": "function",
|
|
2146
2190
|
"title": "draw.table(opts)",
|
|
2147
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2191
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.table.",
|
|
2148
2192
|
"paramTable": [
|
|
2149
2193
|
{
|
|
2150
2194
|
"name": "opts",
|
|
@@ -2159,7 +2203,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2159
2203
|
"fqn": "draw.text",
|
|
2160
2204
|
"kind": "function",
|
|
2161
2205
|
"title": "draw.text(anchor, body, opts?)",
|
|
2162
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2206
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.text.",
|
|
2163
2207
|
"paramTable": [
|
|
2164
2208
|
{
|
|
2165
2209
|
"name": "anchor",
|
|
@@ -2184,7 +2228,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2184
2228
|
"fqn": "draw.threeDrivesPattern",
|
|
2185
2229
|
"kind": "function",
|
|
2186
2230
|
"title": "draw.threeDrivesPattern(anchors, opts?)",
|
|
2187
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2231
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.threeDrivesPattern.",
|
|
2188
2232
|
"paramTable": [
|
|
2189
2233
|
{
|
|
2190
2234
|
"name": "anchors",
|
|
@@ -2204,7 +2248,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2204
2248
|
"fqn": "draw.timeCycles",
|
|
2205
2249
|
"kind": "function",
|
|
2206
2250
|
"title": "draw.timeCycles(a, b, opts?)",
|
|
2207
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2251
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.timeCycles.",
|
|
2208
2252
|
"paramTable": [
|
|
2209
2253
|
{
|
|
2210
2254
|
"name": "a",
|
|
@@ -2229,7 +2273,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2229
2273
|
"fqn": "draw.trendAngle",
|
|
2230
2274
|
"kind": "function",
|
|
2231
2275
|
"title": "draw.trendAngle(a, b, opts?)",
|
|
2232
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2276
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.trendAngle.",
|
|
2233
2277
|
"paramTable": [
|
|
2234
2278
|
{
|
|
2235
2279
|
"name": "a",
|
|
@@ -2254,7 +2298,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2254
2298
|
"fqn": "draw.trendChannel",
|
|
2255
2299
|
"kind": "function",
|
|
2256
2300
|
"title": "draw.trendChannel(anchors, opts?)",
|
|
2257
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2301
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.trendChannel.",
|
|
2258
2302
|
"paramTable": [
|
|
2259
2303
|
{
|
|
2260
2304
|
"name": "anchors",
|
|
@@ -2274,7 +2318,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2274
2318
|
"fqn": "draw.triangle",
|
|
2275
2319
|
"kind": "function",
|
|
2276
2320
|
"title": "draw.triangle(anchors, opts?)",
|
|
2277
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2321
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.triangle.",
|
|
2278
2322
|
"paramTable": [
|
|
2279
2323
|
{
|
|
2280
2324
|
"name": "anchors",
|
|
@@ -2294,7 +2338,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2294
2338
|
"fqn": "draw.trianglePattern",
|
|
2295
2339
|
"kind": "function",
|
|
2296
2340
|
"title": "draw.trianglePattern(anchors, opts?)",
|
|
2297
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2341
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.trianglePattern.",
|
|
2298
2342
|
"paramTable": [
|
|
2299
2343
|
{
|
|
2300
2344
|
"name": "anchors",
|
|
@@ -2314,7 +2358,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2314
2358
|
"fqn": "draw.verticalLine",
|
|
2315
2359
|
"kind": "function",
|
|
2316
2360
|
"title": "draw.verticalLine(time, opts?)",
|
|
2317
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2361
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.verticalLine.",
|
|
2318
2362
|
"paramTable": [
|
|
2319
2363
|
{
|
|
2320
2364
|
"name": "time",
|
|
@@ -2334,7 +2378,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2334
2378
|
"fqn": "draw.xabcdPattern",
|
|
2335
2379
|
"kind": "function",
|
|
2336
2380
|
"title": "draw.xabcdPattern(anchors, opts?)",
|
|
2337
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2381
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull. Method: draw.xabcdPattern.",
|
|
2338
2382
|
"paramTable": [
|
|
2339
2383
|
{
|
|
2340
2384
|
"name": "anchors",
|
|
@@ -2376,7 +2420,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2376
2420
|
"fqn": "DrawingCounts",
|
|
2377
2421
|
"kind": "type",
|
|
2378
2422
|
"title": "DrawingCounts",
|
|
2379
|
-
"summary": "Per-script drawing-emission budget. Excess `draw.*` calls drop with\n`drawing-budget-exceeded` once a bucket is full. Mirrors Pine's\n`max_*_count` family. The runtime enforces\n`min(scriptManifest.maxDrawings, adapter.capabilities.maxDrawingsPerScript)`\nper bucket
|
|
2423
|
+
"summary": "Per-script drawing-emission budget. Excess `draw.*` calls drop with\n`drawing-budget-exceeded` once a bucket is full. Mirrors Pine's\n`max_*_count` family. The runtime enforces\n`min(scriptManifest.maxDrawings, adapter.capabilities.maxDrawingsPerScript)`\nper bucket.",
|
|
2380
2424
|
"examples": [
|
|
2381
2425
|
"const c: DrawingCounts = {\nlines: 50, labels: 50, boxes: 50, polylines: 50, other: 50,\n};\nvoid c;"
|
|
2382
2426
|
],
|
|
@@ -2409,7 +2453,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2409
2453
|
"fqn": "DrawingMeta",
|
|
2410
2454
|
"kind": "type",
|
|
2411
2455
|
"title": "DrawingMeta",
|
|
2412
|
-
"summary": "/**\nScript-mutable metadata fields every {@link DrawingState} variant\ncarries. `name` surfaces in the editor layer; `visible: false` hides\nthe drawing without removing it.
|
|
2456
|
+
"summary": "/**\nScript-mutable metadata fields every {@link DrawingState} variant\ncarries. `name` surfaces in the editor layer; `visible: false` hides\nthe drawing without removing it.",
|
|
2413
2457
|
"examples": [
|
|
2414
2458
|
"const m: DrawingMeta = { name: \"Support\", visible: true };\nvoid m;"
|
|
2415
2459
|
],
|
|
@@ -2420,7 +2464,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2420
2464
|
"fqn": "DrawingState",
|
|
2421
2465
|
"kind": "type",
|
|
2422
2466
|
"title": "DrawingState",
|
|
2423
|
-
"summary": "/**\nPer-kind state union — every {@link DrawingKind} maps to exactly one\nvariant. Collab-only fields (Yjs `id`, `layerId`, `createdAt`,\n`authorId`, `parentGroupId`, `parentFrameId`, `visibleIntervals`)\nfrom the invinite source are stripped
|
|
2467
|
+
"summary": "/**\nPer-kind state union — every {@link DrawingKind} maps to exactly one\nvariant. Collab-only fields (Yjs `id`, `layerId`, `createdAt`,\n`authorId`, `parentGroupId`, `parentFrameId`, `visibleIntervals`)\nfrom the invinite source are stripped.",
|
|
2424
2468
|
"examples": [
|
|
2425
2469
|
"const s: DrawingState = {\nkind: \"horizontal-line\",\nprice: 100,\nstyle: { color: \"#3b82f6\" },\n};\nvoid s;"
|
|
2426
2470
|
],
|
|
@@ -2431,7 +2475,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2431
2475
|
"fqn": "DrawNamespace",
|
|
2432
2476
|
"kind": "type",
|
|
2433
2477
|
"title": "DrawNamespace",
|
|
2434
|
-
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind
|
|
2478
|
+
"summary": "/**\nThe script-facing `draw.*` namespace. Each method is stateful across\ncalls — the compiler injects a callsite slot id so the runtime can\ntrack the per-handle `DrawingState` across bars — and returns a\n{@link DrawingHandle} . Adapters that omit a kind degrade silently\nwith `unsupported-drawing-kind`; excess emissions\ndrop with `drawing-budget-exceeded` once the per-script bucket is\nfull.",
|
|
2435
2479
|
"examples": [
|
|
2436
2480
|
"import type { DrawNamespace } from \"@invinite-org/chartlang-core\";\nconst _ns: DrawNamespace | null = null;\nvoid _ns;"
|
|
2437
2481
|
],
|
|
@@ -2530,7 +2574,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2530
2574
|
"fqn": "EnvelopeOpts",
|
|
2531
2575
|
"kind": "type",
|
|
2532
2576
|
"title": "EnvelopeOpts",
|
|
2533
|
-
"summary": "Options bag for `ta.envelope` (price-percent envelope). `length`\nis the MA period (default `20`); `percent` is the band offset as a\npercentage of the middle MA (default `10`); `maType` picks the MA\nkind (default `\"sma\"`). `offset` is the universal bar-shift\n(
|
|
2577
|
+
"summary": "Options bag for `ta.envelope` (price-percent envelope). `length`\nis the MA period (default `20`); `percent` is the band offset as a\npercentage of the middle MA (default `10`); `maType` picks the MA\nkind (default `\"sma\"`). `offset` is the universal bar-shift\n(accepted on the surface).",
|
|
2534
2578
|
"examples": [
|
|
2535
2579
|
"const opts: EnvelopeOpts = { length: 20, percent: 10, maType: \"sma\" };"
|
|
2536
2580
|
],
|
|
@@ -2718,7 +2762,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2718
2762
|
"fqn": "FisherOpts",
|
|
2719
2763
|
"kind": "type",
|
|
2720
2764
|
"title": "FisherOpts",
|
|
2721
|
-
"summary": "Options bag for `ta.fisher`. `length` is positional on the call\n(`ta.fisher(length, opts?)`); the bag carries only the universal\n`offset` (
|
|
2765
|
+
"summary": "Options bag for `ta.fisher`. `length` is positional on the call\n(`ta.fisher(length, opts?)`); the bag carries only the universal\n`offset` (accepted on the surface).",
|
|
2722
2766
|
"examples": [
|
|
2723
2767
|
"const opts: FisherOpts = { offset: 0 };"
|
|
2724
2768
|
],
|
|
@@ -2929,7 +2973,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2929
2973
|
"fqn": "HighestOpts",
|
|
2930
2974
|
"kind": "type",
|
|
2931
2975
|
"title": "HighestOpts",
|
|
2932
|
-
"summary": "Options bag for `ta.highest`. `offset` shifts the read window backwards\nby `n` bars (Phase-2 backfill
|
|
2976
|
+
"summary": "Options bag for `ta.highest`. `offset` shifts the read window backwards\nby `n` bars (Phase-2 backfill).",
|
|
2933
2977
|
"examples": [
|
|
2934
2978
|
"const opts: HighestOpts = { offset: 0 };"
|
|
2935
2979
|
],
|
|
@@ -2985,9 +3029,9 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
2985
3029
|
"fqn": "HLineOpts",
|
|
2986
3030
|
"kind": "type",
|
|
2987
3031
|
"title": "HLineOpts",
|
|
2988
|
-
"summary": "
|
|
3032
|
+
"summary": "/**\nStyling options accepted by `hline(...)`. `pane` follows the same shape as\n{@link PlotOpts.pane} : omit to fall back to the script's manifest-resolved\ndefault (overlay unless `defineIndicator({ overlay: false })` was declared);\n`\"overlay\"` pins the line to the price pane; `\"new\"` opens / joins the\nper-script subpane; named panes route to a shared subpane key.",
|
|
2989
3033
|
"examples": [
|
|
2990
|
-
"const opts: HLineOpts = {
|
|
3034
|
+
"const opts: HLineOpts = {\ncolor: \"#ef4444\",\ntitle: \"RSI 70\",\nlineStyle: \"dashed\",\npane: \"new\",\n};"
|
|
2991
3035
|
],
|
|
2992
3036
|
"since": "0.1",
|
|
2993
3037
|
"stability": "stable"
|
|
@@ -3073,7 +3117,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3073
3117
|
"fqn": "HvOpts",
|
|
3074
3118
|
"kind": "type",
|
|
3075
3119
|
"title": "HvOpts",
|
|
3076
|
-
"summary": "Options bag for `ta.historicalVolatility`. `annualisationFactor`\ndefaults to `365` (TradingView's \"Crypto\" / 24-7 convention; use\n`252` for trading-day equity series). `offset` shifts the read\nwindow backwards
|
|
3120
|
+
"summary": "Options bag for `ta.historicalVolatility`. `annualisationFactor`\ndefaults to `365` (TradingView's \"Crypto\" / 24-7 convention; use\n`252` for trading-day equity series). `offset` shifts the read\nwindow backwards.",
|
|
3077
3121
|
"examples": [
|
|
3078
3122
|
"const opts: HvOpts = { annualisationFactor: 252 };"
|
|
3079
3123
|
],
|
|
@@ -3084,7 +3128,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3084
3128
|
"fqn": "IchimokuOpts",
|
|
3085
3129
|
"kind": "type",
|
|
3086
3130
|
"title": "IchimokuOpts",
|
|
3087
|
-
"summary": "Options bag for `ta.ichimoku`. Defaults follow Pine / TradingView\ncanonical Ichimoku — `conversionLength = 9, baseLength = 26,\nleadingSpanBLength = 52, displacement = 26`. `offset` shifts all\nfive outputs in lockstep
|
|
3131
|
+
"summary": "Options bag for `ta.ichimoku`. Defaults follow Pine / TradingView\ncanonical Ichimoku — `conversionLength = 9, baseLength = 26,\nleadingSpanBLength = 52, displacement = 26`. `offset` shifts all\nfive outputs in lockstep. `outputs` carries\nper-output styling hints downstream `plot()` callsites can lift\ndefaults from; the runtime itself ignores it in Phase 2.",
|
|
3088
3132
|
"examples": [
|
|
3089
3133
|
"const opts: IchimokuOpts = {\nconversionLength: 9,\nbaseLength: 26,\nleadingSpanBLength: 52,\ndisplacement: 26,\n};"
|
|
3090
3134
|
],
|
|
@@ -3473,6 +3517,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3473
3517
|
"since": "0.6",
|
|
3474
3518
|
"stability": "stable"
|
|
3475
3519
|
},
|
|
3520
|
+
"isCompiledScriptBundle": {
|
|
3521
|
+
"fqn": "isCompiledScriptBundle",
|
|
3522
|
+
"kind": "property",
|
|
3523
|
+
"title": "isCompiledScriptBundle",
|
|
3524
|
+
"summary": "/**\nNarrowing helper that distinguishes the new\n{@link CompiledScriptBundle} envelope from the legacy single-script\n{@link CompiledScriptObject} . The runner uses it to pick the\nmulti-script execution path without re-parsing manifests.",
|
|
3525
|
+
"examples": [
|
|
3526
|
+
"declare const v: CompiledScriptObject | CompiledScriptBundle;\nif (isCompiledScriptBundle(v)) {\nvoid v.primary;\n} else {\nvoid v.manifest;\n}"
|
|
3527
|
+
],
|
|
3528
|
+
"since": "0.7",
|
|
3529
|
+
"stability": "stable"
|
|
3530
|
+
},
|
|
3476
3531
|
"isOpen": {
|
|
3477
3532
|
"fqn": "isOpen",
|
|
3478
3533
|
"kind": "function",
|
|
@@ -3527,7 +3582,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3527
3582
|
"fqn": "KeltnerOpts",
|
|
3528
3583
|
"kind": "type",
|
|
3529
3584
|
"title": "KeltnerOpts",
|
|
3530
|
-
"summary": "Options bag for `ta.keltner` (Keltner Channels). `length` is the\nMA / ATR period (default `20`); `multiplier` scales the ATR-derived\nband offset from the middle MA (default `2`); `maType` picks the\nmiddle MA kind (default `\"ema\"` per the Linda Raschke / TradingView\ncanonical form — Chester Keltner's original used SMA over a hand-\nrolled \"typical range\", but every modern reference defaults to EMA\nover close + Wilder ATR). `offset` is the universal bar-shift\n(
|
|
3585
|
+
"summary": "Options bag for `ta.keltner` (Keltner Channels). `length` is the\nMA / ATR period (default `20`); `multiplier` scales the ATR-derived\nband offset from the middle MA (default `2`); `maType` picks the\nmiddle MA kind (default `\"ema\"` per the Linda Raschke / TradingView\ncanonical form — Chester Keltner's original used SMA over a hand-\nrolled \"typical range\", but every modern reference defaults to EMA\nover close + Wilder ATR). `offset` is the universal bar-shift\n(accepted on the surface). `outputs` carries\nper-output styling hints downstream `plot()` callsites can lift\ndefaults from; the runtime itself ignores it in Phase 2.",
|
|
3531
3586
|
"examples": [
|
|
3532
3587
|
"const opts: KeltnerOpts = { length: 20, multiplier: 2, maType: \"ema\" };"
|
|
3533
3588
|
],
|
|
@@ -3582,7 +3637,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3582
3637
|
"fqn": "KlingerOpts",
|
|
3583
3638
|
"kind": "type",
|
|
3584
3639
|
"title": "KlingerOpts",
|
|
3585
|
-
"summary": "Options bag for `ta.klinger` (Klinger Volume Oscillator). Defaults\n`(fastLength=34, slowLength=55, signalLength=13)` match invinite.\n`offset` shifts the read window backwards (
|
|
3640
|
+
"summary": "Options bag for `ta.klinger` (Klinger Volume Oscillator). Defaults\n`(fastLength=34, slowLength=55, signalLength=13)` match invinite.\n`offset` shifts the read window backwards (accepted\non the surface).",
|
|
3586
3641
|
"examples": [
|
|
3587
3642
|
"const opts: KlingerOpts = { fastLength: 34, slowLength: 55, signalLength: 13 };"
|
|
3588
3643
|
],
|
|
@@ -3604,7 +3659,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3604
3659
|
"fqn": "KstOpts",
|
|
3605
3660
|
"kind": "type",
|
|
3606
3661
|
"title": "KstOpts",
|
|
3607
|
-
"summary": "Options bag for `ta.kst` (Know Sure Thing). Defaults match Pring's\ncanonical settings `(10, 15, 20, 30, 10, 10, 10, 15, 9)`. Source is\npositional (`ta.kst(source, opts?)`). `offset` shifts the read window\nbackwards (
|
|
3662
|
+
"summary": "Options bag for `ta.kst` (Know Sure Thing). Defaults match Pring's\ncanonical settings `(10, 15, 20, 30, 10, 10, 10, 15, 9)`. Source is\npositional (`ta.kst(source, opts?)`). `offset` shifts the read window\nbackwards (accepted on the surface).",
|
|
3608
3663
|
"examples": [
|
|
3609
3664
|
"const opts: KstOpts = { roc1Length: 10, roc2Length: 15, roc3Length: 20, roc4Length: 30 };"
|
|
3610
3665
|
],
|
|
@@ -3626,7 +3681,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3626
3681
|
"fqn": "LineDrawStyle",
|
|
3627
3682
|
"kind": "type",
|
|
3628
3683
|
"title": "LineDrawStyle",
|
|
3629
|
-
"summary": "Line / ray / horizontal-line / vertical-line / channel-edge stroke\nstyle. `extendLeft` / `extendRight` collapse the invinite `ray` and\n`extended-line` tools into a single `line` kind
|
|
3684
|
+
"summary": "Line / ray / horizontal-line / vertical-line / channel-edge stroke\nstyle. `extendLeft` / `extendRight` collapse the invinite `ray` and\n`extended-line` tools into a single `line` kind.",
|
|
3630
3685
|
"examples": [
|
|
3631
3686
|
"const s: LineDrawStyle = { color: \"#3b82f6\", lineWidth: 2, lineStyle: \"solid\" };\nvoid s;"
|
|
3632
3687
|
],
|
|
@@ -3637,7 +3692,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3637
3692
|
"fqn": "LineState",
|
|
3638
3693
|
"kind": "type",
|
|
3639
3694
|
"title": "LineState",
|
|
3640
|
-
"summary": "`line` — two-anchor straight line. Carries `extendLeft` /\n`extendRight` flags so the invinite `ray` / `extended-line` tools\ncollapse into this single kind
|
|
3695
|
+
"summary": "`line` — two-anchor straight line. Carries `extendLeft` /\n`extendRight` flags so the invinite `ray` / `extended-line` tools\ncollapse into this single kind.",
|
|
3641
3696
|
"examples": [
|
|
3642
3697
|
"const s: LineState = {\nkind: \"line\",\nanchors: [{ time: 1, price: 1 }, { time: 2, price: 2 }],\nstyle: {},\n};\nvoid s;"
|
|
3643
3698
|
],
|
|
@@ -3737,7 +3792,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3737
3792
|
"fqn": "MaRibbonOpts",
|
|
3738
3793
|
"kind": "type",
|
|
3739
3794
|
"title": "MaRibbonOpts",
|
|
3740
|
-
"summary": "Options bag for `ta.maRibbon` (a fan of K MAs at different lengths).\nDefaults: `lengths = [10, 20, 30, 40, 50]`, `maType = \"sma\"`.\n`offset` is the universal bar-shift
|
|
3795
|
+
"summary": "Options bag for `ta.maRibbon` (a fan of K MAs at different lengths).\nDefaults: `lengths = [10, 20, 30, 40, 50]`, `maType = \"sma\"`.\n`offset` is the universal bar-shift applied to\nevery output series. `outputs` is forward-compat per-key plot styling\n(typed but not consumed by the runtime impl).",
|
|
3741
3796
|
"examples": [
|
|
3742
3797
|
"const opts: MaRibbonOpts = { lengths: [10, 20, 30], maType: \"ema\" };"
|
|
3743
3798
|
],
|
|
@@ -3770,7 +3825,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3770
3825
|
"fqn": "MassIndexOpts",
|
|
3771
3826
|
"kind": "type",
|
|
3772
3827
|
"title": "MassIndexOpts",
|
|
3773
|
-
"summary": "Options bag for `ta.massIndex`. `emaLength` defaults to `9` (the\ninner EMA-of-range and outer EMA-of-EMA window); `sumLength`\ndefaults to `25` (the rolling-sum-of-ratio window). `offset`\nshifts the read window backwards
|
|
3828
|
+
"summary": "Options bag for `ta.massIndex`. `emaLength` defaults to `9` (the\ninner EMA-of-range and outer EMA-of-EMA window); `sumLength`\ndefaults to `25` (the rolling-sum-of-ratio window). `offset`\nshifts the read window backwards.",
|
|
3774
3829
|
"examples": [
|
|
3775
3830
|
"const opts: MassIndexOpts = { emaLength: 9, sumLength: 25 };"
|
|
3776
3831
|
],
|
|
@@ -3905,13 +3960,24 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3905
3960
|
"fqn": "ObvOpts",
|
|
3906
3961
|
"kind": "type",
|
|
3907
3962
|
"title": "ObvOpts",
|
|
3908
|
-
"summary": "Options bag for `ta.obv` (On-Balance Volume). `offset` shifts the\nread window backwards (
|
|
3963
|
+
"summary": "Options bag for `ta.obv` (On-Balance Volume). `offset` shifts the\nread window backwards (universal offset). `lineStyle`\nis a forward-compat plot-styling hint surfaced for §9.1 ergonomics —\nnot consumed by the primitive itself.",
|
|
3909
3964
|
"examples": [
|
|
3910
3965
|
"const opts: ObvOpts = { offset: 0 };"
|
|
3911
3966
|
],
|
|
3912
3967
|
"since": "0.2",
|
|
3913
3968
|
"stability": "stable"
|
|
3914
3969
|
},
|
|
3970
|
+
"OutputDeclaration": {
|
|
3971
|
+
"fqn": "OutputDeclaration",
|
|
3972
|
+
"kind": "type",
|
|
3973
|
+
"title": "OutputDeclaration",
|
|
3974
|
+
"summary": "One titled output a script exposes for consumption by other\nindicators. Derived from the producer's `plot(value, { title })`\ncalls during compile. `title` is the key consumers reference via\n`<binding>.output(\"title\")`.",
|
|
3975
|
+
"examples": [
|
|
3976
|
+
"const out: OutputDeclaration = {\ntitle: \"line\",\nkind: \"series-number\",\n};\nvoid out;"
|
|
3977
|
+
],
|
|
3978
|
+
"since": "0.7",
|
|
3979
|
+
"stability": "stable"
|
|
3980
|
+
},
|
|
3915
3981
|
"parseColor": {
|
|
3916
3982
|
"fqn": "parseColor",
|
|
3917
3983
|
"kind": "function",
|
|
@@ -3978,7 +4044,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3978
4044
|
"fqn": "PitchforkState",
|
|
3979
4045
|
"kind": "type",
|
|
3980
4046
|
"title": "PitchforkState",
|
|
3981
|
-
"summary": "`pitchfork` — Andrews pitchfork. The `variant` discriminator collapses\nthe four invinite tools (`standard` / `schiff` / `modifiedSchiff` /\n`inside`) into one kind
|
|
4047
|
+
"summary": "`pitchfork` — Andrews pitchfork. The `variant` discriminator collapses\nthe four invinite tools (`standard` / `schiff` / `modifiedSchiff` /\n`inside`) into one kind.",
|
|
3982
4048
|
"examples": [
|
|
3983
4049
|
"const s: PitchforkState = {\nkind: \"pitchfork\",\nvariant: \"modifiedSchiff\",\nanchors: [\n{ time: 0, price: 0 },\n{ time: 1, price: 1 },\n{ time: 2, price: 0.5 },\n],\nstyle: {},\n};\nvoid s;"
|
|
3984
4050
|
],
|
|
@@ -3989,7 +4055,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
3989
4055
|
"fqn": "PivotsHighLowOpts",
|
|
3990
4056
|
"kind": "type",
|
|
3991
4057
|
"title": "PivotsHighLowOpts",
|
|
3992
|
-
"summary": "Options bag for `ta.pivotsHighLow`. `leftLength` / `rightLength`\ndefault to `4` (a 9-bar centred window); they may differ to surface\nasymmetric `ta.pivothigh` / `ta.pivotlow` behaviour. `offset` shifts\nthe read window backwards (
|
|
4058
|
+
"summary": "Options bag for `ta.pivotsHighLow`. `leftLength` / `rightLength`\ndefault to `4` (a 9-bar centred window); they may differ to surface\nasymmetric `ta.pivothigh` / `ta.pivotlow` behaviour. `offset` shifts\nthe read window backwards (accepted on the surface).",
|
|
3993
4059
|
"examples": [
|
|
3994
4060
|
"const opts: PivotsHighLowOpts = { leftLength: 4, rightLength: 4 };"
|
|
3995
4061
|
],
|
|
@@ -4011,7 +4077,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4011
4077
|
"fqn": "PivotsStandardOpts",
|
|
4012
4078
|
"kind": "type",
|
|
4013
4079
|
"title": "PivotsStandardOpts",
|
|
4014
|
-
"summary": "Options bag for `ta.pivotsStandard`. `system` picks the formula\nfamily (default `\"classic\"`). `offset` shifts the read window\nbackwards (
|
|
4080
|
+
"summary": "Options bag for `ta.pivotsStandard`. `system` picks the formula\nfamily (default `\"classic\"`). `offset` shifts the read window\nbackwards (accepted on the surface).",
|
|
4015
4081
|
"examples": [
|
|
4016
4082
|
"const opts: PivotsStandardOpts = { system: \"fibonacci\" };"
|
|
4017
4083
|
],
|
|
@@ -4044,7 +4110,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4044
4110
|
"fqn": "plot",
|
|
4045
4111
|
"kind": "function",
|
|
4046
4112
|
"title": "plot(_value, _opts?)",
|
|
4047
|
-
"summary": "Compile-time callable hole for `plot(value, opts?)`. The compiler rewrites\nevery callsite
|
|
4113
|
+
"summary": "Compile-time callable hole for `plot(value, opts?)`. The compiler rewrites\nevery callsite to dispatch to the runtime's `plot` implementation;\ncalling this outside a compiled runtime throws the sentinel.",
|
|
4048
4114
|
"paramTable": [
|
|
4049
4115
|
{
|
|
4050
4116
|
"name": "_value",
|
|
@@ -4078,7 +4144,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4078
4144
|
"fqn": "PlotKind",
|
|
4079
4145
|
"kind": "type",
|
|
4080
4146
|
"title": "PlotKind",
|
|
4081
|
-
"summary": "Rendered-shape discriminator for `plot` emissions reaching the adapter.\nThe full 0.5 inventory is `line`, `step-line`, `horizontal-line`,\n`histogram`, `
|
|
4147
|
+
"summary": "Rendered-shape discriminator for `plot` emissions reaching the adapter.\nThe full 0.5 inventory is `line`, `step-line`, `horizontal-line`,\n`histogram`, `area`, `filled-band`, `label`, `marker`,\n`shape`, `character`, `arrow`, `candle-override`, `bar-override`,\n`bg-color`, `bar-color`, and `horizontal-histogram`. Every expansion is\nadditive — the `apiVersion: 1` script header stays unchanged.",
|
|
4082
4148
|
"examples": [
|
|
4083
4149
|
"const k: PlotKind = \"line\";\nconst histogram: PlotKind = \"histogram\";\nconst shape: PlotKind = \"shape\";\nvoid k; void histogram; void shape;"
|
|
4084
4150
|
],
|
|
@@ -4129,6 +4195,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4129
4195
|
"since": "0.2",
|
|
4130
4196
|
"stability": "stable"
|
|
4131
4197
|
},
|
|
4198
|
+
"PlotOverride": {
|
|
4199
|
+
"fqn": "PlotOverride",
|
|
4200
|
+
"kind": "type",
|
|
4201
|
+
"title": "PlotOverride",
|
|
4202
|
+
"summary": "Host-supplied presentation override for a single plot slot, keyed by\n`PlotEmission.slotId`. Applied by the runtime at emit time; never\naffects `compute`. `lineWidth` / `lineStyle` apply only to the\nline-family plot kinds (`line`, `step-line`, `horizontal-line`,\n`area`); ignored as a silent no-op on other kinds.",
|
|
4203
|
+
"examples": [
|
|
4204
|
+
"const override: PlotOverride = {\nvisible: false,\ncolor: \"#ff0000\",\nlineWidth: 2,\nlineStyle: \"dashed\",\n};\nvoid override;"
|
|
4205
|
+
],
|
|
4206
|
+
"since": "0.8",
|
|
4207
|
+
"stability": "stable"
|
|
4208
|
+
},
|
|
4132
4209
|
"PlotShapeGlyph": {
|
|
4133
4210
|
"fqn": "PlotShapeGlyph",
|
|
4134
4211
|
"kind": "type",
|
|
@@ -4140,6 +4217,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4140
4217
|
"since": "0.5",
|
|
4141
4218
|
"stability": "stable"
|
|
4142
4219
|
},
|
|
4220
|
+
"PlotSlotDescriptor": {
|
|
4221
|
+
"fqn": "PlotSlotDescriptor",
|
|
4222
|
+
"kind": "type",
|
|
4223
|
+
"title": "PlotSlotDescriptor",
|
|
4224
|
+
"summary": "One plotted-slot descriptor in `ScriptManifest.plots`. The compiler\nemits one entry per `plot()` / `plot.*()` / `hline()` callsite so an\nembedder can build a style/visibility UI keyed by the stable `slotId`\nbefore the first emission. `title` is present only when the call's\nopts carries a string-literal `title`.",
|
|
4225
|
+
"examples": [
|
|
4226
|
+
"const slot: PlotSlotDescriptor = {\nslotId: \"ema.ts:12:5#0\",\nkind: \"line\",\ntitle: \"EMA\",\n};\nvoid slot;"
|
|
4227
|
+
],
|
|
4228
|
+
"since": "0.8",
|
|
4229
|
+
"stability": "stable"
|
|
4230
|
+
},
|
|
4143
4231
|
"PmoOpts": {
|
|
4144
4232
|
"fqn": "PmoOpts",
|
|
4145
4233
|
"kind": "type",
|
|
@@ -4177,7 +4265,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4177
4265
|
"fqn": "PpoOpts",
|
|
4178
4266
|
"kind": "type",
|
|
4179
4267
|
"title": "PpoOpts",
|
|
4180
|
-
"summary": "Options bag for `ta.ppo`. `fastLength` / `slowLength` / `signalLength`\ndefault to the Appel-era `12` / `26` / `9` (mirrors `ta.macd`).\n`offset` shifts all three outputs (`ppo`, `signal`, `hist`) in\nlockstep per the universal `opts.offset` convention
|
|
4268
|
+
"summary": "Options bag for `ta.ppo`. `fastLength` / `slowLength` / `signalLength`\ndefault to the Appel-era `12` / `26` / `9` (mirrors `ta.macd`).\n`offset` shifts all three outputs (`ppo`, `signal`, `hist`) in\nlockstep per the universal `opts.offset` convention.",
|
|
4181
4269
|
"examples": [
|
|
4182
4270
|
"const opts: PpoOpts = { fastLength: 12, slowLength: 26, signalLength: 9 };"
|
|
4183
4271
|
],
|
|
@@ -4221,7 +4309,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4221
4309
|
"fqn": "PsarOpts",
|
|
4222
4310
|
"kind": "type",
|
|
4223
4311
|
"title": "PsarOpts",
|
|
4224
|
-
"summary": "Options bag for `ta.psar` (Parabolic SAR). `accelerationStart` /\n`accelerationStep` / `accelerationMax` default to the canonical\nWilder values `0.02` / `0.02` / `0.2`. `offset` shifts the read\nwindow backwards (
|
|
4312
|
+
"summary": "Options bag for `ta.psar` (Parabolic SAR). `accelerationStart` /\n`accelerationStep` / `accelerationMax` default to the canonical\nWilder values `0.02` / `0.02` / `0.2`. `offset` shifts the read\nwindow backwards (accepted on the surface).",
|
|
4225
4313
|
"examples": [
|
|
4226
4314
|
"const opts: PsarOpts = { accelerationStart: 0.02, accelerationStep: 0.02, accelerationMax: 0.2 };"
|
|
4227
4315
|
],
|
|
@@ -4254,7 +4342,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4254
4342
|
"fqn": "PvoOpts",
|
|
4255
4343
|
"kind": "type",
|
|
4256
4344
|
"title": "PvoOpts",
|
|
4257
|
-
"summary": "Options bag for `ta.pvo` (Percentage Volume Oscillator). MACD-shape\napplied to `bar.volume`. Defaults match Appel-era `12 / 26 / 9`\n(mirrors `ta.ppo` / `ta.macd`). `offset` shifts all three outputs\n(`pvo`, `signal`, `hist`) in lockstep per the universal `opts.offset`\nconvention
|
|
4345
|
+
"summary": "Options bag for `ta.pvo` (Percentage Volume Oscillator). MACD-shape\napplied to `bar.volume`. Defaults match Appel-era `12 / 26 / 9`\n(mirrors `ta.ppo` / `ta.macd`). `offset` shifts all three outputs\n(`pvo`, `signal`, `hist`) in lockstep per the universal `opts.offset`\nconvention.",
|
|
4258
4346
|
"examples": [
|
|
4259
4347
|
"const opts: PvoOpts = { fastLength: 12, slowLength: 26, signalLength: 9 };"
|
|
4260
4348
|
],
|
|
@@ -4276,7 +4364,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4276
4364
|
"fqn": "PvtOpts",
|
|
4277
4365
|
"kind": "type",
|
|
4278
4366
|
"title": "PvtOpts",
|
|
4279
|
-
"summary": "Options bag for `ta.pvt` (Price Volume Trend). Cumulative\n`volume · (close − prevClose) / prevClose`. `offset` shifts the\nread window backwards (
|
|
4367
|
+
"summary": "Options bag for `ta.pvt` (Price Volume Trend). Cumulative\n`volume · (close − prevClose) / prevClose`. `offset` shifts the\nread window backwards (universal offset). `lineStyle`\nis a forward-compat plot-styling hint surfaced for §9.1 ergonomics —\nnot consumed by the primitive itself.",
|
|
4280
4368
|
"examples": [
|
|
4281
4369
|
"const opts: PvtOpts = { offset: 0 };"
|
|
4282
4370
|
],
|
|
@@ -4485,6 +4573,17 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4485
4573
|
"since": "0.1",
|
|
4486
4574
|
"stability": "stable"
|
|
4487
4575
|
},
|
|
4576
|
+
"RunnerSnapshot": {
|
|
4577
|
+
"fqn": "RunnerSnapshot",
|
|
4578
|
+
"kind": "type",
|
|
4579
|
+
"title": "RunnerSnapshot",
|
|
4580
|
+
"summary": "/**\nPer-runner persistence section. Carries one runner's `state.*`\n(and primary-only TA) slot map keyed by `${slotIdPrefix}${slotId}:state`\n(Task 5). `slots` is `JsonValue` so the snapshot\nround-trips through `JSON.stringify` and structured-clone.",
|
|
4581
|
+
"examples": [
|
|
4582
|
+
"const r: RunnerSnapshot = {\nslots: { \"x:state\": { committed: 1, tentative: 1 } },\n};\nvoid r;"
|
|
4583
|
+
],
|
|
4584
|
+
"since": "0.7",
|
|
4585
|
+
"stability": "stable"
|
|
4586
|
+
},
|
|
4488
4587
|
"runtime": {
|
|
4489
4588
|
"fqn": "runtime",
|
|
4490
4589
|
"kind": "namespace",
|
|
@@ -4511,7 +4610,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4511
4610
|
"fqn": "RvgiOpts",
|
|
4512
4611
|
"kind": "type",
|
|
4513
4612
|
"title": "RvgiOpts",
|
|
4514
|
-
"summary": "Options bag for `ta.rvgi` (Relative Vigor Index). `length` is the SMA\nsmoothing of the 4-bar weighted numerator / denominator (default\n`10`). `offset` shifts the read window backwards (
|
|
4613
|
+
"summary": "Options bag for `ta.rvgi` (Relative Vigor Index). `length` is the SMA\nsmoothing of the 4-bar weighted numerator / denominator (default\n`10`). `offset` shifts the read window backwards (—\naccepted on the surface).",
|
|
4515
4614
|
"examples": [
|
|
4516
4615
|
"const opts: RvgiOpts = { length: 10 };"
|
|
4517
4616
|
],
|
|
@@ -4533,7 +4632,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4533
4632
|
"fqn": "RviOpts",
|
|
4534
4633
|
"kind": "type",
|
|
4535
4634
|
"title": "RviOpts",
|
|
4536
|
-
"summary": "Options bag for `ta.rvi`. `offset` shifts the read window\nbackwards
|
|
4635
|
+
"summary": "Options bag for `ta.rvi`. `offset` shifts the read window\nbackwards; `lineStyle` is a forward-compat\nplot-styling hint surfaced for §9.1 ergonomics.",
|
|
4537
4636
|
"examples": [
|
|
4538
4637
|
"const opts: RviOpts = { offset: 0 };"
|
|
4539
4638
|
],
|
|
@@ -4687,7 +4786,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4687
4786
|
"fqn": "SmaOpts",
|
|
4688
4787
|
"kind": "type",
|
|
4689
4788
|
"title": "SmaOpts",
|
|
4690
|
-
"summary": "Options bag for `ta.sma`. `offset` shifts the output forward by `n`\nbars per the universal `opts.offset` convention
|
|
4789
|
+
"summary": "Options bag for `ta.sma`. `offset` shifts the output forward by `n`\nbars per the universal `opts.offset` convention:\npositive `n` makes `series.current` return the value `n` bars ago,\nnegative `n` reads into the future (NaN at the head).",
|
|
4691
4790
|
"examples": [
|
|
4692
4791
|
"const opts: SmaOpts = { offset: 0 };"
|
|
4693
4792
|
],
|
|
@@ -4847,7 +4946,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4847
4946
|
"fqn": "STATEFUL_PRIMITIVES",
|
|
4848
4947
|
"kind": "property",
|
|
4849
4948
|
"title": "STATEFUL_PRIMITIVES",
|
|
4850
|
-
"summary": "Frozen set of every fully-qualified call name the compiler tracks for\nstatic-analysis (`stateful-call-inside-loop`) and slot-id injection\n
|
|
4949
|
+
"summary": "Frozen set of every fully-qualified call name the compiler tracks for\nstatic-analysis (`stateful-call-inside-loop`) and slot-id injection\n. Each entry carries a `slot` flag: `slot: true`\nprimitives allocate per-callsite hidden state and get a string-literal\nslot id injected as their first argument; `slot: false` primitives are\npure helpers that ride along in the set because Pine still forbids\nthem inside loops (e.g. `ta.nz`).",
|
|
4851
4950
|
"examples": [
|
|
4852
4951
|
"import { STATEFUL_PRIMITIVES } from \"@invinite-org/chartlang-core\";\nfor (const entry of STATEFUL_PRIMITIVES) {\nif (entry.name === \"ta.ema\" && entry.slot) {\n// compiler injects an id here\n}\n}"
|
|
4853
4952
|
],
|
|
@@ -4893,9 +4992,9 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4893
4992
|
"title": "StateSnapshot",
|
|
4894
4993
|
"summary": "Canonical persistent-store snapshot.",
|
|
4895
4994
|
"examples": [
|
|
4896
|
-
"const s: StateSnapshot = {\nlastBarTime: 1_700_000_000_000,\nstreams: {},\
|
|
4995
|
+
"const s: StateSnapshot = {\nlastBarTime: 1_700_000_000_000,\nstreams: {},\nsavedAt: 1_700_000_060_000,\nsnapshotVersion: 1,\nprimary: { slots: {} },\n};\nvoid s;"
|
|
4897
4996
|
],
|
|
4898
|
-
"since": "0.5",
|
|
4997
|
+
"since": "0.5 — widened to per-runner sections in 0.7",
|
|
4899
4998
|
"stability": "stable"
|
|
4900
4999
|
},
|
|
4901
5000
|
"StateStoreKey": {
|
|
@@ -4946,7 +5045,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4946
5045
|
"fqn": "StochRsiOpts",
|
|
4947
5046
|
"kind": "type",
|
|
4948
5047
|
"title": "StochRsiOpts",
|
|
4949
|
-
"summary": "Options bag for `ta.stochRsi`. `rsiLength` / `stochLength` /\n`kSmoothing` / `dSmoothing` default to the Pine-canonical\n`14` / `14` / `3` / `3` Stochastic-RSI settings. `offset`\nshifts the read window backwards
|
|
5048
|
+
"summary": "Options bag for `ta.stochRsi`. `rsiLength` / `stochLength` /\n`kSmoothing` / `dSmoothing` default to the Pine-canonical\n`14` / `14` / `3` / `3` Stochastic-RSI settings. `offset`\nshifts the read window backwards.",
|
|
4950
5049
|
"examples": [
|
|
4951
5050
|
"const opts: StochRsiOpts = { rsiLength: 14, stochLength: 14, kSmoothing: 3, dSmoothing: 3 };"
|
|
4952
5051
|
],
|
|
@@ -4990,7 +5089,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
4990
5089
|
"fqn": "SupertrendOpts",
|
|
4991
5090
|
"kind": "type",
|
|
4992
5091
|
"title": "SupertrendOpts",
|
|
4993
|
-
"summary": "Options bag for `ta.supertrend`. `length` is the ATR period\n(default `10`); `multiplier` scales the band offset from `hl2`\n(default `3`). `offset` shifts the read window backwards\n(
|
|
5092
|
+
"summary": "Options bag for `ta.supertrend`. `length` is the ATR period\n(default `10`); `multiplier` scales the band offset from `hl2`\n(default `3`). `offset` shifts the read window backwards\n(accepted on the surface). The source is hard-coded\nto `hl2` (Pine-canonical Supertrend); a `source` opt could land in\na follow-up.",
|
|
4994
5093
|
"examples": [
|
|
4995
5094
|
"const opts: SupertrendOpts = { length: 10, multiplier: 3 };"
|
|
4996
5095
|
],
|
|
@@ -6982,7 +7081,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
6982
7081
|
"fqn": "TablePosition",
|
|
6983
7082
|
"kind": "type",
|
|
6984
7083
|
"title": "TablePosition",
|
|
6985
|
-
"summary": "CSS-pixel viewport anchor used by `draw.table`. Tables are status\npanels, not world-space drawings, so the position resolves against\nthe adapter viewport
|
|
7084
|
+
"summary": "CSS-pixel viewport anchor used by `draw.table`. Tables are status\npanels, not world-space drawings, so the position resolves against\nthe adapter viewport.",
|
|
6986
7085
|
"examples": [
|
|
6987
7086
|
"const position: TablePosition = \"top-right\";\nvoid position;"
|
|
6988
7087
|
],
|
|
@@ -6993,7 +7092,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
6993
7092
|
"fqn": "TableState",
|
|
6994
7093
|
"kind": "type",
|
|
6995
7094
|
"title": "TableState",
|
|
6996
|
-
"summary": "`table` — CSS-pixel viewport-anchored dashboard/status panel. It\ndeliberately carries no world-space anchors; adapters resolve\n`position` against the current viewport
|
|
7095
|
+
"summary": "`table` — CSS-pixel viewport-anchored dashboard/status panel. It\ndeliberately carries no world-space anchors; adapters resolve\n`position` against the current viewport.",
|
|
6997
7096
|
"examples": [
|
|
6998
7097
|
"const s: TableState = {\nkind: \"table\",\nposition: \"top-right\",\ncells: [[{ text: \"P&L\" }, { text: \"+12.5%\", textColor: \"#16a34a\" }]],\n};\nvoid s;"
|
|
6999
7098
|
],
|
|
@@ -7169,7 +7268,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7169
7268
|
"fqn": "TrixOpts",
|
|
7170
7269
|
"kind": "type",
|
|
7171
7270
|
"title": "TrixOpts",
|
|
7172
|
-
"summary": "Options bag for `ta.trix` (Triple-smoothed EMA Rate-of-Change).\n`signalLength` is the EMA-smoothing length of the TRIX signal\nline (default `9`). `offset` shifts both output series in\nlockstep
|
|
7271
|
+
"summary": "Options bag for `ta.trix` (Triple-smoothed EMA Rate-of-Change).\n`signalLength` is the EMA-smoothing length of the TRIX signal\nline (default `9`). `offset` shifts both output series in\nlockstep.",
|
|
7173
7272
|
"examples": [
|
|
7174
7273
|
"const opts: TrixOpts = { signalLength: 9 };"
|
|
7175
7274
|
],
|
|
@@ -7290,7 +7389,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7290
7389
|
"fqn": "VolatilityStopOpts",
|
|
7291
7390
|
"kind": "type",
|
|
7292
7391
|
"title": "VolatilityStopOpts",
|
|
7293
|
-
"summary": "Options bag for `ta.volatilityStop`. `length` is the ATR period\n(default `20`); `multiplier` scales the ATR offset (default `2`).\n`offset` shifts the read window backwards (
|
|
7392
|
+
"summary": "Options bag for `ta.volatilityStop`. `length` is the ATR period\n(default `20`); `multiplier` scales the ATR offset (default `2`).\n`offset` shifts the read window backwards (accepted\non the surface). Source is hard-coded to `bar.close` (Pine\n`ta.vstop` convention); an explicit `source` opt could land in a\nfollow-up.",
|
|
7294
7393
|
"examples": [
|
|
7295
7394
|
"const opts: VolatilityStopOpts = { length: 20, multiplier: 2 };"
|
|
7296
7395
|
],
|
|
@@ -7312,7 +7411,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7312
7411
|
"fqn": "VolOpts",
|
|
7313
7412
|
"kind": "type",
|
|
7314
7413
|
"title": "VolOpts",
|
|
7315
|
-
"summary": "Options bag for `ta.vol`. `offset` shifts the read window backwards\n(
|
|
7414
|
+
"summary": "Options bag for `ta.vol`. `offset` shifts the read window backwards\n(universal offset). `ta.vol` is a pass-through of\n`bar.volume`; the opts bag exists so authors can attach the\nuniversal `offset` without an extra wrapper.",
|
|
7316
7415
|
"examples": [
|
|
7317
7416
|
"const opts: VolOpts = { offset: 0 };"
|
|
7318
7417
|
],
|
|
@@ -7334,7 +7433,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7334
7433
|
"fqn": "VortexOpts",
|
|
7335
7434
|
"kind": "type",
|
|
7336
7435
|
"title": "VortexOpts",
|
|
7337
|
-
"summary": "Options bag for `ta.vortex` (Botes & Siepman Vortex Indicator).\n`length` is positional on the call (`ta.vortex(length, opts?)`), so\nthe opts bag carries only the universal `offset`
|
|
7436
|
+
"summary": "Options bag for `ta.vortex` (Botes & Siepman Vortex Indicator).\n`length` is positional on the call (`ta.vortex(length, opts?)`), so\nthe opts bag carries only the universal `offset` +\nper-output styling hints. The runtime emits `NaN` on zero-TR\nwindows (chartlang surfaces the degenerate window — invinite emits\n0 in the same case).",
|
|
7338
7437
|
"examples": [
|
|
7339
7438
|
"const opts: VortexOpts = { offset: 0 };"
|
|
7340
7439
|
],
|
|
@@ -7356,7 +7455,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7356
7455
|
"fqn": "VwapOpts",
|
|
7357
7456
|
"kind": "type",
|
|
7358
7457
|
"title": "VwapOpts",
|
|
7359
|
-
"summary": "Options bag for `ta.vwap`. `source` selects the per-bar price\n(default `\"hlc3\"` per Pine). `offset` shifts the read window\nbackwards
|
|
7458
|
+
"summary": "Options bag for `ta.vwap`. `source` selects the per-bar price\n(default `\"hlc3\"` per Pine). `offset` shifts the read window\nbackwards.",
|
|
7360
7459
|
"examples": [
|
|
7361
7460
|
"const opts: VwapOpts = { source: \"hlc3\" };"
|
|
7362
7461
|
],
|
|
@@ -7435,7 +7534,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7435
7534
|
"fqn": "WilliamsFractalOpts",
|
|
7436
7535
|
"kind": "type",
|
|
7437
7536
|
"title": "WilliamsFractalOpts",
|
|
7438
|
-
"summary": "Options bag for `ta.williamsFractal`. `length` is the symmetric\nleft / right window size (default `2` — total 5-bar window: 2\nleft + centre + 2 right). `offset` shifts the read window\nbackwards (
|
|
7537
|
+
"summary": "Options bag for `ta.williamsFractal`. `length` is the symmetric\nleft / right window size (default `2` — total 5-bar window: 2\nleft + centre + 2 right). `offset` shifts the read window\nbackwards (accepted on the surface).",
|
|
7439
7538
|
"examples": [
|
|
7440
7539
|
"const opts: WilliamsFractalOpts = { length: 2 };"
|
|
7441
7540
|
],
|
|
@@ -7524,7 +7623,7 @@ export const HOVER_REGISTRY = Object.freeze({
|
|
|
7524
7623
|
"fqn": "ZigZagOpts",
|
|
7525
7624
|
"kind": "type",
|
|
7526
7625
|
"title": "ZigZagOpts",
|
|
7527
|
-
"summary": "Options bag for `ta.zigZag`. `deviation` is the percentage move\n(default `5`) required to confirm a reversal pivot from the running\ncandidate; `depth` is the minimum number of bars (default `10`) that\nmust elapse before a pivot can be confirmed. `offset` shifts the\nread window backwards (
|
|
7626
|
+
"summary": "Options bag for `ta.zigZag`. `deviation` is the percentage move\n(default `5`) required to confirm a reversal pivot from the running\ncandidate; `depth` is the minimum number of bars (default `10`) that\nmust elapse before a pivot can be confirmed. `offset` shifts the\nread window backwards (accepted on the surface).",
|
|
7528
7627
|
"examples": [
|
|
7529
7628
|
"const opts: ZigZagOpts = { deviation: 5, depth: 10 };"
|
|
7530
7629
|
],
|