├── .gitignore ├── LICENSE ├── README.md ├── examples ├── arbitrage-pairs.py ├── async-orderbooks-from-multiple-exchanges-at-once.py ├── binance-test-order.py ├── fetch-create-deposit-address.py ├── fetch-orders.py ├── find_ticker.py ├── order-book-extra-level-depth-param.py └── symbols.py └── source ├── API_keys_example.py ├── README.txt ├── exchanges ├── exchange_fees.py ├── get_info.py └── init_exchanges.py ├── main.py ├── portfolio └── diversify_balances.py └── strategy ├── execute_trade.py └── find_pairs_to_trade.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/README.md -------------------------------------------------------------------------------- /examples/arbitrage-pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/arbitrage-pairs.py -------------------------------------------------------------------------------- /examples/async-orderbooks-from-multiple-exchanges-at-once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/async-orderbooks-from-multiple-exchanges-at-once.py -------------------------------------------------------------------------------- /examples/binance-test-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/binance-test-order.py -------------------------------------------------------------------------------- /examples/fetch-create-deposit-address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/fetch-create-deposit-address.py -------------------------------------------------------------------------------- /examples/fetch-orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/fetch-orders.py -------------------------------------------------------------------------------- /examples/find_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/find_ticker.py -------------------------------------------------------------------------------- /examples/order-book-extra-level-depth-param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/order-book-extra-level-depth-param.py -------------------------------------------------------------------------------- /examples/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/examples/symbols.py -------------------------------------------------------------------------------- /source/API_keys_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/API_keys_example.py -------------------------------------------------------------------------------- /source/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/README.txt -------------------------------------------------------------------------------- /source/exchanges/exchange_fees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/exchanges/exchange_fees.py -------------------------------------------------------------------------------- /source/exchanges/get_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/exchanges/get_info.py -------------------------------------------------------------------------------- /source/exchanges/init_exchanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/exchanges/init_exchanges.py -------------------------------------------------------------------------------- /source/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/main.py -------------------------------------------------------------------------------- /source/portfolio/diversify_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/portfolio/diversify_balances.py -------------------------------------------------------------------------------- /source/strategy/execute_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/strategy/execute_trade.py -------------------------------------------------------------------------------- /source/strategy/find_pairs_to_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Cryptocurrency-Multi-Exchange-Arbitrage-Strategy/HEAD/source/strategy/find_pairs_to_trade.py --------------------------------------------------------------------------------