@icgio/icg-exchanges-wrapper 1.14.5 → 1.14.6

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.
@@ -423,12 +423,14 @@ module.exports = class Orders {
423
423
  stats.push({
424
424
  exchange: exchange,
425
425
  pair: pair,
426
- type: type.toUpperCase(),
426
+ type: type,
427
427
  order_id: order_id,
428
- price: order.price || 'N/A',
429
- amount: order.amount || 0,
430
- f_amount: order.f_amount || 0,
431
- t_amount: order.t_amount || 0,
428
+ order_type: order.order_type,
429
+ price: order.price,
430
+ amount: order.amount,
431
+ f_amount: order.f_amount,
432
+ t_amount: order.t_amount,
433
+ open_time: order.open_time,
432
434
  })
433
435
  }
434
436
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icgio/icg-exchanges-wrapper",
3
- "version": "1.14.5",
3
+ "version": "1.14.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {