├── .travis.yml ├── LICENSE ├── README.md └── cmd └── dca ├── README.md ├── dca0.go ├── go.mod ├── go.sum └── main.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/README.md -------------------------------------------------------------------------------- /cmd/dca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/cmd/dca/README.md -------------------------------------------------------------------------------- /cmd/dca/dca0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/cmd/dca/dca0.go -------------------------------------------------------------------------------- /cmd/dca/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/cmd/dca/go.mod -------------------------------------------------------------------------------- /cmd/dca/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/cmd/dca/go.sum -------------------------------------------------------------------------------- /cmd/dca/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwmarrin/dca/HEAD/cmd/dca/main.go --------------------------------------------------------------------------------