├── README.md ├── binance.cfg ├── binance_trade.py ├── btce.py ├── coinbase.cfg ├── coinbase.py ├── mtgox.py ├── requirements.txt └── trade_calculator.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/README.md -------------------------------------------------------------------------------- /binance.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/binance.cfg -------------------------------------------------------------------------------- /binance_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/binance_trade.py -------------------------------------------------------------------------------- /btce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/btce.py -------------------------------------------------------------------------------- /coinbase.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/coinbase.cfg -------------------------------------------------------------------------------- /coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/coinbase.py -------------------------------------------------------------------------------- /mtgox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/mtgox.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.4.1 2 | wsgiref==0.1.2 3 | -------------------------------------------------------------------------------- /trade_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pontifier/rebalancer/HEAD/trade_calculator.py --------------------------------------------------------------------------------