Files
gocryptotrader/backtester/data/kline/kline.go
Scott 1461cba363 backtester: standalone application (#988)
* Ramshackle early leads to GRPC backtester

* Adds GRPC server, default config generation

* Partial support for GRPC backtester config

* Update to use Buf, merge fixes

* Full config for GRPC

* Adds new commands, causes big panic

* Fixes panics

* Setup for the future

* Docs update

* test

* grpc tests

* Fix merge issues. Lint and test

* minor fixes after rebase

* Docs, formatting and main fixes

* Change buf owner

* shazNits

* test-123

* rpc fixes

* string fixes

* Removes --singlerun flag and just relies on --singlerunstrategypath

* fixes test

* initial post merge compatability fixes

* this actually all seems to work? unexpected

* adds pluginpath to config

* rm unused func. add gitignore

* rm unused func. add gitignore

* lintle

* tITLE cASE lOG fIX,rm auth package, gitignore, tmpdir fix

* buf updates + gen. go mod tidy

* x2

* Update default port, update error text
2022-09-08 16:22:30 +10:00

182 lines
5.3 KiB
Go

package kline
import (
"time"
"github.com/shopspring/decimal"
"github.com/thrasher-corp/gocryptotrader/backtester/common"
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/event"
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/kline"
gctkline "github.com/thrasher-corp/gocryptotrader/exchanges/kline"
"github.com/thrasher-corp/gocryptotrader/log"
)
// HasDataAtTime verifies checks the underlying range data
// To determine whether there is any candle data present at the time provided
func (d *DataFromKline) HasDataAtTime(t time.Time) bool {
if d.RangeHolder == nil {
return false
}
return d.RangeHolder.HasDataAtDate(t)
}
// Load sets the candle data to the stream for processing
func (d *DataFromKline) Load() error {
d.addedTimes = make(map[int64]bool)
if len(d.Item.Candles) == 0 {
return errNoCandleData
}
klineData := make([]common.DataEventHandler, len(d.Item.Candles))
for i := range d.Item.Candles {
newKline := &kline.Kline{
Base: &event.Base{
Offset: int64(i + 1),
Exchange: d.Item.Exchange,
Time: d.Item.Candles[i].Time.UTC(),
Interval: d.Item.Interval,
CurrencyPair: d.Item.Pair,
AssetType: d.Item.Asset,
UnderlyingPair: d.Item.UnderlyingPair,
},
Open: decimal.NewFromFloat(d.Item.Candles[i].Open),
High: decimal.NewFromFloat(d.Item.Candles[i].High),
Low: decimal.NewFromFloat(d.Item.Candles[i].Low),
Close: decimal.NewFromFloat(d.Item.Candles[i].Close),
Volume: decimal.NewFromFloat(d.Item.Candles[i].Volume),
ValidationIssues: d.Item.Candles[i].ValidationIssues,
}
klineData[i] = newKline
d.addedTimes[d.Item.Candles[i].Time.UTC().UnixNano()] = true
}
d.SetStream(klineData)
d.SortStream()
return nil
}
// AppendResults adds a candle item to the data stream and sorts it to ensure it is all in order
func (d *DataFromKline) AppendResults(ki *gctkline.Item) {
if d.addedTimes == nil {
d.addedTimes = make(map[int64]bool)
}
var gctCandles []gctkline.Candle
for i := range ki.Candles {
if _, ok := d.addedTimes[ki.Candles[i].Time.UnixNano()]; !ok {
gctCandles = append(gctCandles, ki.Candles[i])
d.addedTimes[ki.Candles[i].Time.UnixNano()] = true
}
}
klineData := make([]common.DataEventHandler, len(gctCandles))
candleTimes := make([]time.Time, len(gctCandles))
for i := range gctCandles {
klineData[i] = &kline.Kline{
Base: &event.Base{
Offset: int64(i + 1),
Exchange: ki.Exchange,
Time: gctCandles[i].Time,
Interval: ki.Interval,
CurrencyPair: ki.Pair,
AssetType: ki.Asset,
},
Open: decimal.NewFromFloat(gctCandles[i].Open),
High: decimal.NewFromFloat(gctCandles[i].High),
Low: decimal.NewFromFloat(gctCandles[i].Low),
Close: decimal.NewFromFloat(gctCandles[i].Close),
Volume: decimal.NewFromFloat(gctCandles[i].Volume),
ValidationIssues: gctCandles[i].ValidationIssues,
}
candleTimes[i] = gctCandles[i].Time
}
for i := range d.RangeHolder.Ranges {
for j := range d.RangeHolder.Ranges[i].Intervals {
d.RangeHolder.Ranges[i].Intervals[j].HasData = true
}
}
log.Debugf(common.Data, "Appending %v candle intervals: %v", len(gctCandles), candleTimes)
d.AppendStream(klineData...)
d.SortStream()
}
// StreamOpen returns all Open prices from the beginning until the current iteration
func (d *DataFromKline) StreamOpen() []decimal.Decimal {
s := d.GetStream()
o := d.Offset()
ret := make([]decimal.Decimal, o)
for x := range s[:o] {
if val, ok := s[x].(*kline.Kline); ok {
ret[x] = val.Open
} else {
log.Errorf(common.Data, "Incorrect data loaded into stream")
}
}
return ret
}
// StreamHigh returns all High prices from the beginning until the current iteration
func (d *DataFromKline) StreamHigh() []decimal.Decimal {
s := d.GetStream()
o := d.Offset()
ret := make([]decimal.Decimal, o)
for x := range s[:o] {
if val, ok := s[x].(*kline.Kline); ok {
ret[x] = val.High
} else {
log.Errorf(common.Data, "Incorrect data loaded into stream")
}
}
return ret
}
// StreamLow returns all Low prices from the beginning until the current iteration
func (d *DataFromKline) StreamLow() []decimal.Decimal {
s := d.GetStream()
o := d.Offset()
ret := make([]decimal.Decimal, o)
for x := range s[:o] {
if val, ok := s[x].(*kline.Kline); ok {
ret[x] = val.Low
} else {
log.Errorf(common.Data, "Incorrect data loaded into stream")
}
}
return ret
}
// StreamClose returns all Close prices from the beginning until the current iteration
func (d *DataFromKline) StreamClose() []decimal.Decimal {
s := d.GetStream()
o := d.Offset()
ret := make([]decimal.Decimal, o)
for x := range s[:o] {
if val, ok := s[x].(*kline.Kline); ok {
ret[x] = val.Close
} else {
log.Errorf(common.Data, "Incorrect data loaded into stream")
}
}
return ret
}
// StreamVol returns all Volume prices from the beginning until the current iteration
func (d *DataFromKline) StreamVol() []decimal.Decimal {
s := d.GetStream()
o := d.Offset()
ret := make([]decimal.Decimal, o)
for x := range s[:o] {
if val, ok := s[x].(*kline.Kline); ok {
ret[x] = val.Volume
} else {
log.Errorf(common.Data, "Incorrect data loaded into stream")
}
}
return ret
}