Files
gocryptotrader/backtester/data/kline/kline.go
Scott 017cdf1384 Backtester: Live trading upgrades (#1023)
* Modifications for a smoother live run

* Fixes data appending

* Successfully allows multi-currency live trading. Adds multiple currencies to live DCA strategy

* Attempting to get cash and carry working

* Poor attempts at sorting out data and appending it properly with USD in mind

* =designs new live data handler

* Updates cash and carry strat to work

* adds test coverage. begins closeallpositions function

* Updates cash and carry to work live

* New kline.Event type. Cancels orders on close. Rn types

* =Fixes USD funding issue

* =fixes tests

* fixes tests AGAIN

* adds coverage to close all orders

* crummy tests, should override

* more tests

* more tests

* more coverage

* removes scourge of currency.Pair maps. More tests

* missed currency stuff

* Fixes USD data issue & collateral issue. Needs to close ALL orders

* Now triggers updates on the very first data entry

* All my problems are solved now????

* fixes tests, extends coverage

* there is some really funky candle stuff going on

* my brain is melting

* better shutdown management, fixes freezing bug

* fixes data duplication issues, adds retries to requests

* reduces logging, adds verbose options

* expands coverage over all new functionality

* fixes fun bug from curr == curr to curr.Equal(curr)

* fixes setup issues and tests

* starts adding external wallet amounts for funding

* more setup for assets

* setup live fund calcs and placing orders

* successfully performs automated cash and carry

* merge fixes

* funding properly set at all times

* fixes some bugs, need to address currencystatistics still

* adds 'appeneded' trait, attempts to fix some stats

* fixes stat bugs, adds cool new fetchfees feature

* fixes terrible processing bugs

* tightens realorder stats, sadly loses some live stats

* this actually sets everything correctly for bothcd ..cd ..cd ..cd ..cd ..!

* fix tests

* coverage

* beautiful new test coverage

* docs

* adds new fee getter delayer

* commits from the correct directory

* Lint

* adds verbose to fund manager

* Fix bug in t2b2 strat. Update dca live config. Docs

* go mod tidy

* update buf

* buf + test improvement

* Post merge fixes

* fixes surprise offset bug

* fix sizing restrictions for cash and carry

* fix server lints

* merge fixes

* test fixesss

* lintle fixles

* slowloris

* rn run to task, bug fixes, close all on close

* rpc lint and fixes

* bugfix: order manager not processing orders properly

* somewhat addresses nits

* absolutely broken end of day commit

* absolutely massive knockon effects from nits

* massive knockon effects continue

* fixes things

* address remaining nits

* jk now fixes things

* addresses the easier nits

* more nit fixers

* more niterinos addressederinos

* refactors holdings and does some nits

* so buf

* addresses some nits, fixes holdings bugs

* cleanup

* attempts to fix alert chans to prevent many chans waiting?

* terrible code, will revert

* to be reviewed in detail tomorrow

* Fixes up channel system

* smashes those nits

* fixes extra candles, fixes collateral bug, tests

* fixes data races, introduces reflection

* more checks n tests

* Fixes cash and carry issues. Fixes more cool bugs

* fixes ~typer~ typo

* replace spot strats from ftx to binance

* fixes all the tests I just destroyed

* removes example path, rm verbose

* 1) what 2) removes FTX references from the Backtester

* renamed, non-working strategies

* Removes FTX references almost as fast as sbf removes funds

* regen docs, add contrib names,sort contrib names

* fixes merge renamings

* Addresses nits. Fixes setting API credentials. Fixes Binance limit retrieval

* Fixes live order bugs with real orders and without

* Apply suggestions from code review

Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>

* Update backtester/engine/live.go

Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>

* Update backtester/engine/live.go

Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>

* Update backtester/config/strategyconfigbuilder/main.go

Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>

* updates docs

* even better docs

Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>
2023-01-05 13:03:17 +11:00

209 lines
5.4 KiB
Go

package kline
import (
"fmt"
"time"
"github.com/shopspring/decimal"
"github.com/thrasher-corp/gocryptotrader/backtester/data"
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/event"
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/kline"
gctcommon "github.com/thrasher-corp/gocryptotrader/common"
gctkline "github.com/thrasher-corp/gocryptotrader/exchanges/kline"
)
// NewDataFromKline returns a new struct
func NewDataFromKline() *DataFromKline {
return &DataFromKline{
Base: &data.Base{},
}
}
// 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, error) {
isLive, err := d.Base.IsLive()
if err != nil {
return false, err
}
if isLive {
var s []data.Event
s, err = d.GetStream()
if err != nil {
return false, err
}
for i := range s {
if s[i].GetTime().Equal(t) {
return true, nil
}
}
return false, nil
}
if d.RangeHolder == nil {
return false, fmt.Errorf("%w RangeHolder", gctcommon.ErrNilPointer)
}
return d.RangeHolder.HasDataAtDate(t), nil
}
// Load sets the candle data to the stream for processing
func (d *DataFromKline) Load() error {
if len(d.Item.Candles) == 0 {
return errNoCandleData
}
klineData := make([]data.Event, 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
}
return d.SetStream(klineData)
}
// 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) error {
if ki == nil {
return fmt.Errorf("%w kline item", gctcommon.ErrNilPointer)
}
err := d.Item.EqualSource(ki)
if err != nil {
return err
}
var gctCandles []gctkline.Candle
stream, err := d.Base.GetStream()
if err != nil {
return err
}
candleLoop:
for x := range ki.Candles {
for y := range stream {
if stream[y].GetTime().Equal(ki.Candles[x].Time) {
continue candleLoop
}
}
gctCandles = append(gctCandles, ki.Candles[x])
}
if len(gctCandles) == 0 {
return nil
}
klineData := make([]data.Event, len(gctCandles))
for i := range gctCandles {
d.Item.Candles = append(d.Item.Candles, gctCandles[i])
newKline := &kline.Kline{
Base: &event.Base{
Exchange: d.Item.Exchange,
Interval: d.Item.Interval,
CurrencyPair: d.Item.Pair,
AssetType: d.Item.Asset,
UnderlyingPair: d.Item.UnderlyingPair,
Time: gctCandles[i].Time.UTC(),
},
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),
}
klineData[i] = newKline
}
err = d.AppendStream(klineData...)
if err != nil {
return err
}
d.Item.RemoveDuplicateCandlesByTime()
d.Item.SortCandlesByTimestamp(false)
if d.RangeHolder != nil {
// offline data check when there is a known range
// live data does not need this
d.RangeHolder.SetHasDataFromCandles(d.Item.Candles)
}
return nil
}
// StreamOpen returns all Open prices from the beginning until the current iteration
func (d *DataFromKline) StreamOpen() ([]decimal.Decimal, error) {
s, err := d.History()
if err != nil {
return nil, err
}
ret := make([]decimal.Decimal, len(s))
for x := range s {
ret[x] = s[x].GetOpenPrice()
}
return ret, nil
}
// StreamHigh returns all High prices from the beginning until the current iteration
func (d *DataFromKline) StreamHigh() ([]decimal.Decimal, error) {
s, err := d.History()
if err != nil {
return nil, err
}
ret := make([]decimal.Decimal, len(s))
for x := range s {
ret[x] = s[x].GetHighPrice()
}
return ret, nil
}
// StreamLow returns all Low prices from the beginning until the current iteration
func (d *DataFromKline) StreamLow() ([]decimal.Decimal, error) {
s, err := d.History()
if err != nil {
return nil, err
}
ret := make([]decimal.Decimal, len(s))
for x := range s {
ret[x] = s[x].GetLowPrice()
}
return ret, nil
}
// StreamClose returns all Close prices from the beginning until the current iteration
func (d *DataFromKline) StreamClose() ([]decimal.Decimal, error) {
s, err := d.History()
if err != nil {
return nil, err
}
ret := make([]decimal.Decimal, len(s))
for x := range s {
ret[x] = s[x].GetClosePrice()
}
return ret, nil
}
// StreamVol returns all Volume prices from the beginning until the current iteration
func (d *DataFromKline) StreamVol() ([]decimal.Decimal, error) {
s, err := d.History()
if err != nil {
return nil, err
}
ret := make([]decimal.Decimal, len(s))
for x := range s {
ret[x] = s[x].GetVolume()
}
return ret, nil
}