├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── examples ├── ema_2h_bchbtc.py ├── example.py ├── example_cryptocompare.py ├── example_cryptocompare_eth.py ├── rsi_follow.py ├── sma_30min_ethbtc.py └── sma_daily_btcusd.py ├── gemini ├── __init__.py ├── exchange.py ├── gemini.py ├── helpers │ ├── __init__.py │ ├── analyze.py │ ├── bitfinex.py │ ├── bittrex.py │ ├── cryptocompare.py │ ├── export_for_portfolioviz.py │ ├── helpers.py │ ├── poloniex.py │ └── timeframe_resampler.py ├── settings.py └── tests │ ├── test_bitfinex.py │ ├── test_bittrex.py │ ├── test_exchange.py │ ├── test_poloniex.py │ └── testing.py ├── media ├── example.png ├── example_new.png ├── logo.png └── schematic.gif └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/README.md -------------------------------------------------------------------------------- /examples/ema_2h_bchbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/ema_2h_bchbtc.py -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_cryptocompare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/example_cryptocompare.py -------------------------------------------------------------------------------- /examples/example_cryptocompare_eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/example_cryptocompare_eth.py -------------------------------------------------------------------------------- /examples/rsi_follow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/rsi_follow.py -------------------------------------------------------------------------------- /examples/sma_30min_ethbtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/sma_30min_ethbtc.py -------------------------------------------------------------------------------- /examples/sma_daily_btcusd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/examples/sma_daily_btcusd.py -------------------------------------------------------------------------------- /gemini/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/__init__.py -------------------------------------------------------------------------------- /gemini/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/exchange.py -------------------------------------------------------------------------------- /gemini/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/gemini.py -------------------------------------------------------------------------------- /gemini/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gemini/helpers/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/analyze.py -------------------------------------------------------------------------------- /gemini/helpers/bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/bitfinex.py -------------------------------------------------------------------------------- /gemini/helpers/bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/bittrex.py -------------------------------------------------------------------------------- /gemini/helpers/cryptocompare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/cryptocompare.py -------------------------------------------------------------------------------- /gemini/helpers/export_for_portfolioviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/export_for_portfolioviz.py -------------------------------------------------------------------------------- /gemini/helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/helpers.py -------------------------------------------------------------------------------- /gemini/helpers/poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/poloniex.py -------------------------------------------------------------------------------- /gemini/helpers/timeframe_resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/helpers/timeframe_resampler.py -------------------------------------------------------------------------------- /gemini/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/settings.py -------------------------------------------------------------------------------- /gemini/tests/test_bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/tests/test_bitfinex.py -------------------------------------------------------------------------------- /gemini/tests/test_bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/tests/test_bittrex.py -------------------------------------------------------------------------------- /gemini/tests/test_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/tests/test_exchange.py -------------------------------------------------------------------------------- /gemini/tests/test_poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/tests/test_poloniex.py -------------------------------------------------------------------------------- /gemini/tests/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/gemini/tests/testing.py -------------------------------------------------------------------------------- /media/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/media/example.png -------------------------------------------------------------------------------- /media/example_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/media/example_new.png -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/schematic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/media/schematic.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantroom-pro/cryptocurrency.backtester/HEAD/requirements.txt --------------------------------------------------------------------------------