@icgio/icg-exchanges-wrapper 1.9.145 → 1.9.146
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/middleware/orders.js +1 -1
- package/package.json +1 -1
package/middleware/orders.js
CHANGED
|
@@ -650,7 +650,7 @@ module.exports = class Orders {
|
|
|
650
650
|
// start: log every f-filled trade for future analysis
|
|
651
651
|
if (dict.status === 'F-FILLED') {
|
|
652
652
|
let { price, amount, f_amount, t_amount, fees, close_time } = _.get(this.order_info, [exchange, pair, type, order_id])
|
|
653
|
-
fees =
|
|
653
|
+
fees = JSON.stringify(fees)
|
|
654
654
|
console.log(`f_filled_orders_info:${exchange},${pair},${type},${order_id},${price},${amount},${f_amount},${t_amount},${fees},${close_time},${note}`)
|
|
655
655
|
}
|
|
656
656
|
// end: log every f-filled trade for future analysis
|