candles based alerts
This commit is contained in:
parent
bec3b7de5b
commit
999f675da9
11 changed files with 316 additions and 15 deletions
13
internal/entities/candle.go
Normal file
13
internal/entities/candle.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package entities
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
)
|
||||
|
||||
type Candle struct {
|
||||
OpenTime time.Time
|
||||
High decimal.Decimal
|
||||
Low decimal.Decimal
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue