package entity type Kline struct { Source string `json:"source"` Symbol string `json:"symbol"` Interval string `json:"interval"` OpenTime int64 `json:"openTime"` CloseTime int64 `json:"closeTime"` Open string `json:"open"` High string `json:"high"` Low string `json:"low"` Close string `json:"close"` Volume string `json:"volume"` QuoteVolume string `json:"quoteVolume"` TradeCount int64 `json:"tradeCount"` TakerBuyBaseVolume string `json:"takerBuyBaseVolume"` TakerBuyQuoteVolume string `json:"takerBuyQuoteVolume"` IsClosed bool `json:"-"` }