mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 00:35:15 +00:00
add kline color and submitMarketOrder method
This commit is contained in:
parent
884a9730f1
commit
d28bec2a05
|
@ -128,8 +128,16 @@ func (k KLine) String() string {
|
||||||
|
|
||||||
|
|
||||||
func (k KLine) SlackAttachment() slack.Attachment {
|
func (k KLine) SlackAttachment() slack.Attachment {
|
||||||
|
var color = ""
|
||||||
|
if k.GetTrend() > 0 {
|
||||||
|
color = "green"
|
||||||
|
} else if k.GetTrend() < 0 {
|
||||||
|
color = "red"
|
||||||
|
}
|
||||||
|
|
||||||
return slack.Attachment{
|
return slack.Attachment{
|
||||||
Text: "KLine",
|
Text: "KLine",
|
||||||
|
Color: color,
|
||||||
Fields: []slack.AttachmentField{
|
Fields: []slack.AttachmentField{
|
||||||
{
|
{
|
||||||
Title: "Open",
|
Title: "Open",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user