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
|
@@ -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 ($):',
|
|
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 ($):',
|
|
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);
|