hedgequantx 2.9.28 → 2.9.29
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 +1 -1
- package/src/config/propfirms.js +11 -0
package/package.json
CHANGED
package/src/config/propfirms.js
CHANGED
|
@@ -15,6 +15,14 @@ const PROPFIRMS = {
|
|
|
15
15
|
rithmicSystem: 'Apex',
|
|
16
16
|
wsEndpoint: 'wss://ritpa11120.11.rithmic.com:443',
|
|
17
17
|
},
|
|
18
|
+
rithmic_paper: {
|
|
19
|
+
id: 'rithmic-paper',
|
|
20
|
+
name: 'Rithmic Paper Trading',
|
|
21
|
+
displayName: 'Rithmic Paper Trading',
|
|
22
|
+
platform: 'Rithmic',
|
|
23
|
+
rithmicSystem: 'Rithmic Paper Trading',
|
|
24
|
+
wsEndpoint: 'wss://ritpa11120.11.rithmic.com:443',
|
|
25
|
+
},
|
|
18
26
|
topsteptrader: {
|
|
19
27
|
id: 'topsteptrader',
|
|
20
28
|
name: 'TopstepTrader',
|
|
@@ -146,6 +154,9 @@ const PROPFIRM_CHOICES = Object.entries(PROPFIRMS)
|
|
|
146
154
|
// Apex always first
|
|
147
155
|
if (a.name === 'Apex') return -1;
|
|
148
156
|
if (b.name === 'Apex') return 1;
|
|
157
|
+
// Rithmic Paper Trading second
|
|
158
|
+
if (a.name === 'Rithmic Paper Trading') return -1;
|
|
159
|
+
if (b.name === 'Rithmic Paper Trading') return 1;
|
|
149
160
|
// 4PropTrader and 10XFutures always last
|
|
150
161
|
const lastItems = ['4PropTrader', '10XFutures'];
|
|
151
162
|
const aIsLast = lastItems.includes(a.name);
|