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 +3 -4
- package/dist/algo/copy-engine.jsc +0 -0
- package/dist/algo/engine.jsc +0 -0
- package/dist/algo/market-data-rithmic.jsc +0 -0
- package/dist/algo/market-data.jsc +0 -0
- package/dist/algo/rithmic/connection.jsc +0 -0
- package/dist/algo/rithmic/constants.jsc +0 -0
- package/dist/algo/rithmic/index.jsc +0 -0
- package/dist/algo/rithmic/market-data.jsc +0 -0
- package/dist/algo/rithmic/pnl.jsc +0 -0
- package/dist/algo/rithmic/pool.jsc +0 -0
- package/dist/algo/rithmic/trading.jsc +0 -0
- package/dist/algo/rithmic-decoder.jsc +0 -0
- package/dist/algo/strategies/ultra-scalping-v2.jsc +0 -0
- package/dist/algo/strategies/ultra-scalping.jsc +0 -0
- package/dist/algo/trading-api-rithmic.jsc +0 -0
- package/dist/algo/trading-api.jsc +0 -0
- package/dist/algo/utils/smart-logger.jsc +0 -0
- package/dist/algo/utils/smart-logs.jsc +0 -0
- package/package.json +3 -3
- package/src/pages/algo/one-account.js +1 -1
- package/src/pages/algo/ui.js +1 -1
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
|
-
| **
|
|
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
|
|
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
|
|
241
|
+
- HQX algo strategy
|
|
243
242
|
- Copy Trading single symbol
|
|
244
243
|
- Spinner indicators
|
|
245
244
|
- Cyan color theme
|
|
Binary file
|
package/dist/algo/engine.jsc
CHANGED
|
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
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hedgequantx",
|
|
3
|
-
"version": "2.3.
|
|
4
|
-
"description": "HedgeQuantX - Prop Futures Algo Trading CLI
|
|
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
|
-
|
|
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
|
|
154
|
+
const ui = new AlgoUI({ subtitle: 'HQX Algo Trading', mode: 'one-account' });
|
|
155
155
|
|
|
156
156
|
const stats = {
|
|
157
157
|
accountName, symbol: symbolName, contracts,
|
package/src/pages/algo/ui.js
CHANGED
|
@@ -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
|
|
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) {
|