├── binance_check.py ├── binance_orderbook.py ├── bitstamp_check.py ├── coinbase_check.py ├── ftx_check.py ├── kraken_check.py ├── nps.py ├── readme.md ├── requirements.txt └── volumne_analyser └── __init__.py /binance_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/binance_check.py -------------------------------------------------------------------------------- /binance_orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/binance_orderbook.py -------------------------------------------------------------------------------- /bitstamp_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/bitstamp_check.py -------------------------------------------------------------------------------- /coinbase_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/coinbase_check.py -------------------------------------------------------------------------------- /ftx_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/ftx_check.py -------------------------------------------------------------------------------- /kraken_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/kraken_check.py -------------------------------------------------------------------------------- /nps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/nps.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asyncio 2 | python-binance 3 | copra -------------------------------------------------------------------------------- /volumne_analyser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whalepool/Bitcoin-Volume-Validator/HEAD/volumne_analyser/__init__.py --------------------------------------------------------------------------------