Updated Huobi ticker struct.

This commit is contained in:
Adrian Gallagher
2015-02-11 10:35:16 +11:00
parent 173daa6247
commit 6cb04a7ad8

View File

@@ -22,16 +22,16 @@ type HUOBI struct {
}
type HuobiTicker struct {
High float64 `json:",string"`
Low float64 `json:",string"`
Last float64 `json:",string"`
Vol float64
Buy float64 `json:",string"`
Sell float64 `json:",string"`
High float64
Low float64
Last float64
Vol float64
Buy float64
Sell float64
}
type HuobiTickerResponse struct {
Time int64
Time string
Ticker HuobiTicker
}