thesis_forecasting_website / loaders /historical_struct.go
tebakaja's picture
deployment
03c0050
raw
history blame
412 Bytes
package loaders
type Historical struct {
Date string `json:"date"`
FullDate string `json:"full_date"`
Open float64 `json:"open"`
High float64 `json:"high"`
Low float64 `json:"low"`
Close float64 `json:"close"`
Volume float64 `json:"volume"`
}
type HistoricalsWrapper struct {
Historicals []Historical `json:"historicals"`
}