crypto_alert_bot/internal/entities/candle.go
2026-02-26 16:02:11 +03:00

13 lines
167 B
Go

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