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.Symbol,
o.Type, o.Type,
o.Side, o.Side,
o.Price.FormatString(2), o.Price.String(),
o.ExecutedQuantity.FormatString(2), o.ExecutedQuantity.String(),
o.Quantity.FormatString(4), o.Quantity.String(),
o.Status) o.Status)
} }