hedgequantx 2.9.42 → 2.9.43

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.9.42",
3
+ "version": "2.9.43",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -228,10 +228,10 @@ const configureAlgo = async (account, contract, strategy) => {
228
228
  const contracts = await prompts.numberInput('Number of contracts:', 1, 1, 10);
229
229
  if (contracts === null) return null;
230
230
 
231
- const dailyTarget = await prompts.numberInput('Daily target ($):', 200, 1, 10000);
231
+ const dailyTarget = await prompts.numberInput('Daily target ($):', 1000, 1, 10000);
232
232
  if (dailyTarget === null) return null;
233
233
 
234
- const maxRisk = await prompts.numberInput('Max risk ($):', 100, 1, 5000);
234
+ const maxRisk = await prompts.numberInput('Max risk ($):', 500, 1, 5000);
235
235
  if (maxRisk === null) return null;
236
236
 
237
237
  const showName = await prompts.confirmPrompt('Show account name?', false);