hedgequantx 1.2.105 → 1.2.106

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "1.2.105",
3
+ "version": "1.2.106",
4
4
  "description": "Prop Futures Algo Trading CLI - Connect to Topstep, Alpha Futures, and other prop firms",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/pages/algo.js CHANGED
@@ -419,7 +419,7 @@ const selectSymbolMenu = async (service, account) => {
419
419
  }
420
420
  ]);
421
421
 
422
- const displayAccountName = showAccountName ? accountName : '***';
422
+ const displayAccountName = showAccountName ? accountName : 'HQX *****';
423
423
 
424
424
  // Confirmation
425
425
  console.log();
@@ -459,7 +459,7 @@ const selectSymbolMenu = async (service, account) => {
459
459
  */
460
460
  const launchAlgo = async (service, account, contract, numContracts, dailyTarget, maxRisk, showAccountName = true) => {
461
461
  const realAccountName = account.accountName || account.name || 'Account #' + account.accountId;
462
- const accountName = showAccountName ? realAccountName : '***';
462
+ const accountName = showAccountName ? realAccountName : 'HQX *****';
463
463
  const symbolName = contract.name || contract.symbol || contract.id;
464
464
  const symbol = contract.symbol || contract.id;
465
465