thesis_forecasting_website / loaders /indicator_struct.go
tebakaja's picture
deployment
03c0050
raw
history blame
324 Bytes
package loaders
type Indicator struct {
Date string `json:"date"`
FullDate string `json:"full_date"`
MFI float64 `json:"MFI"`
RSI float64 `json:"RSI"`
MACD float64 `json:"MACD"`
}
type IndicatorsWrapper struct {
Indicators []Indicator `json:"indicators"`
}