@backtest-kit/sidekick 0.0.9 → 0.0.10

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": "@backtest-kit/sidekick",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
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",
@@ -37,6 +37,7 @@
37
37
  "src",
38
38
  "scripts",
39
39
  "template",
40
+ "types",
40
41
  "README.md"
41
42
  ],
42
43
  "repository": {
@@ -6,5 +6,5 @@ addFrame({
6
6
  interval: "1m",
7
7
  startDate: new Date("2025-12-01T00:00:00Z"),
8
8
  endDate: new Date("2025-12-31T23:59:59Z"),
9
- note: "Боковик без явного роста или падения",
9
+ note: "Sideways movement without clear growth or decline",
10
10
  });
@@ -6,5 +6,5 @@ addFrame({
6
6
  interval: "1m",
7
7
  startDate: new Date("2025-11-01T00:00:00Z"),
8
8
  endDate: new Date("2025-11-30T23:59:59Z"),
9
- note: "Боковик с общим трендом вниз и незначительными отскоками",
9
+ note: "Sideways movement with overall downtrend and minor bounces",
10
10
  });
@@ -6,5 +6,5 @@ addFrame({
6
6
  interval: "1m",
7
7
  startDate: new Date("2025-10-01T00:00:00Z"),
8
8
  endDate: new Date("2025-10-31T23:59:59Z"),
9
- note: "Резкое падение рынка с 9 по 11 число",
9
+ note: "Sharp market drop from the 9th to 11th",
10
10
  });
@@ -0,0 +1,11 @@
1
+ import * as BacktestKit from "backtest-kit";
2
+
3
+ declare global {
4
+ namespace bt {
5
+ export * from "backtest-kit";
6
+ }
7
+
8
+ const bt: typeof BacktestKit;
9
+ }
10
+
11
+ export {};