hedgequantx 2.6.35 → 2.6.36
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
|
@@ -550,7 +550,7 @@ const launchAlgo = async (service, account, contract, config) => {
|
|
|
550
550
|
|
|
551
551
|
// Debug: log first tick to see structure
|
|
552
552
|
if (tickCount === 1) {
|
|
553
|
-
algoLogger.info(ui, 'FIRST TICK', `price=${tick.price} bid=${tick.bid} ask=${tick.ask} vol=${tick.volume}`);
|
|
553
|
+
algoLogger.info(ui, 'FIRST TICK', `price=${tick.price} bid=${tick.bid} ask=${tick.ask} vol=${tick.volume || tick.size || 0}`);
|
|
554
554
|
}
|
|
555
555
|
|
|
556
556
|
// Feed tick to strategy
|