@tradejs/core 1.0.3 → 1.0.5
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 +1 -1
- package/dist/indicators.d.mts +1 -2
- package/dist/indicators.d.ts +1 -2
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @tradejs/core
|
|
2
2
|
|
|
3
|
-
Browser-safe
|
|
3
|
+
Browser-safe public API for the TradeJS open-source framework: config, strategy authoring helpers, indicators, figures, math, and shared utilities.
|
|
4
4
|
|
|
5
5
|
- Homepage: https://tradejs.dev
|
|
6
6
|
- Documentation: https://docs.tradejs.dev
|
package/dist/indicators.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { KlineChartItem, IndicatorPluginRenderer, Indicator, IndicatorPluginEntry, TrendLine, TrendLineOptions } from '@tradejs/types';
|
|
2
|
-
import { DerivativesInterval, DerivativesRow, SpreadRow } from '@tradejs/infra/timescale';
|
|
1
|
+
import { KlineChartItem, DerivativesInterval, DerivativesRow, IndicatorPluginRenderer, Indicator, IndicatorPluginEntry, SpreadRow, TrendLine, TrendLineOptions } from '@tradejs/types';
|
|
3
2
|
export { I as IndicatorPeriods, a as applyIndicatorsToHistory, b as buildMlCandleIndicators, c as buildMlTimeframeIndicators, d as createIndicators } from './indicators-B-GGjP5F.mjs';
|
|
4
3
|
import { KLineData } from 'klinecharts';
|
|
5
4
|
|
package/dist/indicators.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { KlineChartItem, IndicatorPluginRenderer, Indicator, IndicatorPluginEntry, TrendLine, TrendLineOptions } from '@tradejs/types';
|
|
2
|
-
import { DerivativesInterval, DerivativesRow, SpreadRow } from '@tradejs/infra/timescale';
|
|
1
|
+
import { KlineChartItem, DerivativesInterval, DerivativesRow, IndicatorPluginRenderer, Indicator, IndicatorPluginEntry, SpreadRow, TrendLine, TrendLineOptions } from '@tradejs/types';
|
|
3
2
|
export { I as IndicatorPeriods, a as applyIndicatorsToHistory, b as buildMlCandleIndicators, c as buildMlTimeframeIndicators, d as createIndicators } from './indicators-B-GGjP5F.js';
|
|
4
3
|
import { KLineData } from 'klinecharts';
|
|
5
4
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tradejs/core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Browser-safe
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Browser-safe public API for the TradeJS open-source framework: config, strategy authoring, indicators, figures, and shared helpers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tradejs",
|
|
7
7
|
"trading",
|
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"pine-script"
|
|
13
13
|
],
|
|
14
14
|
"homepage": "https://tradejs.dev",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/tradejs-dev/tradejs.git",
|
|
18
|
+
"directory": "packages/core"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/tradejs-dev/tradejs/issues"
|
|
22
|
+
},
|
|
15
23
|
"files": [
|
|
16
24
|
"dist"
|
|
17
25
|
],
|
|
@@ -78,7 +86,7 @@
|
|
|
78
86
|
}
|
|
79
87
|
},
|
|
80
88
|
"dependencies": {
|
|
81
|
-
"@tradejs/types": "^1.0.
|
|
89
|
+
"@tradejs/types": "^1.0.5",
|
|
82
90
|
"date-fns": "^3.3.1",
|
|
83
91
|
"klinecharts": "10.0.0-alpha9",
|
|
84
92
|
"lodash": "^4.17.21",
|