Files
TradingBot/internal/model/bar.go
2026-01-14 22:44:12 +01:00

14 lines
161 B
Go

package model
import "time"
type Bar struct {
Symbol string
Time time.Time
Open float64
High float64
Low float64
Close float64
Volume int64
}