├── LICENSE ├── README.md ├── __init__.py ├── config.py ├── monitor.py ├── service ├── __init__.py ├── base.py ├── deribit_future_md.py ├── deribit_md.py ├── deribit_md_to_kdb.py ├── deribit_td.py └── okex_md.py └── strategy ├── backup_deribit_perpetual_future_arb.py ├── catch_gap.py ├── catch_gap_trade.py ├── catch_large_gap.py ├── deribit_arb_new.py ├── deribit_cross_future.py ├── deribit_cross_remote_future.py └── deribit_perpetual_n_future_arb.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/config.py -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/monitor.py -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/base.py -------------------------------------------------------------------------------- /service/deribit_future_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/deribit_future_md.py -------------------------------------------------------------------------------- /service/deribit_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/deribit_md.py -------------------------------------------------------------------------------- /service/deribit_md_to_kdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/deribit_md_to_kdb.py -------------------------------------------------------------------------------- /service/deribit_td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/deribit_td.py -------------------------------------------------------------------------------- /service/okex_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/service/okex_md.py -------------------------------------------------------------------------------- /strategy/backup_deribit_perpetual_future_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/backup_deribit_perpetual_future_arb.py -------------------------------------------------------------------------------- /strategy/catch_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/catch_gap.py -------------------------------------------------------------------------------- /strategy/catch_gap_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/catch_gap_trade.py -------------------------------------------------------------------------------- /strategy/catch_large_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/catch_large_gap.py -------------------------------------------------------------------------------- /strategy/deribit_arb_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/deribit_arb_new.py -------------------------------------------------------------------------------- /strategy/deribit_cross_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/deribit_cross_future.py -------------------------------------------------------------------------------- /strategy/deribit_cross_remote_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/deribit_cross_remote_future.py -------------------------------------------------------------------------------- /strategy/deribit_perpetual_n_future_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hudie/crypto_algo_trading/HEAD/strategy/deribit_perpetual_n_future_arb.py --------------------------------------------------------------------------------