@backtest-kit/signals 6.2.0 → 6.4.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.
- package/build/index.cjs +9 -9
- package/build/index.mjs +9 -9
- package/package.json +3 -3
package/build/index.cjs
CHANGED
|
@@ -4597,7 +4597,7 @@ const commitHourHistory = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4597
4597
|
content: "Hourly candles history received.",
|
|
4598
4598
|
});
|
|
4599
4599
|
}, {
|
|
4600
|
-
fallback: () =>
|
|
4600
|
+
fallback: () => fetchHourHistory.clear(),
|
|
4601
4601
|
});
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Commits 30-minute candle history report to history container.
|
|
@@ -4628,7 +4628,7 @@ const commitThirtyMinuteHistory = functoolsKit.trycatch(async (symbol, history)
|
|
|
4628
4628
|
content: "30-min candles history received.",
|
|
4629
4629
|
});
|
|
4630
4630
|
}, {
|
|
4631
|
-
fallback: () =>
|
|
4631
|
+
fallback: () => fetchThirtyMinuteHistory.clear(),
|
|
4632
4632
|
});
|
|
4633
4633
|
/**
|
|
4634
4634
|
* Commits 15-minute candle history report to history container.
|
|
@@ -4659,7 +4659,7 @@ const commitFifteenMinuteHistory = functoolsKit.trycatch(async (symbol, history)
|
|
|
4659
4659
|
content: "15-minute candles history received.",
|
|
4660
4660
|
});
|
|
4661
4661
|
}, {
|
|
4662
|
-
fallback: () =>
|
|
4662
|
+
fallback: () => fetchFifteenMinuteHistory.clear(),
|
|
4663
4663
|
});
|
|
4664
4664
|
/**
|
|
4665
4665
|
* Commits 1-minute candle history report to history container.
|
|
@@ -4690,7 +4690,7 @@ const commitOneMinuteHistory = functoolsKit.trycatch(async (symbol, history) =>
|
|
|
4690
4690
|
content: "One-minute candles history received.",
|
|
4691
4691
|
});
|
|
4692
4692
|
}, {
|
|
4693
|
-
fallback: () =>
|
|
4693
|
+
fallback: () => fetchOneMinuteHistory.clear(),
|
|
4694
4694
|
});
|
|
4695
4695
|
|
|
4696
4696
|
/**
|
|
@@ -4784,7 +4784,7 @@ const commitMicroTermMath = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4784
4784
|
content: "1-minute candles trading analysis received.",
|
|
4785
4785
|
});
|
|
4786
4786
|
}, {
|
|
4787
|
-
fallback: () =>
|
|
4787
|
+
fallback: () => fetchMicroTermMath.clear(),
|
|
4788
4788
|
});
|
|
4789
4789
|
/**
|
|
4790
4790
|
* Commits LongTerm (1-hour) technical analysis report to history container.
|
|
@@ -4822,7 +4822,7 @@ const commitLongTermMath = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4822
4822
|
content: "1-hour candles trading analysis received.",
|
|
4823
4823
|
});
|
|
4824
4824
|
}, {
|
|
4825
|
-
fallback: () =>
|
|
4825
|
+
fallback: () => fetchLongTermMath.clear(),
|
|
4826
4826
|
});
|
|
4827
4827
|
/**
|
|
4828
4828
|
* Commits ShortTerm (15-minute) technical analysis report to history container.
|
|
@@ -4860,7 +4860,7 @@ const commitShortTermMath = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4860
4860
|
content: "15-minute candles trading analysis received.",
|
|
4861
4861
|
});
|
|
4862
4862
|
}, {
|
|
4863
|
-
fallback: () =>
|
|
4863
|
+
fallback: () => fetchShortTermMath.clear(),
|
|
4864
4864
|
});
|
|
4865
4865
|
/**
|
|
4866
4866
|
* Commits SwingTerm (30-minute) technical analysis report to history container.
|
|
@@ -4899,7 +4899,7 @@ const commitSwingTermMath = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4899
4899
|
content: "30-min candles analysis received.",
|
|
4900
4900
|
});
|
|
4901
4901
|
}, {
|
|
4902
|
-
fallback: () =>
|
|
4902
|
+
fallback: () => fetchSwingTermMath.clear(),
|
|
4903
4903
|
});
|
|
4904
4904
|
|
|
4905
4905
|
/**
|
|
@@ -4970,7 +4970,7 @@ const commitBookDataReport = functoolsKit.trycatch(async (symbol, history) => {
|
|
|
4970
4970
|
content: "Order book analysis received. Will use for short-term liquidity assessment, market pressure direction (depth imbalance), and major support/resistance levels.",
|
|
4971
4971
|
});
|
|
4972
4972
|
}, {
|
|
4973
|
-
fallback: () =>
|
|
4973
|
+
fallback: () => fetchBookData.clear(),
|
|
4974
4974
|
});
|
|
4975
4975
|
/**
|
|
4976
4976
|
* Commits complete multi-timeframe market analysis setup to history container.
|
package/build/index.mjs
CHANGED
|
@@ -4595,7 +4595,7 @@ const commitHourHistory = trycatch(async (symbol, history) => {
|
|
|
4595
4595
|
content: "Hourly candles history received.",
|
|
4596
4596
|
});
|
|
4597
4597
|
}, {
|
|
4598
|
-
fallback: () =>
|
|
4598
|
+
fallback: () => fetchHourHistory.clear(),
|
|
4599
4599
|
});
|
|
4600
4600
|
/**
|
|
4601
4601
|
* Commits 30-minute candle history report to history container.
|
|
@@ -4626,7 +4626,7 @@ const commitThirtyMinuteHistory = trycatch(async (symbol, history) => {
|
|
|
4626
4626
|
content: "30-min candles history received.",
|
|
4627
4627
|
});
|
|
4628
4628
|
}, {
|
|
4629
|
-
fallback: () =>
|
|
4629
|
+
fallback: () => fetchThirtyMinuteHistory.clear(),
|
|
4630
4630
|
});
|
|
4631
4631
|
/**
|
|
4632
4632
|
* Commits 15-minute candle history report to history container.
|
|
@@ -4657,7 +4657,7 @@ const commitFifteenMinuteHistory = trycatch(async (symbol, history) => {
|
|
|
4657
4657
|
content: "15-minute candles history received.",
|
|
4658
4658
|
});
|
|
4659
4659
|
}, {
|
|
4660
|
-
fallback: () =>
|
|
4660
|
+
fallback: () => fetchFifteenMinuteHistory.clear(),
|
|
4661
4661
|
});
|
|
4662
4662
|
/**
|
|
4663
4663
|
* Commits 1-minute candle history report to history container.
|
|
@@ -4688,7 +4688,7 @@ const commitOneMinuteHistory = trycatch(async (symbol, history) => {
|
|
|
4688
4688
|
content: "One-minute candles history received.",
|
|
4689
4689
|
});
|
|
4690
4690
|
}, {
|
|
4691
|
-
fallback: () =>
|
|
4691
|
+
fallback: () => fetchOneMinuteHistory.clear(),
|
|
4692
4692
|
});
|
|
4693
4693
|
|
|
4694
4694
|
/**
|
|
@@ -4782,7 +4782,7 @@ const commitMicroTermMath = trycatch(async (symbol, history) => {
|
|
|
4782
4782
|
content: "1-minute candles trading analysis received.",
|
|
4783
4783
|
});
|
|
4784
4784
|
}, {
|
|
4785
|
-
fallback: () =>
|
|
4785
|
+
fallback: () => fetchMicroTermMath.clear(),
|
|
4786
4786
|
});
|
|
4787
4787
|
/**
|
|
4788
4788
|
* Commits LongTerm (1-hour) technical analysis report to history container.
|
|
@@ -4820,7 +4820,7 @@ const commitLongTermMath = trycatch(async (symbol, history) => {
|
|
|
4820
4820
|
content: "1-hour candles trading analysis received.",
|
|
4821
4821
|
});
|
|
4822
4822
|
}, {
|
|
4823
|
-
fallback: () =>
|
|
4823
|
+
fallback: () => fetchLongTermMath.clear(),
|
|
4824
4824
|
});
|
|
4825
4825
|
/**
|
|
4826
4826
|
* Commits ShortTerm (15-minute) technical analysis report to history container.
|
|
@@ -4858,7 +4858,7 @@ const commitShortTermMath = trycatch(async (symbol, history) => {
|
|
|
4858
4858
|
content: "15-minute candles trading analysis received.",
|
|
4859
4859
|
});
|
|
4860
4860
|
}, {
|
|
4861
|
-
fallback: () =>
|
|
4861
|
+
fallback: () => fetchShortTermMath.clear(),
|
|
4862
4862
|
});
|
|
4863
4863
|
/**
|
|
4864
4864
|
* Commits SwingTerm (30-minute) technical analysis report to history container.
|
|
@@ -4897,7 +4897,7 @@ const commitSwingTermMath = trycatch(async (symbol, history) => {
|
|
|
4897
4897
|
content: "30-min candles analysis received.",
|
|
4898
4898
|
});
|
|
4899
4899
|
}, {
|
|
4900
|
-
fallback: () =>
|
|
4900
|
+
fallback: () => fetchSwingTermMath.clear(),
|
|
4901
4901
|
});
|
|
4902
4902
|
|
|
4903
4903
|
/**
|
|
@@ -4968,7 +4968,7 @@ const commitBookDataReport = trycatch(async (symbol, history) => {
|
|
|
4968
4968
|
content: "Order book analysis received. Will use for short-term liquidity assessment, market pressure direction (depth imbalance), and major support/resistance levels.",
|
|
4969
4969
|
});
|
|
4970
4970
|
}, {
|
|
4971
|
-
fallback: () =>
|
|
4971
|
+
fallback: () => fetchBookData.clear(),
|
|
4972
4972
|
});
|
|
4973
4973
|
/**
|
|
4974
4974
|
* Commits complete multi-timeframe market analysis setup to history container.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backtest-kit/signals",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"description": "Technical analysis and trading signal generation library for AI-powered trading systems. Computes 50+ indicators across 4 timeframes and generates markdown reports for LLM consumption.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"ts-morph": "27.0.2",
|
|
67
67
|
"tslib": "2.7.0",
|
|
68
68
|
"typedoc": "0.27.9",
|
|
69
|
-
"backtest-kit": "6.
|
|
69
|
+
"backtest-kit": "6.4.0",
|
|
70
70
|
"worker-testbed": "1.0.12"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"backtest-kit": "^6.
|
|
73
|
+
"backtest-kit": "^6.4.0",
|
|
74
74
|
"typescript": "^5.0.0"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|