├── .github └── workflows │ └── stale.yml ├── .gitignore ├── .travis.yml ├── .whitesource ├── Cargo.toml ├── LICENSE ├── README.md ├── config └── sample_config.json ├── docker ├── Dockerfile ├── build.sh └── push.sh ├── src ├── calculation_cluster.rs ├── config.rs ├── depth_cache.rs ├── lib.rs ├── main.rs ├── telegram.rs ├── trader.rs ├── trading_pair.rs └── triangular_relationship.rs └── tests ├── test_config.rs ├── test_trading_pair.rs └── test_triangular_relationship.rs /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/.travis.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/.whitesource -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/README.md -------------------------------------------------------------------------------- /config/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/config/sample_config.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/docker/push.sh -------------------------------------------------------------------------------- /src/calculation_cluster.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/calculation_cluster.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/depth_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/depth_cache.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/telegram.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/telegram.rs -------------------------------------------------------------------------------- /src/trader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/trader.rs -------------------------------------------------------------------------------- /src/trading_pair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/trading_pair.rs -------------------------------------------------------------------------------- /src/triangular_relationship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/src/triangular_relationship.rs -------------------------------------------------------------------------------- /tests/test_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/tests/test_config.rs -------------------------------------------------------------------------------- /tests/test_trading_pair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/tests/test_trading_pair.rs -------------------------------------------------------------------------------- /tests/test_triangular_relationship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-milan/btrader/HEAD/tests/test_triangular_relationship.rs --------------------------------------------------------------------------------