hedgequantx 1.2.46 → 1.2.47

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.2.46",
3
+ "version": "1.2.47",
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": {
@@ -150,9 +150,6 @@ class RithmicConnection extends EventEmitter {
150
150
  onLoginResponse(data) {
151
151
  try {
152
152
  const res = proto.decode('ResponseLogin', data);
153
-
154
- // Debug: log full response
155
- console.log('[DEBUG] Login response rpCode:', JSON.stringify(res.rpCode));
156
153
 
157
154
  if (res.rpCode?.[0] === '0') {
158
155
  this.state = 'LOGGED_IN';
@@ -29,7 +29,7 @@ class RithmicService extends EventEmitter {
29
29
  */
30
30
  getPropFirmConfig(key) {
31
31
  const propfirms = {
32
- 'apex': { name: 'Apex Trader Funding', systemName: 'Rithmic Paper Trading', defaultBalance: 300000 },
32
+ 'apex': { name: 'Apex Trader Funding', systemName: 'Apex', defaultBalance: 300000 },
33
33
  'topstep_r': { name: 'Topstep (Rithmic)', systemName: RITHMIC_SYSTEMS.TOPSTEP, defaultBalance: 150000 },
34
34
  'bulenox_r': { name: 'Bulenox (Rithmic)', systemName: RITHMIC_SYSTEMS.BULENOX, defaultBalance: 150000 },
35
35
  'earn2trade': { name: 'Earn2Trade', systemName: RITHMIC_SYSTEMS.EARN_2_TRADE, defaultBalance: 150000 },