openalgo-charts 2.2.2 → 2.2.3
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/README.md +18 -18
- package/dist/index.d.ts +1 -1
- package/dist/openalgo-charts.draw.mjs +1 -1
- package/dist/openalgo-charts.draw.mjs.map +1 -1
- package/dist/openalgo-charts.mjs +1 -1
- package/dist/openalgo-charts.mjs.map +1 -1
- package/dist/openalgo-charts.standalone.js +1 -1
- package/dist/openalgo-charts.standalone.js.map +1 -1
- package/dist/openalgo-charts.widget.mjs +1 -1
- package/dist/openalgo-charts.widget.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
**A from-scratch, dependency-free HTML5-canvas charting engine for OpenAlgo.**
|
|
6
6
|
|
|
7
|
-
Professional interactive charts, 102 built-in indicators plus your own custom ones, 85 drawing tools, order flow, market replay, linked chart grids, on-chart trading, vector SVG export and an optional WebGL2 backend. Eight lazy-loaded tiers, zero runtime dependencies, 76.
|
|
7
|
+
Professional interactive charts, 102 built-in indicators plus your own custom ones, 85 drawing tools, order flow, market replay, linked chart grids, on-chart trading, vector SVG export and an optional WebGL2 backend. Eight lazy-loaded tiers, zero runtime dependencies, 76.40 KB Brotli for the base engine, and a one-call widget tier that adds the toolbar, drawing rail, dialogs and shortcuts.
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/openalgo-charts)
|
|
10
10
|
[](./LICENSE)
|
|
11
|
-
[](#size-budget)
|
|
12
|
+
[](#develop)
|
|
13
13
|
[](#principles)
|
|
14
14
|
|
|
15
15
|
[**Documentation**](https://marketcalls.github.io/openalgo-charts/) · [**Live examples**](https://marketcalls.github.io/openalgo-charts/examples) · [**Getting started**](./docs/getting-started.md) · [**Migrating to 2.0**](./docs/migrating-to-2.md) · [**Architecture**](./ARCHITECTURE.md)
|
|
@@ -43,14 +43,14 @@ Every chart in the [live gallery](https://marketcalls.github.io/openalgo-charts/
|
|
|
43
43
|
|
|
44
44
|
## Install
|
|
45
45
|
|
|
46
|
-
Current version: **2.2.
|
|
46
|
+
Current version: **2.2.3**.
|
|
47
47
|
|
|
48
48
|
This release expands the drawing catalogue to 85 tools with pitchforks, regression
|
|
49
49
|
channels, advanced Fibonacci and Gann geometry, and harmonic and Elliott patterns.
|
|
50
50
|
It adds guided multi-point placement and an editable sample gallery while keeping
|
|
51
51
|
saved drawing documents compatible. See the
|
|
52
52
|
[drawing guide](https://marketcalls.github.io/openalgo-charts/docs/drawing-tools/)
|
|
53
|
-
and the [2.2.
|
|
53
|
+
and the [2.2.3 changelog](./CHANGELOG.md#223).
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
56
|
npm install openalgo-charts
|
|
@@ -79,7 +79,7 @@ in front of npm rather than being places you upload to. A chart is one HTML file
|
|
|
79
79
|
```html
|
|
80
80
|
<div id="chart" style="width:100vw;height:100vh"></div>
|
|
81
81
|
<script type="module">
|
|
82
|
-
import { createChart } from 'https://unpkg.com/openalgo-charts@2.2.
|
|
82
|
+
import { createChart } from 'https://unpkg.com/openalgo-charts@2.2.3/dist/openalgo-charts.mjs';
|
|
83
83
|
const chart = createChart(document.getElementById('chart'), { timezone: 'Asia/Kolkata' });
|
|
84
84
|
chart.addSeries('candlestick').setData(bars);
|
|
85
85
|
</script>
|
|
@@ -119,16 +119,16 @@ Import only what you use. Each tier is a separate bundle that registers into the
|
|
|
119
119
|
|
|
120
120
|
| Import | Contents | Brotli |
|
|
121
121
|
|---|---|---|
|
|
122
|
-
| `openalgo-charts` | Engine, 13 chart types, panes & scales, primitives, registries, chart state, chart linking, bar cache, interval registry, trading overlay, SVG export, render backend port, OpenAlgo feeds | 76.
|
|
122
|
+
| `openalgo-charts` | Engine, 13 chart types, panes & scales, primitives, registries, chart state, chart linking, bar cache, interval registry, trading overlay, SVG export, render backend port, OpenAlgo feeds | 76.40 KB |
|
|
123
123
|
| `openalgo-charts/indicators` | 102 built-in indicators, the `registerIndicator` contract for your own, and the Tier-2 (external-data) contract | 28.19 KB |
|
|
124
|
-
| `openalgo-charts/draw` | 85 drawing tools + a headless drawing controller, clipboard, settings schema, level palette, freehand geometry and SVG icons | 34.
|
|
124
|
+
| `openalgo-charts/draw` | 85 drawing tools + a headless drawing controller, clipboard, settings schema, level palette, freehand geometry and SVG icons | 34.53 KB |
|
|
125
125
|
| `openalgo-charts/transform` | Heikin Ashi, Renko, Range bars, Line Break, Point & Figure, Kagi | 2.66 KB |
|
|
126
126
|
| `openalgo-charts/profile` | Volume Profile, Market Profile (TPO) with compact pixel letters, Footprint, order flow | 14.96 KB |
|
|
127
127
|
| `openalgo-charts/trade` | Order / position / bracket tools + DOM ladder | 7.61 KB |
|
|
128
128
|
| `openalgo-charts/webgl` | WebGL2 series backend: batched, analytically anti-aliased GPU rendering of the standard chart types behind `renderer: 'auto'`, with a session-long fallback to the 2D path | 6.38 KB |
|
|
129
|
-
| `openalgo-charts/widget` | The chart with its chrome in one call: `createWidget` adds a top bar, the drawing rail, a status line, the settings and indicator dialogs, drawing properties, a right-click menu, a keymap with a `?` panel and optional layout persistence. The only tier that ships DOM | 42.
|
|
129
|
+
| `openalgo-charts/widget` | The chart with its chrome in one call: `createWidget` adds a top bar, the drawing rail, a status line, the settings and indicator dialogs, drawing properties, a right-click menu, a keymap with a `?` panel and optional layout persistence. The only tier that ships DOM | 42.41 KB |
|
|
130
130
|
|
|
131
|
-
Everything together is **213.
|
|
131
|
+
Everything together is **213.14 KB Brotli**; a widget terminal (base + draw + indicators + widget, what one `createWidget` call loads) is 181.53 KB. Figures are measured from the 2.2.3 release build. The trade tier is listed as its delta over the base, so loading base + trade costs 84.01 KB.
|
|
132
132
|
|
|
133
133
|
## What's built
|
|
134
134
|
|
|
@@ -420,16 +420,16 @@ Enforced in CI by [`size-limit`](./.size-limit.json). Nothing is excluded, becau
|
|
|
420
420
|
|
|
421
421
|
| Bundle | Limit | Actual |
|
|
422
422
|
|---|---|---|
|
|
423
|
-
| Base engine | 77 KB | 76.
|
|
424
|
-
| Base + trade | 85 KB | 84.
|
|
423
|
+
| Base engine | 77 KB | 76.40 KB |
|
|
424
|
+
| Base + trade | 85 KB | 84.01 KB |
|
|
425
425
|
| Indicators tier | 30 KB | 28.19 KB |
|
|
426
|
-
| Draw tier | 36 KB | 34.
|
|
426
|
+
| Draw tier | 36 KB | 34.53 KB |
|
|
427
427
|
| Transform tier | 5 KB | 2.66 KB |
|
|
428
428
|
| Profile tier | 15 KB | 14.96 KB |
|
|
429
429
|
| WebGL2 tier | 7 KB | 6.38 KB |
|
|
430
|
-
| Widget tier | 43 KB | 42.
|
|
431
|
-
| Widget terminal (base + draw + indicators + widget) | 183 KB | 181.
|
|
432
|
-
| **Everything** | 215 KB | 213.
|
|
430
|
+
| Widget tier | 43 KB | 42.41 KB |
|
|
431
|
+
| Widget terminal (base + draw + indicators + widget) | 183 KB | 181.53 KB |
|
|
432
|
+
| **Everything** | 215 KB | 213.14 KB |
|
|
433
433
|
|
|
434
434
|
## Documentation
|
|
435
435
|
|
|
@@ -474,7 +474,7 @@ See [Contributing](./CONTRIBUTING.md) for setup, targeted checks, documentation
|
|
|
474
474
|
```bash
|
|
475
475
|
npm install # install dev toolchain
|
|
476
476
|
npm run typecheck # strict TypeScript check
|
|
477
|
-
npm test # unit tests (vitest) -
|
|
477
|
+
npm test # unit tests (vitest) - 5157 across 207 files
|
|
478
478
|
npm run build # Rollup -> dist/ (minified ESM per tier + types)
|
|
479
479
|
npm run size # size-limit (Brotli) against the budget
|
|
480
480
|
npm run e2e # Playwright Chromium smoke tests
|
|
@@ -491,7 +491,7 @@ npm run verify # lint + typecheck + test + build + demo tests + dts + size +
|
|
|
491
491
|
|
|
492
492
|
## Status & limitations
|
|
493
493
|
|
|
494
|
-
Version **2.2.
|
|
494
|
+
Version **2.2.3**. All engine build phases are implemented. Upgrading a 1.9.x host: [Migrating to 2.0](./docs/migrating-to-2.md).
|
|
495
495
|
|
|
496
496
|
Known gaps, stated plainly:
|
|
497
497
|
|
package/dist/index.d.ts
CHANGED