Fixed so many IndexedSeries bugs...

This commit is contained in:
Luke I. Wilson
2023-05-24 11:24:10 -05:00
parent c0de28664e
commit 46fd55ab8d
17 changed files with 345 additions and 2981 deletions

View File

@@ -1,7 +1,12 @@
//go:build ignore
package main
import (
"os"
auto "github.com/fivemoreminix/autotrader"
"github.com/fivemoreminix/autotrader/oanda"
)
type SMAStrategy struct {
@@ -12,27 +17,29 @@ func (s *SMAStrategy) Init(_ *auto.Trader) {
}
func (s *SMAStrategy) Next(t *auto.Trader) {
sma1 := t.Data().Closes().Rolling(s.period1).Mean()
sma2 := t.Data().Closes().Rolling(s.period2).Mean()
sma1 := t.Data().Closes().Copy().Rolling(s.period1).Mean()
sma2 := t.Data().Closes().Copy().Rolling(s.period2).Mean()
// If the shorter SMA crosses above the longer SMA, buy.
if auto.Crossover(sma1, sma2) {
if auto.CrossoverIndex(*t.Data().Date(-1), sma1, sma2) {
t.Buy(1000)
} else if auto.Crossover(sma2, sma1) {
} else if auto.CrossoverIndex(*t.Data().Date(-1), sma2, sma1) {
t.Sell(1000)
}
}
func main() {
data, err := auto.EURUSD()
/* data, err := auto.EURUSD()
if err != nil {
panic(err)
}
*/
broker := oanda.NewOandaBroker(os.Getenv("OANDA_TOKEN"), os.Getenv("OANDA_ACCOUNT_ID"), true)
auto.Backtest(auto.NewTrader(auto.TraderConfig{
Broker: auto.NewTestBroker(nil, data, 10000, 50, 0.0002, 0),
Strategy: &SMAStrategy{period1: 20, period2: 40},
Broker: auto.NewTestBroker(broker /* data, */, nil, 10000, 50, 0.0002, 0),
Strategy: &SMAStrategy{period1: 10, period2: 25},
Symbol: "EUR_USD",
Frequency: "D",
CandlesToKeep: 1000,
Frequency: "M15",
CandlesToKeep: 2500,
}))
}