├── .gitignore ├── BaseApi ├── .DS_Store ├── Bithumb │ ├── base_bithumb.py │ ├── base_subscriber.py │ ├── config.py │ └── utils.py ├── messages.py ├── objects.py ├── settings.py └── test.py ├── README.md ├── config.ini.sample ├── models.py ├── multi_exchange_crawler.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /BaseApi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/.DS_Store -------------------------------------------------------------------------------- /BaseApi/Bithumb/base_bithumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/Bithumb/base_bithumb.py -------------------------------------------------------------------------------- /BaseApi/Bithumb/base_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/Bithumb/base_subscriber.py -------------------------------------------------------------------------------- /BaseApi/Bithumb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/Bithumb/config.py -------------------------------------------------------------------------------- /BaseApi/Bithumb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/Bithumb/utils.py -------------------------------------------------------------------------------- /BaseApi/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/messages.py -------------------------------------------------------------------------------- /BaseApi/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/objects.py -------------------------------------------------------------------------------- /BaseApi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/settings.py -------------------------------------------------------------------------------- /BaseApi/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/BaseApi/test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/README.md -------------------------------------------------------------------------------- /config.ini.sample: -------------------------------------------------------------------------------- 1 | [telegram] 2 | orderbook_high_low = 120 3 | trade_price = 10 4 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/models.py -------------------------------------------------------------------------------- /multi_exchange_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/multi_exchange_crawler.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taekhyang/MultiExchangesArbitrageMonitor/HEAD/util.py --------------------------------------------------------------------------------