Skip to content

Commit

Permalink
refine bollinger band impl
Browse files Browse the repository at this point in the history
  • Loading branch information
bonedaddy committed Jan 10, 2021
1 parent b1ce150 commit b01256d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion discord/charts.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ func (c *Client) priceWindowChart(ctx *dgc.Ctx) {
}

bbSeries := &chart.BollingerBandsSeries{
Name: pair + " - bol. bands",
Name: pair + " - bol. bands",
Period: 20,
K: 2,
Style: chart.Style{
StrokeColor: drawing.ColorBlack,
//StrokeColor: drawing.ColorFromHex("efefef"),
Expand Down

0 comments on commit b01256d

Please sign in to comment.