backtest-kit 1.4.5 → 1.4.6
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 +1 -1
- package/build/index.mjs +1 -1
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -9286,7 +9286,7 @@ const GET_STRATEGY_CODE_FN = async (symbol, self) => {
|
|
|
9286
9286
|
const walkerName = `${prefix}_walker`;
|
|
9287
9287
|
const testFrameName = `${prefix}_test_frame`;
|
|
9288
9288
|
const strategies = strategyData.map((_, i) => `${prefix}_strategy-${i + 1}`);
|
|
9289
|
-
sections.push(await self.params.template.getWalkerTemplate(walkerName, `${
|
|
9289
|
+
sections.push(await self.params.template.getWalkerTemplate(walkerName, `${exchangeName}`, testFrameName, strategies));
|
|
9290
9290
|
sections.push("");
|
|
9291
9291
|
}
|
|
9292
9292
|
// 9. Launcher template
|
package/build/index.mjs
CHANGED
|
@@ -9284,7 +9284,7 @@ const GET_STRATEGY_CODE_FN = async (symbol, self) => {
|
|
|
9284
9284
|
const walkerName = `${prefix}_walker`;
|
|
9285
9285
|
const testFrameName = `${prefix}_test_frame`;
|
|
9286
9286
|
const strategies = strategyData.map((_, i) => `${prefix}_strategy-${i + 1}`);
|
|
9287
|
-
sections.push(await self.params.template.getWalkerTemplate(walkerName, `${
|
|
9287
|
+
sections.push(await self.params.template.getWalkerTemplate(walkerName, `${exchangeName}`, testFrameName, strategies));
|
|
9288
9288
|
sections.push("");
|
|
9289
9289
|
}
|
|
9290
9290
|
// 9. Launcher template
|