├── .gitignore ├── README.md ├── cli.py ├── core ├── engine.py ├── events.py └── utils.py ├── debugger.py ├── etherscan ├── __init__.py ├── accounts.py ├── client.py ├── contracts.py ├── proxies.py ├── stats.py └── tokens.py ├── exchange ├── bibox.py ├── bigone.py ├── binance.py ├── bitmex.py ├── bitstamp.py ├── bittrex.py ├── bter.py ├── cointiger.py ├── common.py ├── data_proxy.py ├── hitbtc.py ├── huobi.py ├── kex.py ├── okex.py ├── poloniex.py ├── yunbi.py └── zb.py ├── lib ├── notifier.py ├── persist.py └── util.py ├── requirements.txt ├── script ├── analyse_coin.py ├── analyse_volatility.py ├── collect_trades.py ├── find_breakout.py └── history.py ├── strategy ├── Laplace.py ├── cointiger_market_maker.py ├── custom_strategy.py ├── dual_thrust.py ├── find_arbitrage_waypoint.py ├── leek_reaper.js ├── leek_reaper.py ├── market_maker.py ├── show_btc_future.py └── triangle.py ├── ta └── indicators.py └── ui ├── server.py └── template └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/cli.py -------------------------------------------------------------------------------- /core/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/core/engine.py -------------------------------------------------------------------------------- /core/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/core/events.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/core/utils.py -------------------------------------------------------------------------------- /debugger.py: -------------------------------------------------------------------------------- 1 | from exchange.zb import * 2 | 3 | test_api() 4 | -------------------------------------------------------------------------------- /etherscan/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Corey Petty' 2 | -------------------------------------------------------------------------------- /etherscan/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/accounts.py -------------------------------------------------------------------------------- /etherscan/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/client.py -------------------------------------------------------------------------------- /etherscan/contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/contracts.py -------------------------------------------------------------------------------- /etherscan/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/proxies.py -------------------------------------------------------------------------------- /etherscan/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/stats.py -------------------------------------------------------------------------------- /etherscan/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/etherscan/tokens.py -------------------------------------------------------------------------------- /exchange/bibox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bibox.py -------------------------------------------------------------------------------- /exchange/bigone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bigone.py -------------------------------------------------------------------------------- /exchange/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/binance.py -------------------------------------------------------------------------------- /exchange/bitmex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bitmex.py -------------------------------------------------------------------------------- /exchange/bitstamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bitstamp.py -------------------------------------------------------------------------------- /exchange/bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bittrex.py -------------------------------------------------------------------------------- /exchange/bter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/bter.py -------------------------------------------------------------------------------- /exchange/cointiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/cointiger.py -------------------------------------------------------------------------------- /exchange/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/common.py -------------------------------------------------------------------------------- /exchange/data_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/data_proxy.py -------------------------------------------------------------------------------- /exchange/hitbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/hitbtc.py -------------------------------------------------------------------------------- /exchange/huobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/huobi.py -------------------------------------------------------------------------------- /exchange/kex.py: -------------------------------------------------------------------------------- 1 | import requests -------------------------------------------------------------------------------- /exchange/okex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/okex.py -------------------------------------------------------------------------------- /exchange/poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/poloniex.py -------------------------------------------------------------------------------- /exchange/yunbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/yunbi.py -------------------------------------------------------------------------------- /exchange/zb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/exchange/zb.py -------------------------------------------------------------------------------- /lib/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/lib/notifier.py -------------------------------------------------------------------------------- /lib/persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/lib/persist.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/lib/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/analyse_coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/script/analyse_coin.py -------------------------------------------------------------------------------- /script/analyse_volatility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/script/analyse_volatility.py -------------------------------------------------------------------------------- /script/collect_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/script/collect_trades.py -------------------------------------------------------------------------------- /script/find_breakout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/script/find_breakout.py -------------------------------------------------------------------------------- /script/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/script/history.py -------------------------------------------------------------------------------- /strategy/Laplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/Laplace.py -------------------------------------------------------------------------------- /strategy/cointiger_market_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/cointiger_market_maker.py -------------------------------------------------------------------------------- /strategy/custom_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/custom_strategy.py -------------------------------------------------------------------------------- /strategy/dual_thrust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/dual_thrust.py -------------------------------------------------------------------------------- /strategy/find_arbitrage_waypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/find_arbitrage_waypoint.py -------------------------------------------------------------------------------- /strategy/leek_reaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/leek_reaper.js -------------------------------------------------------------------------------- /strategy/leek_reaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/leek_reaper.py -------------------------------------------------------------------------------- /strategy/market_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/market_maker.py -------------------------------------------------------------------------------- /strategy/show_btc_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/show_btc_future.py -------------------------------------------------------------------------------- /strategy/triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/strategy/triangle.py -------------------------------------------------------------------------------- /ta/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/ta/indicators.py -------------------------------------------------------------------------------- /ui/server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyi/coin-maker/HEAD/ui/template/index.html --------------------------------------------------------------------------------