hedgequantx 1.2.48 → 1.2.50

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.48",
3
+ "version": "1.2.50",
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
@@ -158,7 +158,7 @@ const loginPrompt = async (propfirmName) => {
158
158
  }
159
159
  },
160
160
  {
161
- type: 'password',
161
+ type: 'input',
162
162
  name: 'password',
163
163
  message: chalk.white.bold('Password:'),
164
164
  validate: (input) => {
@@ -30,6 +30,7 @@ class RithmicService extends EventEmitter {
30
30
  getPropFirmConfig(key) {
31
31
  const propfirms = {
32
32
  'apex': { name: 'Apex Trader Funding', systemName: 'Apex', defaultBalance: 300000 },
33
+ 'apex_rithmic': { name: 'Apex Trader Funding', systemName: 'Apex', defaultBalance: 300000 },
33
34
  'topstep_r': { name: 'Topstep (Rithmic)', systemName: RITHMIC_SYSTEMS.TOPSTEP, defaultBalance: 150000 },
34
35
  'bulenox_r': { name: 'Bulenox (Rithmic)', systemName: RITHMIC_SYSTEMS.BULENOX, defaultBalance: 150000 },
35
36
  'earn2trade': { name: 'Earn2Trade', systemName: RITHMIC_SYSTEMS.EARN_2_TRADE, defaultBalance: 150000 },