@363045841yyt/klinechart 0.5.5 → 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 +3 -3
- package/dist/index.cjs +9 -9
- package/dist/index.js +1939 -1717
- package/dist/klinechart.css +1 -1
- package/dist/src/composables/useFullscreenTeleportTarget.d.ts +3 -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 +4 -0
- package/package.json +9 -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
|
|