mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-31 23:16:54 +00:00
spellcheck: fix and update (#1359)
* spellcheck: fix and update * spellcheck: add exclude line for gateio_types
This commit is contained in:
@@ -1002,9 +1002,9 @@ func (b *Bitstamp) GetHistoricCandlesExtended(ctx context.Context, pair currency
|
||||
}
|
||||
|
||||
for i := range candles.Data.OHLCV {
|
||||
timstamp := time.Unix(candles.Data.OHLCV[i].Timestamp, 0)
|
||||
if timstamp.Before(req.RangeHolder.Ranges[x].Start.Time) ||
|
||||
timstamp.After(req.RangeHolder.Ranges[x].End.Time) {
|
||||
timestamp := time.Unix(candles.Data.OHLCV[i].Timestamp, 0)
|
||||
if timestamp.Before(req.RangeHolder.Ranges[x].Start.Time) ||
|
||||
timestamp.After(req.RangeHolder.Ranges[x].End.Time) {
|
||||
continue
|
||||
}
|
||||
timeSeries = append(timeSeries, kline.Candle{
|
||||
|
||||
Reference in New Issue
Block a user