hedgequantx 2.6.30 → 2.6.31

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": "2.6.30",
3
+ "version": "2.6.31",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -229,6 +229,9 @@ const launchAlgo = async (service, account, contract, config) => {
229
229
  const tickSize = contract.tickSize ?? null;
230
230
  const tickValue = contract.tickValue ?? null;
231
231
 
232
+ // Debug: log contract specs
233
+ console.log(` DEBUG: Contract specs - tickSize=${tickSize}, tickValue=${tickValue}, baseSymbol=${contract.baseSymbol}`);
234
+
232
235
  // Determine execution path
233
236
  const useFastPath = isRithmicFastPath(service);
234
237