bbgo_origin/pkg/slack/slackstyle/style.go
2022-06-20 10:21:42 +08:00

20 lines
374 B
Go

package slackstyle
// Green is the green hex color
const Green = "#228B22"
// Red is the red hex color
const Red = "#800000"
// TrendIcon returns the slack emoji of trends
// 1: uptrend
// -1: downtrend
func TrendIcon(trend int) string {
if trend < 0 {
return ":chart_with_downwards_trend:"
} else if trend > 0 {
return ":chart_with_upwards_trend:"
}
return ""
}