trademodel/ticker.go

12 lines
196 B
Go
Raw Normal View History

2024-06-25 13:52:58 +00:00
package trademodel
type Ticker struct {
CurrencyPair string
Last float64
High float64
Low float64
Bid float64
Ask float64
Volume float64
}