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
|
@@ -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
|
|