diff --git a/pkg/types/trade.go b/pkg/types/trade.go index 1d01e4382..0b70ba821 100644 --- a/pkg/types/trade.go +++ b/pkg/types/trade.go @@ -96,8 +96,8 @@ func (trade Trade) SlackAttachment() slack.Attachment { Fields: []slack.AttachmentField{ {Title: "Exchange", Value: trade.Exchange, Short: true}, {Title: "Price", Value: util.FormatFloat(trade.Price, 2), Short: true}, - {Title: "Volume", Value: util.FormatFloat(trade.Quantity, 4), Short: true}, - {Title: "Quantity", Value: util.FormatFloat(trade.QuoteQuantity, 2)}, + {Title: "Quote", Value: util.FormatFloat(trade.Quantity, 4), Short: true}, + {Title: "QuoteQuantity", Value: util.FormatFloat(trade.QuoteQuantity, 2)}, {Title: "Fee", Value: util.FormatFloat(trade.Fee, 4), Short: true}, {Title: "FeeCurrency", Value: trade.FeeCurrency, Short: true}, },