package entities
import (
"time"
"github.com/shopspring/decimal"
)
type Candle struct {
OpenTime time.Time
High decimal.Decimal
Low decimal.Decimal
Close decimal.Decimal
}