hedgequantx 2.9.40 → 2.9.42

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.
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.40",
3
+ "version": "2.9.42",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -14,7 +14,7 @@ const path = require('path');
14
14
  const STRATEGIES = {
15
15
  'ultra-scalping': {
16
16
  id: 'ultra-scalping',
17
- name: 'HQX Ultra Scalping',
17
+ name: 'HQX Scalping',
18
18
  description: '6 Mathematical Models (Z-Score, VPIN, Kyle, Kalman, Vol, OFI)',
19
19
  version: '2.0',
20
20
  backtest: {
@@ -207,7 +207,6 @@ const selectStrategy = async () => {
207
207
  // Show strategy details
208
208
  for (const s of strategies) {
209
209
  console.log(chalk.white(` ${s.name}`));
210
- console.log(chalk.gray(` ${s.description}`));
211
210
  console.log(chalk.gray(` Backtest: ${s.backtest.pnl} | ${s.backtest.winRate} WR | ${s.backtest.trades} trades`));
212
211
  console.log(chalk.gray(` Stop: ${s.params.stopTicks} ticks | Target: ${s.params.targetTicks} ticks | R:R ${s.params.riskReward}`));
213
212
  console.log();