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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.6.8",
3
+ "version": "2.6.9",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -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 ($):', 500, 1, 10000);
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 ($):', 250, 1, 5000);
645
+ const maxRisk = await prompts.numberInput('Max risk ($):', 500, 1, 5000);
646
646
  if (maxRisk === null) return;
647
647
 
648
648
  // Step 6: Privacy