├── .gitignore ├── LICENSE ├── README.md ├── class_01 ├── READMD.md └── 课程前言.pdf ├── class_02 ├── btc.mp4 └── class_02.md ├── class_03 ├── class_03.md └── helloworld.py ├── class_04 ├── class_04.md ├── common_errors.py └── requirements.txt ├── class_05 ├── class_05.md └── class_05.py ├── class_06 ├── class_06.md └── main.py ├── class_07 ├── class_07.py └── class_7.md ├── class_08 ├── class_08.md ├── crawl_data.py └── main.py ├── class_09 ├── class_09.md ├── crawl_data.py └── main.py ├── class_10 ├── class_10.md ├── main_script.py ├── main_window.py └── strategies │ ├── class_10_simple_strategy.py │ └── class_10_simple_strategy1.py ├── class_11 ├── class_11.md ├── main_script.py ├── main_window.py └── strategies │ └── class_11_simple_strategy.py ├── class_12 ├── backtest_fixed_time.py ├── class_12.md ├── main_window.py └── strategies │ ├── fixed_trade_price_strategy.py │ └── fixed_trade_time_strategy.py ├── class_13 └── class_13.md ├── class_14 └── class_14.md ├── class_15 ├── class_15.md └── imgs │ └── order1.png ├── class_16 ├── class_16.md ├── grid.py ├── main_window.py └── strategies │ └── spot_grid_strategy.py ├── class_17 ├── class_17.md ├── grid.py ├── main_window.py └── strategies │ └── spot_profit_grid_strategy.py ├── class_18 ├── class_18.md ├── main_window.py └── strategies │ └── high_frequency_strategy.py ├── class_19 ├── class_19.md ├── main_window.py └── strategies │ ├── future_neutral_grid_strategy.py │ └── future_profit_grid_strategy.py ├── class_20 └── 20.资金费率套利.md ├── class_21 └── 21.资金费率实战操作.md ├── class_22 └── 22.套利软件策略参数说明和使用.md ├── class_23 └── 23.100万资金永续合约资金费率套利每天赚多少钱?.md ├── class_24 └── 24.fundtrade软件是用经常遇到的问题解答.md ├── class_25 ├── 25.马丁策略.md ├── main_window.py └── strategies │ ├── martingle_future_strategy.py │ ├── martingle_future_strategyV2.py │ ├── martingle_spot_strategy.py │ └── martingle_spot_strategyV2.py ├── class_26 ├── 26.强势币的马丁策略.md ├── main_window.py └── strategies │ ├── martingle_future_strategyV3.py │ └── martingle_spot_strategyV3.py ├── class_27 ├── 27.howtrader脚本运行操作和多策略多交易对交易.md ├── main_no_ui.py ├── main_window.py ├── run.sh └── strategies │ ├── martingle_future_strategyV3.py │ ├── martingle_spot_strategyV2.py │ └── martingle_spot_strategyV3.py └── class_33 ├── backtest.py ├── class_15.md ├── main_window.py └── strategies ├── grid_balance_strategy.py ├── martingle_spot_strategy.py ├── martingle_spot_strategyV2.py └── martingle_spot_strategyV3.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/README.md -------------------------------------------------------------------------------- /class_01/READMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_01/READMD.md -------------------------------------------------------------------------------- /class_01/课程前言.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_01/课程前言.pdf -------------------------------------------------------------------------------- /class_02/btc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_02/btc.mp4 -------------------------------------------------------------------------------- /class_02/class_02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_02/class_02.md -------------------------------------------------------------------------------- /class_03/class_03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_03/class_03.md -------------------------------------------------------------------------------- /class_03/helloworld.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | print("Hello world") -------------------------------------------------------------------------------- /class_04/class_04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_04/class_04.md -------------------------------------------------------------------------------- /class_04/common_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_04/common_errors.py -------------------------------------------------------------------------------- /class_04/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pandas 3 | -------------------------------------------------------------------------------- /class_05/class_05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_05/class_05.md -------------------------------------------------------------------------------- /class_05/class_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_05/class_05.py -------------------------------------------------------------------------------- /class_06/class_06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_06/class_06.md -------------------------------------------------------------------------------- /class_06/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_06/main.py -------------------------------------------------------------------------------- /class_07/class_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_07/class_07.py -------------------------------------------------------------------------------- /class_07/class_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_07/class_7.md -------------------------------------------------------------------------------- /class_08/class_08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_08/class_08.md -------------------------------------------------------------------------------- /class_08/crawl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_08/crawl_data.py -------------------------------------------------------------------------------- /class_08/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_08/main.py -------------------------------------------------------------------------------- /class_09/class_09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_09/class_09.md -------------------------------------------------------------------------------- /class_09/crawl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_09/crawl_data.py -------------------------------------------------------------------------------- /class_09/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_09/main.py -------------------------------------------------------------------------------- /class_10/class_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_10/class_10.md -------------------------------------------------------------------------------- /class_10/main_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_10/main_script.py -------------------------------------------------------------------------------- /class_10/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_10/main_window.py -------------------------------------------------------------------------------- /class_10/strategies/class_10_simple_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_10/strategies/class_10_simple_strategy.py -------------------------------------------------------------------------------- /class_10/strategies/class_10_simple_strategy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_10/strategies/class_10_simple_strategy1.py -------------------------------------------------------------------------------- /class_11/class_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_11/class_11.md -------------------------------------------------------------------------------- /class_11/main_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_11/main_script.py -------------------------------------------------------------------------------- /class_11/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_11/main_window.py -------------------------------------------------------------------------------- /class_11/strategies/class_11_simple_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_11/strategies/class_11_simple_strategy.py -------------------------------------------------------------------------------- /class_12/backtest_fixed_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_12/backtest_fixed_time.py -------------------------------------------------------------------------------- /class_12/class_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_12/class_12.md -------------------------------------------------------------------------------- /class_12/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_12/main_window.py -------------------------------------------------------------------------------- /class_12/strategies/fixed_trade_price_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_12/strategies/fixed_trade_price_strategy.py -------------------------------------------------------------------------------- /class_12/strategies/fixed_trade_time_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_12/strategies/fixed_trade_time_strategy.py -------------------------------------------------------------------------------- /class_13/class_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_13/class_13.md -------------------------------------------------------------------------------- /class_14/class_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_14/class_14.md -------------------------------------------------------------------------------- /class_15/class_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_15/class_15.md -------------------------------------------------------------------------------- /class_15/imgs/order1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_15/imgs/order1.png -------------------------------------------------------------------------------- /class_16/class_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_16/class_16.md -------------------------------------------------------------------------------- /class_16/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_16/grid.py -------------------------------------------------------------------------------- /class_16/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_16/main_window.py -------------------------------------------------------------------------------- /class_16/strategies/spot_grid_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_16/strategies/spot_grid_strategy.py -------------------------------------------------------------------------------- /class_17/class_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_17/class_17.md -------------------------------------------------------------------------------- /class_17/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_17/grid.py -------------------------------------------------------------------------------- /class_17/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_17/main_window.py -------------------------------------------------------------------------------- /class_17/strategies/spot_profit_grid_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_17/strategies/spot_profit_grid_strategy.py -------------------------------------------------------------------------------- /class_18/class_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_18/class_18.md -------------------------------------------------------------------------------- /class_18/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_18/main_window.py -------------------------------------------------------------------------------- /class_18/strategies/high_frequency_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_18/strategies/high_frequency_strategy.py -------------------------------------------------------------------------------- /class_19/class_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_19/class_19.md -------------------------------------------------------------------------------- /class_19/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_19/main_window.py -------------------------------------------------------------------------------- /class_19/strategies/future_neutral_grid_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_19/strategies/future_neutral_grid_strategy.py -------------------------------------------------------------------------------- /class_19/strategies/future_profit_grid_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_19/strategies/future_profit_grid_strategy.py -------------------------------------------------------------------------------- /class_20/20.资金费率套利.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_20/20.资金费率套利.md -------------------------------------------------------------------------------- /class_21/21.资金费率实战操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_21/21.资金费率实战操作.md -------------------------------------------------------------------------------- /class_22/22.套利软件策略参数说明和使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_22/22.套利软件策略参数说明和使用.md -------------------------------------------------------------------------------- /class_23/23.100万资金永续合约资金费率套利每天赚多少钱?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_23/23.100万资金永续合约资金费率套利每天赚多少钱?.md -------------------------------------------------------------------------------- /class_24/24.fundtrade软件是用经常遇到的问题解答.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_24/24.fundtrade软件是用经常遇到的问题解答.md -------------------------------------------------------------------------------- /class_25/25.马丁策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/25.马丁策略.md -------------------------------------------------------------------------------- /class_25/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/main_window.py -------------------------------------------------------------------------------- /class_25/strategies/martingle_future_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/strategies/martingle_future_strategy.py -------------------------------------------------------------------------------- /class_25/strategies/martingle_future_strategyV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/strategies/martingle_future_strategyV2.py -------------------------------------------------------------------------------- /class_25/strategies/martingle_spot_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/strategies/martingle_spot_strategy.py -------------------------------------------------------------------------------- /class_25/strategies/martingle_spot_strategyV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_25/strategies/martingle_spot_strategyV2.py -------------------------------------------------------------------------------- /class_26/26.强势币的马丁策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_26/26.强势币的马丁策略.md -------------------------------------------------------------------------------- /class_26/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_26/main_window.py -------------------------------------------------------------------------------- /class_26/strategies/martingle_future_strategyV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_26/strategies/martingle_future_strategyV3.py -------------------------------------------------------------------------------- /class_26/strategies/martingle_spot_strategyV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_26/strategies/martingle_spot_strategyV3.py -------------------------------------------------------------------------------- /class_27/27.howtrader脚本运行操作和多策略多交易对交易.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/27.howtrader脚本运行操作和多策略多交易对交易.md -------------------------------------------------------------------------------- /class_27/main_no_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/main_no_ui.py -------------------------------------------------------------------------------- /class_27/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/main_window.py -------------------------------------------------------------------------------- /class_27/run.sh: -------------------------------------------------------------------------------- 1 | nohup python -u main_no_ui.py > nohup_log.out 2>&1 & -------------------------------------------------------------------------------- /class_27/strategies/martingle_future_strategyV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/strategies/martingle_future_strategyV3.py -------------------------------------------------------------------------------- /class_27/strategies/martingle_spot_strategyV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/strategies/martingle_spot_strategyV2.py -------------------------------------------------------------------------------- /class_27/strategies/martingle_spot_strategyV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_27/strategies/martingle_spot_strategyV3.py -------------------------------------------------------------------------------- /class_33/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/backtest.py -------------------------------------------------------------------------------- /class_33/class_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/class_15.md -------------------------------------------------------------------------------- /class_33/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/main_window.py -------------------------------------------------------------------------------- /class_33/strategies/grid_balance_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/strategies/grid_balance_strategy.py -------------------------------------------------------------------------------- /class_33/strategies/martingle_spot_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/strategies/martingle_spot_strategy.py -------------------------------------------------------------------------------- /class_33/strategies/martingle_spot_strategyV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/strategies/martingle_spot_strategyV2.py -------------------------------------------------------------------------------- /class_33/strategies/martingle_spot_strategyV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/51bitquant/course_codes/HEAD/class_33/strategies/martingle_spot_strategyV3.py --------------------------------------------------------------------------------