├── .formatter.exs ├── .gitignore ├── README.md ├── apps └── streamer │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── lib │ ├── streamer.ex │ └── streamer │ │ ├── application.ex │ │ ├── binance.ex │ │ └── binance │ │ └── trade_event.ex │ ├── mix.exs │ └── test │ ├── streamer_test.exs │ └── test_helper.exs ├── config └── config.exs ├── mix.exs └── mix.lock /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/README.md -------------------------------------------------------------------------------- /apps/streamer/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/.formatter.exs -------------------------------------------------------------------------------- /apps/streamer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/.gitignore -------------------------------------------------------------------------------- /apps/streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/README.md -------------------------------------------------------------------------------- /apps/streamer/lib/streamer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/lib/streamer.ex -------------------------------------------------------------------------------- /apps/streamer/lib/streamer/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/lib/streamer/application.ex -------------------------------------------------------------------------------- /apps/streamer/lib/streamer/binance.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/lib/streamer/binance.ex -------------------------------------------------------------------------------- /apps/streamer/lib/streamer/binance/trade_event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/lib/streamer/binance/trade_event.ex -------------------------------------------------------------------------------- /apps/streamer/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/mix.exs -------------------------------------------------------------------------------- /apps/streamer/test/streamer_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/apps/streamer/test/streamer_test.exs -------------------------------------------------------------------------------- /apps/streamer/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/config/config.exs -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cinderella-Man/hands-on-elixir-and-otp-cryptocurrency-trading-bot-source-code/HEAD/mix.lock --------------------------------------------------------------------------------