mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-16 07:26:47 +00:00
* 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>
230 lines
7.6 KiB
Go
230 lines
7.6 KiB
Go
package report
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventhandlers/portfolio"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventhandlers/statistics"
|
|
evkline "github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/kline"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/funding"
|
|
gctcommon "github.com/thrasher-corp/gocryptotrader/common"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
gctkline "github.com/thrasher-corp/gocryptotrader/exchanges/kline"
|
|
gctorder "github.com/thrasher-corp/gocryptotrader/exchanges/order"
|
|
)
|
|
|
|
func TestCreateUSDTotalsChart(t *testing.T) {
|
|
t.Parallel()
|
|
_, err := createUSDTotalsChart(nil, nil)
|
|
if !errors.Is(err, gctcommon.ErrNilPointer) {
|
|
t.Errorf("received '%v' expected '%v'", err, gctcommon.ErrNilPointer)
|
|
}
|
|
tt := time.Now()
|
|
items := []statistics.ValueAtTime{
|
|
{
|
|
Time: tt,
|
|
Value: decimal.NewFromInt(1337),
|
|
Set: true,
|
|
},
|
|
}
|
|
_, err = createUSDTotalsChart(items, nil)
|
|
if !errors.Is(err, gctcommon.ErrNilPointer) {
|
|
t.Errorf("received '%v' expected '%v'", err, gctcommon.ErrNilPointer)
|
|
}
|
|
stats := []statistics.FundingItemStatistics{
|
|
{
|
|
ReportItem: &funding.ReportItem{
|
|
Snapshots: []funding.ItemSnapshot{
|
|
{
|
|
Time: tt,
|
|
USDValue: decimal.NewFromInt(1337),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
resp, err := createUSDTotalsChart(items, stats)
|
|
if !errors.Is(err, nil) {
|
|
t.Fatalf("received '%v' expected '%v'", err, nil)
|
|
}
|
|
if len(resp.Data) == 0 {
|
|
t.Fatal("expected not nil")
|
|
}
|
|
if resp.Data[0].Name != "Total USD value" {
|
|
t.Error("expected not nil")
|
|
}
|
|
if resp.Data[0].LinePlots[0].Value != 1337 {
|
|
t.Error("expected not nil")
|
|
}
|
|
}
|
|
|
|
func TestCreateHoldingsOverTimeChart(t *testing.T) {
|
|
t.Parallel()
|
|
_, err := createHoldingsOverTimeChart(nil)
|
|
if !errors.Is(err, gctcommon.ErrNilPointer) {
|
|
t.Errorf("received '%v' expected '%v'", err, gctcommon.ErrNilPointer)
|
|
}
|
|
tt := time.Now()
|
|
items := []statistics.FundingItemStatistics{
|
|
{
|
|
ReportItem: &funding.ReportItem{
|
|
Exchange: "hello",
|
|
Asset: asset.Spot,
|
|
Currency: currency.BTC,
|
|
Snapshots: []funding.ItemSnapshot{
|
|
{
|
|
Time: tt,
|
|
Available: decimal.NewFromInt(1337),
|
|
},
|
|
{
|
|
Time: tt,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
resp, err := createHoldingsOverTimeChart(items)
|
|
if !errors.Is(err, nil) {
|
|
t.Errorf("received '%v' expected '%v'", err, nil)
|
|
}
|
|
|
|
if !resp.ShowZeroDisclaimer {
|
|
t.Error("expected ShowZeroDisclaimer")
|
|
}
|
|
}
|
|
|
|
func TestCreatePNLCharts(t *testing.T) {
|
|
t.Parallel()
|
|
_, err := createPNLCharts(nil)
|
|
if !errors.Is(err, gctcommon.ErrNilPointer) {
|
|
t.Errorf("received '%v' expected '%v'", err, gctcommon.ErrNilPointer)
|
|
}
|
|
|
|
tt := time.Now()
|
|
var d Data
|
|
d.Statistics = &statistics.Statistic{}
|
|
d.Statistics.ExchangeAssetPairStatistics = make(map[string]map[asset.Item]map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange] = make(map[asset.Item]map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot] = make(map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot][currency.BTC.Item] = make(map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot][currency.BTC.Item][currency.USDT.Item] = &statistics.CurrencyPairStatistic{
|
|
Events: []statistics.DataAtOffset{
|
|
{
|
|
PNL: &portfolio.PNLSummary{
|
|
Result: gctorder.PNLResult{
|
|
Time: tt,
|
|
UnrealisedPNL: decimal.NewFromInt(1337),
|
|
RealisedPNLBeforeFees: decimal.NewFromInt(1337),
|
|
RealisedPNL: decimal.NewFromInt(1337),
|
|
Price: decimal.NewFromInt(1337),
|
|
Exposure: decimal.NewFromInt(1337),
|
|
Direction: gctorder.Short,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
err = d.SetKlineData(&gctkline.Item{
|
|
Exchange: testExchange,
|
|
Pair: currency.NewPair(currency.BTC, currency.USDT),
|
|
Asset: asset.Spot,
|
|
Interval: gctkline.OneDay,
|
|
Candles: []gctkline.Candle{
|
|
{
|
|
Time: tt,
|
|
Open: 1336,
|
|
High: 1338,
|
|
Low: 1336,
|
|
Close: 1337,
|
|
Volume: 1337,
|
|
},
|
|
},
|
|
})
|
|
if !errors.Is(err, nil) {
|
|
t.Errorf("received: %v, expected: %v", err, nil)
|
|
}
|
|
err = d.enhanceCandles()
|
|
if !errors.Is(err, nil) {
|
|
t.Errorf("received: %v, expected: %v", err, nil)
|
|
}
|
|
|
|
_, err = createPNLCharts(d.Statistics.ExchangeAssetPairStatistics)
|
|
if !errors.Is(err, nil) {
|
|
t.Errorf("received '%v' expected '%v'", err, nil)
|
|
}
|
|
}
|
|
|
|
func TestCreateFuturesSpotDiffChart(t *testing.T) {
|
|
t.Parallel()
|
|
_, err := createFuturesSpotDiffChart(nil)
|
|
if !errors.Is(err, gctcommon.ErrNilPointer) {
|
|
t.Errorf("received '%v' expected '%v'", err, gctcommon.ErrNilPointer)
|
|
}
|
|
|
|
tt := time.Now()
|
|
cp := currency.NewPair(currency.BTC, currency.USD)
|
|
cp2 := currency.NewPair(currency.BTC, currency.DOGE)
|
|
var d Data
|
|
d.Statistics = &statistics.Statistic{}
|
|
d.Statistics.ExchangeAssetPairStatistics = make(map[string]map[asset.Item]map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange] = make(map[asset.Item]map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot] = make(map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot][currency.BTC.Item] = make(map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Spot][currency.BTC.Item][currency.USD.Item] = &statistics.CurrencyPairStatistic{
|
|
Currency: cp,
|
|
Events: []statistics.DataAtOffset{
|
|
{
|
|
Time: tt,
|
|
DataEvent: &evkline.Kline{Close: decimal.NewFromInt(1337)},
|
|
PNL: &portfolio.PNLSummary{
|
|
Result: gctorder.PNLResult{
|
|
Time: tt,
|
|
UnrealisedPNL: decimal.NewFromInt(1337),
|
|
RealisedPNLBeforeFees: decimal.NewFromInt(1337),
|
|
RealisedPNL: decimal.NewFromInt(1337),
|
|
Price: decimal.NewFromInt(1337),
|
|
Exposure: decimal.NewFromInt(1337),
|
|
Direction: gctorder.Buy,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Futures] = make(map[*currency.Item]map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Futures][currency.BTC.Item] = make(map[*currency.Item]*statistics.CurrencyPairStatistic)
|
|
d.Statistics.ExchangeAssetPairStatistics[testExchange][asset.Futures][currency.BTC.Item][currency.DOGE.Item] = &statistics.CurrencyPairStatistic{
|
|
UnderlyingPair: cp,
|
|
Currency: cp2,
|
|
Events: []statistics.DataAtOffset{
|
|
{
|
|
Time: tt,
|
|
DataEvent: &evkline.Kline{Close: decimal.NewFromInt(1337)},
|
|
PNL: &portfolio.PNLSummary{
|
|
Result: gctorder.PNLResult{
|
|
Time: tt,
|
|
UnrealisedPNL: decimal.NewFromInt(1337),
|
|
RealisedPNLBeforeFees: decimal.NewFromInt(1337),
|
|
RealisedPNL: decimal.NewFromInt(1337),
|
|
Price: decimal.NewFromInt(1337),
|
|
Exposure: decimal.NewFromInt(1337),
|
|
Direction: gctorder.Short,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
charty, err := createFuturesSpotDiffChart(d.Statistics.ExchangeAssetPairStatistics)
|
|
if !errors.Is(err, nil) {
|
|
t.Errorf("received '%v' expected '%v'", err, nil)
|
|
}
|
|
if len(charty.Data) == 0 {
|
|
t.Error("expected data")
|
|
}
|
|
}
|