candleview 2.5.2 → 2.5.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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,12 @@ An AI-driven financial time-series data visualization and rendering engine.
|
|
|
11
11
|
</h4>
|
|
12
12
|
<p align="center">
|
|
13
13
|
<a href="https://github.com/0xhappyboy/candleview/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-AGPL3.0-d1d1f6.svg?style=flat&labelColor=1C2C2E&color=BEC5C9&logo=googledocs&label=license&logoColor=BEC5C9" alt="License"></a>
|
|
14
|
+
<a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-5.0+-3178C6.svg?style=flat&labelColor=1C2C2E&color=007ACC&logo=typescript&logoColor=white" alt="TypeScript"></a>
|
|
15
|
+
<a href="https://github.com/0xhappyboy/candleview/stargazers"><img src="https://img.shields.io/github/stars/0xhappyboy/candleview.svg?style=flat&labelColor=1C2C2E&color=FFD700&logo=github&logoColor=white&label=stars" alt="GitHub stars"></a>
|
|
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
|
+
<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
|
+
<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/release/0xhappyboy/candleview.svg?style=flat&labelColor=1C2C2E&color=9C27B0&logo=github&logoColor=white&label=latest%20release" alt="GitHub release"></a>
|
|
14
20
|
</p>
|
|
15
21
|
<p align="center">
|
|
16
22
|
<a href="./README_zh-CN.md">简体中文</a> | <a href="./README.md">English</a>
|
|
@@ -32,6 +38,17 @@ yarn add candleview
|
|
|
32
38
|
| ------------------------------------------------------------ | ---------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------------- |
|
|
33
39
|
| <a href="https://candleview-website.vercel.app/">Website</a> | <a href="https://www.candleview.cn/">Website(CN)</a> | <a href="https://candleview-website.vercel.app/application">Emulator</a> | <a href="https://candleview-website.vercel.app/markets">Markets</a> |
|
|
34
40
|
|
|
41
|
+
# 📚 Directory
|
|
42
|
+
|
|
43
|
+
| **directory** | **describe** |
|
|
44
|
+
| :------------------- | :------------------------------------------------------------------------------------------------------------------- |
|
|
45
|
+
| **core** | CandleView Engine Core. |
|
|
46
|
+
| **website** | Global official website. |
|
|
47
|
+
| **components** | A front-end component library developed based on CandleView. |
|
|
48
|
+
| **ai-proxy-service** | This is the scaffolding project for CandleView AI services, which you can use to develop AI services for CandleView. |
|
|
49
|
+
| **docs** | Documents. |
|
|
50
|
+
| **assets** | Asset Directory. |
|
|
51
|
+
|
|
35
52
|
# 🚀 Quick Start
|
|
36
53
|
|
|
37
54
|
```typescript
|