hedgequantx 1.8.25 → 1.8.26
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
|
@@ -35,7 +35,7 @@ const copyTradingMenu = async () => {
|
|
|
35
35
|
|
|
36
36
|
if (allConns.length < 2) {
|
|
37
37
|
console.log();
|
|
38
|
-
console.log(chalk.yellow(
|
|
38
|
+
console.log(chalk.yellow(` Copy Trading requires 2 connected accounts (found: ${allConns.length})`));
|
|
39
39
|
console.log(chalk.gray(' Connect to another PropFirm first'));
|
|
40
40
|
console.log();
|
|
41
41
|
await prompts.waitForEnter();
|
|
@@ -43,7 +43,7 @@ const copyTradingMenu = async () => {
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
console.log();
|
|
46
|
-
console.log(chalk.
|
|
46
|
+
console.log(chalk.yellow.bold(' Copy Trading Setup'));
|
|
47
47
|
console.log();
|
|
48
48
|
|
|
49
49
|
const spinner = ora({ text: 'Fetching accounts...', color: 'yellow' }).start();
|
package/src/pages/algo/index.js
CHANGED
|
@@ -19,11 +19,11 @@ const algoTradingMenu = async (service) => {
|
|
|
19
19
|
|
|
20
20
|
console.log();
|
|
21
21
|
console.log(chalk.gray(getSeparator()));
|
|
22
|
-
console.log(chalk.
|
|
22
|
+
console.log(chalk.yellow.bold(' Algo-Trading'));
|
|
23
23
|
console.log(chalk.gray(getSeparator()));
|
|
24
24
|
console.log();
|
|
25
25
|
|
|
26
|
-
const action = await prompts.selectOption('Select Mode:', [
|
|
26
|
+
const action = await prompts.selectOption(chalk.yellow('Select Mode:'), [
|
|
27
27
|
{ value: 'one_account', label: 'One Account' },
|
|
28
28
|
{ value: 'copy_trading', label: 'Copy Trading' },
|
|
29
29
|
{ value: 'back', label: '< Back' }
|