mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
50 lines
1021 B
Go
50 lines
1021 B
Go
package bbgo
|
|
|
|
import (
|
|
"github.com/adshao/go-binance"
|
|
"github.com/slack-go/slack"
|
|
)
|
|
|
|
const Green = "#228B22"
|
|
const Red = "#800000"
|
|
|
|
type Order struct {
|
|
Symbol string
|
|
Side binance.SideType
|
|
Type binance.OrderType
|
|
VolumeStr string
|
|
PriceStr string
|
|
|
|
TimeInForce binance.TimeInForceType
|
|
}
|
|
|
|
func (o *Order) SlackAttachment() slack.Attachment {
|
|
var fields = []slack.AttachmentField{
|
|
{Title: "Symbol", Value: o.Symbol, Short: true},
|
|
{Title: "Side", Value: string(o.Side), Short: true},
|
|
{Title: "Volume", Value: o.VolumeStr, Short: true},
|
|
}
|
|
|
|
if len(o.PriceStr) > 0 {
|
|
fields = append(fields, slack.AttachmentField{Title: "Price", Value: o.PriceStr, Short: true})
|
|
}
|
|
|
|
return slack.Attachment{
|
|
Color: SideToColorName(o.Side),
|
|
Title: string(o.Type) + " Order " + string(o.Side),
|
|
// Text: "",
|
|
Fields: fields,
|
|
}
|
|
}
|
|
|
|
func SideToColorName(side binance.SideType) string {
|
|
if side == binance.SideTypeBuy {
|
|
return Green
|
|
}
|
|
if side == binance.SideTypeSell {
|
|
return Red
|
|
}
|
|
|
|
return "#f0f0f0"
|
|
}
|