ninjabot icon indicating copy to clipboard operation
ninjabot copied to clipboard

A fast trading bot platform for cryptocurrency in Go (Binance)

Results 42 ninjabot issues
Sort by recently updated
recently updated
newest added

Related to https://github.com/rodrigo-brito/ninjabot/issues/257

Somethings like https://www.backtrader.com/blog/posts/2017-04-09-multi-example/multi-example/

`DataFeedSubscription` accepts `exchange service.Exchange` but uses only `CandlesSubscription` method from `Feeder` interface. Does it make sense to change dependency from Exchange interface to `Feeder`?

kind/improvement
env/core

I love ninjatrader for its simplicity. I need to make a bot using GateIO only to find, property Complete(bool) on model. It's impossible for me to determine which tick is...

question

It seems `CreateOrderOCO` supports only sell option https://github.com/rodrigo-brito/ninjabot/blob/main/exchange/paperwallet.go#L409-L412

kind/feature

The component of scheduler is not covered by unit test: https://github.com/rodrigo-brito/ninjabot/blob/main/tools/scheduler.go

hacktoberfest

Bumps [gorm.io/gorm](https://github.com/go-gorm/gorm) from 1.25.7 to 1.25.10. Commits 9d370bc Fix handling of unknown column types (#6540) 7892019 Fix panic bug in migrator due to lack of nil check for stmt.Schema (#6932)...

dependencies

Add new BinanceOption to configure custom API endpoint ### What have you changed and why? I've added a new binanceOption that allows users to configure a custom API endpoint. This...

In [this](https://gitlab.com/siriustradingbot/bot/blob/7452a97f91576bca8068c79b27eb24c022643573/order/controller_test.go#L51) test replace ```storage, err := storage.FromMemory() require.NoError(t, err) ``` with ```file, err := os.CreateTemp(os.TempDir(), "*.db") require.NoError(t, err) defer func() { os.RemoveAll(file.Name()) }() storage, err := storage.FromSQL(sqlite.Open(file.Name()), &gorm.Config{}) require.NoError(t,...

invalid

fix typo ### What have you changed and why? alter updateParisFile -> updatePairsFile ##### Related Issues none