@363045841yyt/klinechart 0.5.5-alpha.0 → 0.5.6
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 +5 -3
- package/dist/index.cjs +4 -4
- package/dist/index.js +2864 -2333
- package/dist/klinechart.css +1 -1
- package/dist/src/components/KLineChart.vue.d.ts +34 -0
- package/dist/src/components/LeftToolbar.vue.d.ts +8 -2
- package/dist/src/composables/useFullscreenTeleportTarget.d.ts +3 -0
- package/dist/src/config/chartSettings.d.ts +13 -0
- package/dist/src/core/chart.d.ts +4 -0
- package/dist/src/core/drawing/interaction.d.ts +1 -0
- package/dist/src/core/renderers/Indicator/scale/indicator_scale.d.ts +3 -0
- package/dist/src/core/scale/logFormula.d.ts +66 -0
- package/dist/src/core/scale/priceScale.d.ts +36 -2
- package/dist/src/core/theme/fonts.d.ts +11 -0
- package/dist/src/core/utils/tickPosition.d.ts +24 -0
- package/dist/src/plugin/types.d.ts +66 -0
- package/dist/src/utils/kLineDraw/axis.d.ts +37 -0
- package/package.json +37 -1
- package/dist/src/semantic/schema.json.d.ts +0 -259
package/README.md
CHANGED
|
@@ -42,21 +42,21 @@ KLineChart requires a stock data backend. Please ensure `kmap` and `stockbao` ar
|
|
|
42
42
|
|
|
43
43
|
```
|
|
44
44
|
workspace/
|
|
45
|
-
├──
|
|
45
|
+
├── KLineChartQuant/ # This repository
|
|
46
46
|
└── stockbao/ # Data backend repository
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
### 1. Clone Repositories
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
git clone https://github.com/363045841/
|
|
52
|
+
git clone https://github.com/363045841/KLineChartQuant.git
|
|
53
53
|
git clone https://github.com/363045841/stockbao.git
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
### 2. Start Data Backend
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
cd
|
|
59
|
+
cd KLineChartQuant
|
|
60
60
|
npm run stockbao
|
|
61
61
|
```
|
|
62
62
|
|
|
@@ -128,6 +128,8 @@ const config: SemanticChartConfig = {
|
|
|
128
128
|
- [x] Latest price line and right axis label style optimization
|
|
129
129
|
- [x] Area primitive tools and rendering
|
|
130
130
|
- [ ] More advanced drawing tools
|
|
131
|
+
- [ ] Support for minute, multi-day, monthly, and yearly K-line display
|
|
132
|
+
- [ ] Support convert the drawing to quant code
|
|
131
133
|
|
|
132
134
|
## 🚀 What's New
|
|
133
135
|
|