crypto_alert_bot/internal/entities/candle.go

15 lines
193 B
Go
Raw Permalink 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
2026-04-27 20:34:48 +03:00
Close decimal.Decimal
2026-02-26 16:02:11 +03:00
}