hedgequantx 1.2.101 → 1.2.102
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 +1 -1
- package/src/pages/algo.js +3 -3
package/package.json
CHANGED
package/src/pages/algo.js
CHANGED
|
@@ -471,7 +471,7 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
|
|
|
471
471
|
|
|
472
472
|
// Logs buffer - newest first display, show many logs
|
|
473
473
|
const logs = [];
|
|
474
|
-
const MAX_LOGS =
|
|
474
|
+
const MAX_LOGS = 50;
|
|
475
475
|
|
|
476
476
|
// Log colors
|
|
477
477
|
const typeColors = {
|
|
@@ -676,8 +676,8 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
|
|
|
676
676
|
console.log(chalk.cyan(V) + chalk.white(actLeft) + dateSection + chalk.yellow(actRight) + chalk.cyan(V));
|
|
677
677
|
console.log(chalk.cyan(BOT));
|
|
678
678
|
|
|
679
|
-
// Logs (without borders) - newest first,
|
|
680
|
-
const MAX_VISIBLE_LOGS =
|
|
679
|
+
// Logs (without borders) - newest first, show more logs
|
|
680
|
+
const MAX_VISIBLE_LOGS = 25;
|
|
681
681
|
console.log();
|
|
682
682
|
|
|
683
683
|
if (logs.length === 0) {
|