candleview 2.8.8 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -3
- package/dist/index.js +31 -31
- package/dist/index.mjs +1058 -986
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border: none !important; border-collapse: collapse !important;">
|
|
3
3
|
<tr style="border: none !important;">
|
|
4
4
|
<td style="border: none !important; padding: 0;"><img src="./assets/logo/logo_50x50.jpeg" alt="CandleView Logo" width="50" height="50" style="border-radius:5px"></td>
|
|
5
|
-
<td style="border: none !important; padding: 0 0 0 10px;"><h1 style="margin: 0;">CandleView</h1></td>
|
|
5
|
+
<td style="border: none !important; padding: 0 0 0 10px;"><h1 style="margin: 0; border: none !important;">CandleView</h1></td>
|
|
6
6
|
</tr>
|
|
7
7
|
</table>
|
|
8
8
|
</p>
|
|
@@ -16,7 +16,11 @@ An AI-driven financial time-series data visualization and rendering engine.
|
|
|
16
16
|
<a href="https://github.com/0xhappyboy/candleview/issues"><img src="https://img.shields.io/github/issues/0xhappyboy/candleview.svg?style=flat&labelColor=1C2C2E&color=FF6B6B&logo=github&logoColor=white&label=issues" alt="GitHub issues"></a>
|
|
17
17
|
<a href="https://github.com/0xhappyboy/candleview/network/members"><img src="https://img.shields.io/github/forks/0xhappyboy/candleview.svg?style=flat&labelColor=1C2C2E&color=42A5F5&logo=github&logoColor=white&label=forks" alt="GitHub forks"></a>
|
|
18
18
|
<a href="https://www.npmjs.com/package/candleview"><img src="https://img.shields.io/npm/v/candleview.svg?style=flat&labelColor=1C2C2E&color=FF5722&logo=npm&logoColor=white&label=npm%20version" alt="npm version"></a>
|
|
19
|
-
<a href="https://github.com/0xhappyboy/candleview/releases"><img src="https://img.shields.io/github/v/
|
|
19
|
+
<a href="https://github.com/0xhappyboy/candleview/releases"><img src="https://img.shields.io/github/v/tag/0xhappyboy/candleview.svg?style=flat&labelColor=1C2C2E&color=9C27B0&logo=github&logoColor=white&label=latest%20release" alt="GitHub release"></a>
|
|
20
|
+
<a href="https://github.com/0xhappyboy/candleview/actions"><img src="https://img.shields.io/github/actions/workflow/status/0xhappyboy/candleview/release.yml?style=flat&labelColor=1C2C2E&color=4CAF50&logo=githubactions&logoColor=white&label=build" alt="Build Status"></a><a href="https://www.npmjs.com/package/candleview"><img src="https://img.shields.io/npm/dt/candleview?style=flat&labelColor=1C2C2E&color=00BCD4&logo=npm&logoColor=white&label=total%20downloads" alt="npm downloads"></a>
|
|
21
|
+
<a href="https://www.npmjs.com/package/candleview"><img src="https://img.shields.io/npm/dm/candleview?style=flat&labelColor=1C2C2E&color=00BCD4&logo=npm&logoColor=white&label=downloads/month" alt="npm downloads"></a>
|
|
22
|
+
<a href="https://www.npmjs.com/package/candleview"><img src="https://img.shields.io/npm/dw/candleview?style=flat&labelColor=1C2C2E&color=00BCD4&logo=npm&logoColor=white&label=downloads/week" alt="npm downloads"></a>
|
|
23
|
+
<a href="https://twitter.com/intent/follow?screen_name=candleview"><img src="https://img.shields.io/twitter/follow/candleview" alt="CandleView" /></a>
|
|
20
24
|
</p>
|
|
21
25
|
<p align="center">
|
|
22
26
|
<a href="./README_zh-CN.md">简体中文</a> | <a href="./README.md">English</a>
|
|
@@ -36,7 +40,17 @@ yarn add candleview
|
|
|
36
40
|
|
|
37
41
|
| Website | Website(CN) | Emulator | Markets |
|
|
38
42
|
| ------------------------------------------------------------ | ---------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------------- |
|
|
39
|
-
| <a href="https://candleview
|
|
43
|
+
| <a href="https://candleview.vercel.app/">Website</a> | <a href="https://www.candleview.cn/">Website(CN)</a> | <a href="https://candleview.vercel.app/application">Emulator</a> | <a href="https://candleview.vercel.app/markets">Markets</a> |
|
|
44
|
+
|
|
45
|
+
# 📚 Directory
|
|
46
|
+
|
|
47
|
+
| **directory** | **describe** |
|
|
48
|
+
| :------------------- | :------------------------------------------------------------------------------------------------------------------- |
|
|
49
|
+
| **core** | CandleView Engine Core. |
|
|
50
|
+
| **website** | Global official website. |
|
|
51
|
+
| **ai-proxy-service** | This is the scaffolding project for CandleView AI services, which you can use to develop AI services for CandleView. |
|
|
52
|
+
| **docs** | Documents. |
|
|
53
|
+
| **assets** | Asset Directory. |
|
|
40
54
|
|
|
41
55
|
# 🚀 Quick Start
|
|
42
56
|
|
|
@@ -224,6 +238,10 @@ The system integrates the following SDKs:
|
|
|
224
238
|
/analyzeOHLCV - A service specifically designed for processing OHLCV data.
|
|
225
239
|
```
|
|
226
240
|
|
|
241
|
+
# Supports price event scripts
|
|
242
|
+
|
|
243
|
+
<img src="./assets/price_event.gif" alt="CandleView Supports price event scripts" width="100%">
|
|
244
|
+
|
|
227
245
|
# Multi Panel Performance
|
|
228
246
|
|
|
229
247
|
<img src="./assets/candleview-multi-panel-2.gif" alt="CandleView Multi Panel" width="100%">
|