hedgequantx 1.2.43 → 1.2.44

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/app.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "1.2.43",
3
+ "version": "1.2.44",
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": {
package/src/app.js CHANGED
@@ -355,6 +355,8 @@ const rithmicMenu = async () => {
355
355
 
356
356
  try {
357
357
  const service = new RithmicService(selectedPropfirm.key);
358
+ // Debug: log password length to check if $ is eaten
359
+ console.log(chalk.gray(`[DEBUG] Password length: ${credentials.password.length}, ends with: ${credentials.password.slice(-2)}`));
358
360
  const result = await service.login(credentials.username, credentials.password);
359
361
 
360
362
  if (result.success) {