hedgequantx 1.2.89 → 1.2.90
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 +5 -1
package/package.json
CHANGED
package/src/pages/algo.js
CHANGED
|
@@ -605,7 +605,11 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
|
|
|
605
605
|
console.log(color(logLine) + '\x1B[K');
|
|
606
606
|
});
|
|
607
607
|
}
|
|
608
|
-
//
|
|
608
|
+
// Add 30 empty lines so old logs scroll down further
|
|
609
|
+
for (let i = 0; i < 30; i++) {
|
|
610
|
+
console.log('\x1B[K');
|
|
611
|
+
}
|
|
612
|
+
// Clear remaining lines below
|
|
609
613
|
process.stdout.write('\x1B[J');
|
|
610
614
|
};
|
|
611
615
|
|