- package sentio
- import "time"
- type Bar struct {
- Datetime time.Time `json:"datetime" yaml:"datetime"`
- Open float64 `json:"open" yaml:"open"`
- High float64 `json:"high" yaml:"high"`
- Low float64 `json:"low" yaml:"low"`
- Close float64 `json:"close" yaml:"close"`
- Volume float64 `json:"volume" yaml:"volume"`
- Trades int `json:"trades" yaml:"trades"`
- }
|