hedgequantx 2.7.8 → 2.7.9

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": "2.7.8",
3
+ "version": "2.7.9",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -60,9 +60,7 @@ const renderEquityCurve = (data) => {
60
60
  });
61
61
  } else {
62
62
  // No trade data message
63
- const msg = connectionTypes.rithmic > 0
64
- ? ' No trade history (Rithmic does not provide trade history API)'
65
- : ' No trade data available';
63
+ const msg = ' No trades found';
66
64
  console.log(chalk.cyan('\u2551') + chalk.gray(msg) + ' '.repeat(Math.max(0, chartInnerWidth - msg.length)) + chalk.cyan('\u2551'));
67
65
  }
68
66
 
@@ -161,7 +161,7 @@ const renderTradesHistory = (data) => {
161
161
  console.log(chalk.cyan('\u2551') + moreMsg.padEnd(innerWidth) + chalk.cyan('\u2551'));
162
162
  }
163
163
  } else {
164
- const msg = ' No trade history (Rithmic API limitation)';
164
+ const msg = ' No trades found';
165
165
  console.log(chalk.cyan('\u2551') + chalk.gray(msg.padEnd(innerWidth)) + chalk.cyan('\u2551'));
166
166
  }
167
167