tardis-dev 13.34.4 → 13.35.0
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/dist/mappers/binance.js
CHANGED
|
@@ -339,7 +339,7 @@ class BinanceLiquidationsMapper {
|
|
|
339
339
|
exchange: this._exchange,
|
|
340
340
|
id: undefined,
|
|
341
341
|
price: Number(binanceLiquidation.p),
|
|
342
|
-
amount: Number(binanceLiquidation.
|
|
342
|
+
amount: Number(binanceLiquidation.z),
|
|
343
343
|
side: binanceLiquidation.S === 'SELL' ? 'sell' : 'buy',
|
|
344
344
|
timestamp: (0, handy_1.fromMicroSecondsToDate)(binanceLiquidation.T),
|
|
345
345
|
localTimestamp: localTimestamp
|
package/package.json
CHANGED
package/src/mappers/binance.ts
CHANGED
|
@@ -396,7 +396,7 @@ export class BinanceLiquidationsMapper implements Mapper<'binance-futures' | 'bi
|
|
|
396
396
|
exchange: this._exchange,
|
|
397
397
|
id: undefined,
|
|
398
398
|
price: Number(binanceLiquidation.p),
|
|
399
|
-
amount: Number(binanceLiquidation.
|
|
399
|
+
amount: Number(binanceLiquidation.z), // Order Filled Accumulated Quantity
|
|
400
400
|
side: binanceLiquidation.S === 'SELL' ? 'sell' : 'buy',
|
|
401
401
|
timestamp: fromMicroSecondsToDate(binanceLiquidation.T),
|
|
402
402
|
localTimestamp: localTimestamp
|