hedgequantx 2.3.1 → 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,10 +39,9 @@
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** | VWAP Mean Reversion + Order Flow |
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
- | **Protected Strategy** | Bytecode compiled for protection |
46
45
  | **Secure Storage** | AES-256-GCM encrypted sessions |
47
46
  | **Auto-Update** | Built-in version checker |
48
47
 
@@ -119,7 +118,7 @@ hqx --version
119
118
 
120
119
  ### One Account Mode
121
120
 
122
- Trade on a single account with HQX Ultra-Scalping strategy.
121
+ Trade on a single account with HQX algo strategy.
123
122
 
124
123
  ```
125
124
  ╠════════════════════════════════════════════════╤═══════════════════════════════════════════════╣
@@ -239,7 +238,7 @@ Mirror trades from Lead to Follower accounts.
239
238
  <details>
240
239
  <summary><b>v1.7.x</b></summary>
241
240
 
242
- - HQX Ultra-Scalping strategy
241
+ - HQX algo strategy
243
242
  - Copy Trading single symbol
244
243
  - Spinner indicators
245
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.1",
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) {