mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-06 07:26:47 +00:00
* Initial concept for creating price tracking pairs * Completes coverage, even with a slow test * I dont know what point to hook this stuff up * Bit of a broken way of handling tracking pairs * Correctly calculates USD rates against all currencies * Removes dependency on GCT config * Failed currency statistics redesign * initial Update chart to use highcharts * Minor changes to stats * Creats funding stats to handle the stat calculations. Needs more work * tracks USD snapshots and BREAKS THINGS FURTHER * Fixed! * Adds ratio calculations and such, but its WRONG. do it at totals level dummy * End of day basic lint * Remaining lints * USD totals statistics * Minor panic fixes * Printing of funding stats, but its bad * Properly calculates overall benchmark, moves funding stat output * Adds some template charge, removes duplicate fields * New charts! * Darkcharts. funding protection when disabled * Now works with usd tracking/funding disabled! * Attempting to only show working stats based on settings. * Spruces up the goose/reporting * Completes report HTML rendering * lint and test fixes * funding statistics testing * slightly more test coverage * Test coverage * Initial documentation * Fixes tests * Database testing and rendering improvements and breakages * report and cmd rendering, linting. fix comma output. rm gct cfg * PR mode 🎉 Path field, config builder support,testing,linting,docs * minor calculation improvement * Secret lint that did not show up locally * Disable USD tracking for example configs * ShazNitNoScope * Forgotten errors * "" * literally Logarithmically logically renders the date 👀 * Fixes typos, fixes parallel test, fixes chart gui and exporting
236 lines
7.4 KiB
Go
236 lines
7.4 KiB
Go
package statistics
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventhandlers/portfolio/compliance"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventhandlers/portfolio/holdings"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/event"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/kline"
|
|
"github.com/thrasher-corp/gocryptotrader/backtester/eventtypes/signal"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
gctkline "github.com/thrasher-corp/gocryptotrader/exchanges/kline"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/order"
|
|
)
|
|
|
|
func TestCalculateResults(t *testing.T) {
|
|
t.Parallel()
|
|
cs := CurrencyPairStatistic{}
|
|
tt1 := time.Now()
|
|
tt2 := time.Now().Add(gctkline.OneDay.Duration())
|
|
exch := testExchange
|
|
a := asset.Spot
|
|
p := currency.NewPair(currency.BTC, currency.USDT)
|
|
even := event.Base{
|
|
Exchange: exch,
|
|
Time: tt1,
|
|
Interval: gctkline.OneDay,
|
|
CurrencyPair: p,
|
|
AssetType: a,
|
|
}
|
|
ev := EventStore{
|
|
Holdings: holdings.Holding{
|
|
ChangeInTotalValuePercent: decimal.NewFromFloat(0.1333),
|
|
Timestamp: tt1,
|
|
QuoteInitialFunds: decimal.NewFromInt(1337),
|
|
},
|
|
Transactions: compliance.Snapshot{
|
|
Orders: []compliance.SnapshotOrder{
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1338),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1338),
|
|
SlippageRate: decimal.NewFromInt(1338),
|
|
CostBasis: decimal.NewFromInt(1338),
|
|
Detail: &order.Detail{Side: order.Buy},
|
|
},
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1337),
|
|
SlippageRate: decimal.NewFromInt(1337),
|
|
CostBasis: decimal.NewFromInt(1337),
|
|
Detail: &order.Detail{Side: order.Sell},
|
|
},
|
|
},
|
|
},
|
|
DataEvent: &kline.Kline{
|
|
Base: even,
|
|
Open: decimal.NewFromInt(2000),
|
|
Close: decimal.NewFromInt(2000),
|
|
Low: decimal.NewFromInt(2000),
|
|
High: decimal.NewFromInt(2000),
|
|
Volume: decimal.NewFromInt(2000),
|
|
},
|
|
SignalEvent: &signal.Signal{
|
|
Base: even,
|
|
ClosePrice: decimal.NewFromInt(2000),
|
|
},
|
|
}
|
|
even2 := even
|
|
even2.Time = tt2
|
|
ev2 := EventStore{
|
|
Holdings: holdings.Holding{
|
|
ChangeInTotalValuePercent: decimal.NewFromFloat(0.1337),
|
|
Timestamp: tt2,
|
|
QuoteInitialFunds: decimal.NewFromInt(1337),
|
|
},
|
|
Transactions: compliance.Snapshot{
|
|
Orders: []compliance.SnapshotOrder{
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1338),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1338),
|
|
SlippageRate: decimal.NewFromInt(1338),
|
|
CostBasis: decimal.NewFromInt(1338),
|
|
Detail: &order.Detail{Side: order.Buy},
|
|
},
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1337),
|
|
SlippageRate: decimal.NewFromInt(1337),
|
|
CostBasis: decimal.NewFromInt(1337),
|
|
Detail: &order.Detail{Side: order.Sell},
|
|
},
|
|
},
|
|
},
|
|
DataEvent: &kline.Kline{
|
|
Base: even2,
|
|
Open: decimal.NewFromInt(1337),
|
|
Close: decimal.NewFromInt(1337),
|
|
Low: decimal.NewFromInt(1337),
|
|
High: decimal.NewFromInt(1337),
|
|
Volume: decimal.NewFromInt(1337),
|
|
},
|
|
SignalEvent: &signal.Signal{
|
|
Base: even2,
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
},
|
|
}
|
|
|
|
cs.Events = append(cs.Events, ev, ev2)
|
|
err := cs.CalculateResults(decimal.NewFromFloat(0.03))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if !cs.MarketMovement.Equal(decimal.NewFromFloat(-33.15)) {
|
|
t.Error("expected -33.15")
|
|
}
|
|
}
|
|
|
|
func TestPrintResults(t *testing.T) {
|
|
cs := CurrencyPairStatistic{}
|
|
tt1 := time.Now()
|
|
tt2 := time.Now().Add(gctkline.OneDay.Duration())
|
|
exch := testExchange
|
|
a := asset.Spot
|
|
p := currency.NewPair(currency.BTC, currency.USDT)
|
|
even := event.Base{
|
|
Exchange: exch,
|
|
Time: tt1,
|
|
Interval: gctkline.OneDay,
|
|
CurrencyPair: p,
|
|
AssetType: a,
|
|
}
|
|
ev := EventStore{
|
|
Holdings: holdings.Holding{
|
|
ChangeInTotalValuePercent: decimal.NewFromFloat(0.1333),
|
|
Timestamp: tt1,
|
|
QuoteInitialFunds: decimal.NewFromInt(1337),
|
|
},
|
|
Transactions: compliance.Snapshot{
|
|
Orders: []compliance.SnapshotOrder{
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1338),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1338),
|
|
SlippageRate: decimal.NewFromInt(1338),
|
|
CostBasis: decimal.NewFromInt(1338),
|
|
Detail: &order.Detail{Side: order.Buy},
|
|
},
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1337),
|
|
SlippageRate: decimal.NewFromInt(1337),
|
|
CostBasis: decimal.NewFromInt(1337),
|
|
Detail: &order.Detail{Side: order.Sell},
|
|
},
|
|
},
|
|
},
|
|
DataEvent: &kline.Kline{
|
|
Base: even,
|
|
Open: decimal.NewFromInt(2000),
|
|
Close: decimal.NewFromInt(2000),
|
|
Low: decimal.NewFromInt(2000),
|
|
High: decimal.NewFromInt(2000),
|
|
Volume: decimal.NewFromInt(2000),
|
|
},
|
|
SignalEvent: &signal.Signal{
|
|
Base: even,
|
|
ClosePrice: decimal.NewFromInt(2000),
|
|
},
|
|
}
|
|
even2 := even
|
|
even2.Time = tt2
|
|
ev2 := EventStore{
|
|
Holdings: holdings.Holding{
|
|
ChangeInTotalValuePercent: decimal.NewFromFloat(0.1337),
|
|
Timestamp: tt2,
|
|
QuoteInitialFunds: decimal.NewFromInt(1337),
|
|
},
|
|
Transactions: compliance.Snapshot{
|
|
Orders: []compliance.SnapshotOrder{
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1338),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1338),
|
|
SlippageRate: decimal.NewFromInt(1338),
|
|
CostBasis: decimal.NewFromInt(1338),
|
|
Detail: &order.Detail{Side: order.Buy},
|
|
},
|
|
{
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
VolumeAdjustedPrice: decimal.NewFromInt(1337),
|
|
SlippageRate: decimal.NewFromInt(1337),
|
|
CostBasis: decimal.NewFromInt(1337),
|
|
Detail: &order.Detail{Side: order.Sell},
|
|
},
|
|
},
|
|
},
|
|
DataEvent: &kline.Kline{
|
|
Base: even2,
|
|
Open: decimal.NewFromInt(1337),
|
|
Close: decimal.NewFromInt(1337),
|
|
Low: decimal.NewFromInt(1337),
|
|
High: decimal.NewFromInt(1337),
|
|
Volume: decimal.NewFromInt(1337),
|
|
},
|
|
SignalEvent: &signal.Signal{
|
|
Base: even2,
|
|
ClosePrice: decimal.NewFromInt(1337),
|
|
},
|
|
}
|
|
|
|
cs.Events = append(cs.Events, ev, ev2)
|
|
cs.PrintResults(exch, a, p, true)
|
|
}
|
|
|
|
func TestCalculateHighestCommittedFunds(t *testing.T) {
|
|
t.Parallel()
|
|
c := CurrencyPairStatistic{}
|
|
c.calculateHighestCommittedFunds()
|
|
if !c.HighestCommittedFunds.Time.IsZero() {
|
|
t.Error("expected no time with not committed funds")
|
|
}
|
|
tt1 := time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
tt2 := time.Date(2021, 2, 1, 0, 0, 0, 0, time.UTC)
|
|
tt3 := time.Date(2021, 3, 1, 0, 0, 0, 0, time.UTC)
|
|
c.Events = append(c.Events,
|
|
EventStore{DataEvent: &kline.Kline{Close: decimal.NewFromInt(1337)}, Holdings: holdings.Holding{Timestamp: tt1, BaseSize: decimal.NewFromInt(10)}},
|
|
EventStore{DataEvent: &kline.Kline{Close: decimal.NewFromInt(1338)}, Holdings: holdings.Holding{Timestamp: tt2, BaseSize: decimal.NewFromInt(1337)}},
|
|
EventStore{DataEvent: &kline.Kline{Close: decimal.NewFromInt(1339)}, Holdings: holdings.Holding{Timestamp: tt3, BaseSize: decimal.NewFromInt(11)}},
|
|
)
|
|
c.calculateHighestCommittedFunds()
|
|
if c.HighestCommittedFunds.Time != tt2 {
|
|
t.Errorf("expected %v, received %v", tt2, c.HighestCommittedFunds.Time)
|
|
}
|
|
}
|