@backtest-kit/sidekick 3.0.2 → 3.1.0
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.
|
@@ -43,7 +43,7 @@ const getExchange = singleshot(async () => {
|
|
|
43
43
|
});
|
|
44
44
|
|
|
45
45
|
addExchangeSchema({
|
|
46
|
-
exchangeName: "
|
|
46
|
+
exchangeName: "binance_exchange",
|
|
47
47
|
getCandles: async (symbol, interval, since, limit) => {
|
|
48
48
|
const exchange = await getExchange();
|
|
49
49
|
const candles = await exchange.fetchOHLCV(
|
|
@@ -70,7 +70,7 @@ const plots = await run(
|
|
|
70
70
|
timeframe: "15m",
|
|
71
71
|
limit: 60,
|
|
72
72
|
},
|
|
73
|
-
"
|
|
73
|
+
"binance_exchange",
|
|
74
74
|
new Date("2025-09-23T16:00:00.000Z"),
|
|
75
75
|
);
|
|
76
76
|
|
|
@@ -34,7 +34,7 @@ const getExchange = singleshot(async () => {
|
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
addExchangeSchema({
|
|
37
|
-
exchangeName: "
|
|
37
|
+
exchangeName: "binance_exchange",
|
|
38
38
|
getCandles: async (symbol, interval, since, limit) => {
|
|
39
39
|
const exchange = await getExchange();
|
|
40
40
|
const candles = await exchange.fetchOHLCV(
|
|
@@ -61,7 +61,7 @@ const plots = await run(
|
|
|
61
61
|
timeframe: "4h",
|
|
62
62
|
limit: 60,
|
|
63
63
|
},
|
|
64
|
-
"
|
|
64
|
+
"binance_exchange",
|
|
65
65
|
new Date("2025-09-23T23:00:00.000Z"),
|
|
66
66
|
);
|
|
67
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backtest-kit/sidekick",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "The easiest way to create a new Backtest Kit trading bot project. Like create-react-app, but for algorithmic trading with LLM integration and technical analysis.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
"start": "node ./src/index.mjs --backtest"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@backtest-kit/ollama": "^3.0
|
|
12
|
-
"@backtest-kit/pinets": "^3.0
|
|
13
|
-
"@backtest-kit/ui": "^3.0
|
|
11
|
+
"@backtest-kit/ollama": "^3.1.0",
|
|
12
|
+
"@backtest-kit/pinets": "^3.1.0",
|
|
13
|
+
"@backtest-kit/ui": "^3.1.0",
|
|
14
14
|
"@huggingface/inference": "^4.7.1",
|
|
15
15
|
"@langchain/core": "^0.3.57",
|
|
16
16
|
"@langchain/xai": "^0.0.2",
|
|
17
17
|
"agent-swarm-kit": "^1.2.4",
|
|
18
|
-
"backtest-kit": "^3.0
|
|
18
|
+
"backtest-kit": "^3.1.0",
|
|
19
19
|
"ccxt": "^4.4.41",
|
|
20
20
|
"dotenv": "^16.4.7",
|
|
21
21
|
"functools-kit": "^1.0.95",
|