hedgequantx 1.8.10 → 1.8.11

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": "1.8.10",
3
+ "version": "1.8.11",
4
4
  "description": "Prop Futures Algo Trading CLI - Connect to Topstep, Alpha Futures, and other prop firms",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -116,10 +116,10 @@ const copyTradingMenu = async () => {
116
116
  // Confirm
117
117
  console.log();
118
118
  console.log(chalk.white(' Summary:'));
119
- console.log(chalk.gray(` Symbol: ${symbol.name}`));
120
- console.log(chalk.gray(` Lead: ${lead.propfirm} x${leadContracts}`));
121
- console.log(chalk.gray(` Follower: ${follower.propfirm} x${followerContracts}`));
122
- console.log(chalk.gray(` Target: $${dailyTarget} | Risk: $${maxRisk}`));
119
+ console.log(chalk.cyan(` Symbol: ${symbol.name}`));
120
+ console.log(chalk.cyan(` Lead: ${lead.propfirm} x${leadContracts}`));
121
+ console.log(chalk.cyan(` Follower: ${follower.propfirm} x${followerContracts}`));
122
+ console.log(chalk.cyan(` Target: $${dailyTarget} | Risk: $${maxRisk}`));
123
123
  console.log();
124
124
 
125
125
  const confirm = await prompts.confirmPrompt('Start Copy Trading?', true);