fix: tg order decimal

This commit is contained in:
zenix.huang 2024-05-20 00:19:28 +09:00
parent ad6efaf449
commit 24ab4895b6

View File

@ -365,9 +365,9 @@ func (o Order) PlainText() string {
o.Symbol,
o.Type,
o.Side,
o.Price.FormatString(2),
o.ExecutedQuantity.FormatString(2),
o.Quantity.FormatString(4),
o.Price.String(),
o.ExecutedQuantity.String(),
o.Quantity.String(),
o.Status)
}