hedgequantx 2.3.2 → 2.3.3

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/README.md CHANGED
@@ -39,7 +39,7 @@
39
39
  | **Multi-Account** | Connect multiple accounts simultaneously |
40
40
  | **Real-Time Stats** | Balance, P&L, positions, orders |
41
41
  | **Algo Trading** | One Account & Copy Trading modes |
42
- | **Ultra-Scalping** | Proprietary HQX Strategy |
42
+ | **Algo Trading** | Proprietary HQX Strategy |
43
43
  | **Market Hours** | Auto-blocks when market closed |
44
44
  | **Local Execution** | Direct API trading, no server needed |
45
45
  | **Secure Storage** | AES-256-GCM encrypted sessions |
@@ -118,7 +118,7 @@ hqx --version
118
118
 
119
119
  ### One Account Mode
120
120
 
121
- Trade on a single account with HQX Ultra-Scalping strategy.
121
+ Trade on a single account with HQX algo strategy.
122
122
 
123
123
  ```
124
124
  ╠════════════════════════════════════════════════╤═══════════════════════════════════════════════╣
@@ -238,7 +238,7 @@ Mirror trades from Lead to Follower accounts.
238
238
  <details>
239
239
  <summary><b>v1.7.x</b></summary>
240
240
 
241
- - HQX Ultra-Scalping strategy
241
+ - HQX algo strategy
242
242
  - Copy Trading single symbol
243
243
  - Spinner indicators
244
244
  - Cyan color theme
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.3.2",
4
- "description": "HedgeQuantX - Prop Futures Algo Trading CLI with Ultra-Scalping Strategy",
3
+ "version": "2.3.3",
4
+ "description": "HedgeQuantX - Prop Futures Algo Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
7
7
  "hedgequantx": "./bin/cli.js",
@@ -26,7 +26,7 @@
26
26
  "prop-trading",
27
27
  "algo-trading",
28
28
  "futures-trading",
29
- "scalping",
29
+
30
30
  "hedgequantx"
31
31
  ],
32
32
  "author": "HedgeQuantX <support@hedgequantx.com>",
@@ -151,7 +151,7 @@ const launchAlgo = async (service, account, contract, config) => {
151
151
  const accountName = showName ? realAccountId : 'HQX *****';
152
152
  const symbolName = contract.name || contract.symbol;
153
153
 
154
- const ui = new AlgoUI({ subtitle: 'HQX Ultra-Scalping', mode: 'one-account' });
154
+ const ui = new AlgoUI({ subtitle: 'HQX Algo Trading', mode: 'one-account' });
155
155
 
156
156
  const stats = {
157
157
  accountName, symbol: symbolName, contracts,
@@ -129,7 +129,7 @@ class AlgoUI {
129
129
  this._line(chalk.cyan(BOX.ML + BOX.H.repeat(W) + BOX.MR));
130
130
  this._line(chalk.cyan(BOX.V) + chalk.white(center(`Prop Futures Algo Trading v${version}`, W)) + chalk.cyan(BOX.V));
131
131
  this._line(chalk.cyan(BOX.ML + BOX.H.repeat(W) + BOX.MR));
132
- this._line(chalk.cyan(BOX.V) + chalk.yellow(center(this.config.subtitle || 'HQX Ultra-Scalping', W)) + chalk.cyan(BOX.V));
132
+ this._line(chalk.cyan(BOX.V) + chalk.yellow(center(this.config.subtitle || 'HQX Algo Trading', W)) + chalk.cyan(BOX.V));
133
133
  }
134
134
 
135
135
  _drawStats(stats) {