add cmd/bbgo

This commit is contained in:
c9s 2020-10-10 13:18:40 +08:00
parent fab8d0bbdf
commit ec8a69d4bb
3 changed files with 23 additions and 0 deletions

View File

@ -19,6 +19,14 @@ aims to release v1.0 before 11/14
- MAX Exchange (located in Taiwan)
- Binance Exchange
## Installation
Install the builtin commands:
```sh
go get -u github.com/c9s/bbgo/cmd/bbgo
```
## Examples
Please check out the example directory: [examples](examples)

9
cmd/bbgo/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"github.com/c9s/bbgo/cmd"
)
func main() {
cmd.Run()
}

6
cmd/bbgo/pnl.go Normal file
View File

@ -0,0 +1,6 @@
package main
import (
_ "github.com/go-sql-driver/mysql"
)