hedgequantx 2.9.106 → 2.9.107
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
|
@@ -233,6 +233,12 @@ const oneAccountMenu = async (service) => {
|
|
|
233
233
|
const proceed = await prompts.confirmPrompt(startPrompt, true);
|
|
234
234
|
if (!proceed) return;
|
|
235
235
|
|
|
236
|
+
const startSpinner = ora({ text: 'Initializing algo trading...', color: 'cyan' }).start();
|
|
237
|
+
|
|
238
|
+
// Small delay to show spinner then stop before executeAlgo takes over the screen
|
|
239
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
240
|
+
startSpinner.succeed('Algo initialized');
|
|
241
|
+
|
|
236
242
|
await executeAlgo({
|
|
237
243
|
service: accountService,
|
|
238
244
|
account: selectedAccount,
|