type Quote struct {
LatestUpdate int `json:"latestUpdate"`
Symbol string `json:"symbol"`
CompanyName string `json:"companyName"`
Close float64 `json:"close"`
High float64 `json:"high"`
Low float64 `json:"low"`
Open float64 `json:"open"`
Volume int64 `json:"volume"`
}