@tradejs/app 2.0.20 → 2.0.21
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tradejs/app",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.21",
|
|
4
4
|
"description": "Installable Next.js UI for the TradeJS TypeScript framework: dashboards, backtests, charts, and runtime data.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tradejs",
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"@emotion/react": "^11.14.0",
|
|
52
52
|
"@langchain/core": "^1.2.3",
|
|
53
53
|
"@langchain/openai": "^1.5.5",
|
|
54
|
-
"@tradejs/connectors": "^2.0.
|
|
55
|
-
"@tradejs/core": "^2.0.
|
|
56
|
-
"@tradejs/indicators": "^2.0.
|
|
57
|
-
"@tradejs/infra": "^2.0.
|
|
58
|
-
"@tradejs/node": "^2.0.
|
|
59
|
-
"@tradejs/strategies": "^2.0.
|
|
60
|
-
"@tradejs/types": "^2.0.
|
|
54
|
+
"@tradejs/connectors": "^2.0.21",
|
|
55
|
+
"@tradejs/core": "^2.0.21",
|
|
56
|
+
"@tradejs/indicators": "^2.0.21",
|
|
57
|
+
"@tradejs/infra": "^2.0.21",
|
|
58
|
+
"@tradejs/node": "^2.0.21",
|
|
59
|
+
"@tradejs/strategies": "^2.0.21",
|
|
60
|
+
"@tradejs/types": "^2.0.21",
|
|
61
61
|
"@types/bcryptjs": "2.4.6",
|
|
62
62
|
"@types/lodash": "4.17.24",
|
|
63
63
|
"@types/node": "24.13.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getRuntimeStorageDayKeys } from '@tradejs/core/time';
|
|
2
2
|
import { logger } from '@tradejs/infra/logger';
|
|
3
|
-
import {
|
|
3
|
+
import { strategyLogicConfigFingerprint } from '@tradejs/infra/strategyReleaseEvidence';
|
|
4
4
|
import {
|
|
5
5
|
listTradingAccounts,
|
|
6
6
|
resolveTradingAccount,
|
|
@@ -506,7 +506,7 @@ export const loadRuntimeDashboard = async ({
|
|
|
506
506
|
enabled: deployment.enabled && deploymentStrategy.enabled !== false,
|
|
507
507
|
config: deploymentStrategy.config,
|
|
508
508
|
connected: false,
|
|
509
|
-
configFingerprint:
|
|
509
|
+
configFingerprint: strategyLogicConfigFingerprint(
|
|
510
510
|
deploymentStrategy.config,
|
|
511
511
|
),
|
|
512
512
|
});
|
|
@@ -549,7 +549,7 @@ export const loadRuntimeDashboard = async ({
|
|
|
549
549
|
enabled: isRuntimeStrategyConfigEnabled(runtimeConfig.config),
|
|
550
550
|
config: runtimeConfig.config,
|
|
551
551
|
connected: true,
|
|
552
|
-
configFingerprint:
|
|
552
|
+
configFingerprint: strategyLogicConfigFingerprint(runtimeConfig.config),
|
|
553
553
|
});
|
|
554
554
|
}
|
|
555
555
|
const accountScopedTrades = assignLegacyRuntimeTradeAccountScopes(
|