crypto_alert_bot/internal/entities/candle.go

14 lines
167 B
Go
Raw Normal View History

2026-02-26 16:02:11 +03:00
package entities
import (
"time"
"github.com/shopspring/decimal"
)
type Candle struct {
OpenTime time.Time
High decimal.Decimal
Low decimal.Decimal
}