hedgequantx 2.6.8 → 2.6.9
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
|
@@ -639,10 +639,10 @@ const copyTradingMenu = async () => {
|
|
|
639
639
|
console.log();
|
|
640
640
|
console.log(chalk.cyan.bold(' Step 5: Risk Parameters'));
|
|
641
641
|
|
|
642
|
-
const dailyTarget = await prompts.numberInput('Daily target ($):',
|
|
642
|
+
const dailyTarget = await prompts.numberInput('Daily target ($):', 1000, 1, 10000);
|
|
643
643
|
if (dailyTarget === null) return;
|
|
644
644
|
|
|
645
|
-
const maxRisk = await prompts.numberInput('Max risk ($):',
|
|
645
|
+
const maxRisk = await prompts.numberInput('Max risk ($):', 500, 1, 5000);
|
|
646
646
|
if (maxRisk === null) return;
|
|
647
647
|
|
|
648
648
|
// Step 6: Privacy
|