14 lines
167 B
Go
14 lines
167 B
Go
|
|
package entities
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/shopspring/decimal"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Candle struct {
|
||
|
|
OpenTime time.Time
|
||
|
|
High decimal.Decimal
|
||
|
|
Low decimal.Decimal
|
||
|
|
}
|