├── .github └── ISSUE_TEMPLATE │ ├── bug-report---bug报告.md │ └── feature-request--功能需求.md ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── README_EN.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── QTEASY_facebook_cover.png │ ├── RELEASE_HISTORY.md │ ├── _static │ └── style.css │ ├── _templates │ └── layout.html │ ├── about.md │ ├── api │ ├── HistoryPanel.rst │ ├── Operators.rst │ ├── Strategies.rst │ ├── api_reference.rst │ ├── built_in_strategies.rst │ ├── data_source.rst │ ├── data_types.rst │ ├── history_data.rst │ ├── history_data_types.rst │ └── use_qteasy.rst │ ├── back_testing │ └── overview.md │ ├── conf.py │ ├── examples │ ├── Example_01_双均线择时策略.md │ ├── Example_02_Alpha选股策略.md │ ├── Example_03_集合竞价选股.md │ ├── Example_04_多因子选股.md │ ├── Example_05_类网格交易.md │ ├── Example_06_指数增强选股.md │ ├── Example_13_经典网格交易.md │ └── img │ │ ├── output_13_1.png │ │ ├── output_3_1.png │ │ ├── output_3_2.png │ │ ├── output_4_1.png │ │ ├── output_4_1_2.png │ │ ├── output_4_1_3.png │ │ ├── output_4_3.png │ │ ├── output_4_4.png │ │ ├── output_5_1.png │ │ ├── output_5_1_2.png │ │ ├── output_6_1.png │ │ ├── output_7_1.png │ │ ├── output_9_1.png │ │ ├── trader_app_1.png │ │ ├── trader_app_2.png │ │ ├── trader_app_3.png │ │ └── trader_app_light_theme.png │ ├── faq.md │ ├── getting_started.md │ ├── help.md │ ├── img │ ├── Essence_of_Strategy.png │ ├── Strategy_Class_Illustration.png │ ├── output_14_3.png │ ├── output_15_3.png │ ├── output_21_1.png │ ├── output_24_1.png │ ├── output_26_1.png │ ├── output_27_1.png │ ├── output_27_2.png │ ├── output_27_3.png │ ├── output_28_1.png │ ├── output_3_1.png │ ├── output_3_4.png │ ├── output_3_5.png │ ├── output_5_2.png │ ├── output_7_2.png │ ├── output_8_3.png │ ├── output_dyna_plot.gif │ └── qteasy_logo_horizontal.png │ ├── index.rst │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── CODE_OF_CONDUCT.po │ │ │ ├── CONTRIBUTING.po │ │ │ ├── LICENSE.po │ │ │ ├── RELEASE_HISTORY.po │ │ │ ├── about.mo │ │ │ ├── about.po │ │ │ ├── api │ │ │ ├── HistoryPanel.po │ │ │ ├── Operators.po │ │ │ ├── Strategies.po │ │ │ ├── api_reference.po │ │ │ ├── built_in_strategies.po │ │ │ ├── data_source.po │ │ │ ├── data_types.po │ │ │ ├── history_data.po │ │ │ ├── history_data_types.po │ │ │ └── use_qteasy.po │ │ │ ├── back_testing │ │ │ └── overview.po │ │ │ ├── examples │ │ │ ├── Example_01_双均线择时策略.po │ │ │ ├── Example_02_Alpha选股策略.po │ │ │ ├── Example_03_集合竞价选股.po │ │ │ ├── Example_04_多因子选股.po │ │ │ ├── Example_05_类网格交易.po │ │ │ ├── Example_06_指数增强选股.po │ │ │ └── Example_13_经典网格交易.po │ │ │ ├── faq.po │ │ │ ├── getting_started.mo │ │ │ ├── getting_started.po │ │ │ ├── help.mo │ │ │ ├── help.po │ │ │ ├── index.po │ │ │ ├── manage_data │ │ │ ├── 1. overview.po │ │ │ ├── 2. datasource.po │ │ │ ├── 3. data_tables_10.po │ │ │ ├── 3. data_tables_20.po │ │ │ ├── 3. data_tables_30.po │ │ │ ├── 3. data_tables_35.po │ │ │ ├── 3. data_tables_40.po │ │ │ ├── 3. data_tables_50.po │ │ │ ├── 4. data_channels.po │ │ │ └── 5. datatypes.po │ │ │ ├── manage_strategies │ │ │ └── overview.po │ │ │ ├── optimization │ │ │ └── overview.po │ │ │ ├── references │ │ │ ├── 1-build-in-results.mo │ │ │ ├── 1-build-in-results.po │ │ │ ├── 1-simulation-overview.mo │ │ │ ├── 1-simulation-overview.po │ │ │ ├── 2-get-history-data.mo │ │ │ ├── 2-get-history-data.po │ │ │ ├── 2-historical_data_types.mo │ │ │ ├── 2-historical_data_types.po │ │ │ ├── 3-back-test-strategy.po │ │ │ ├── 4-build-in-strategy-blender.po │ │ │ ├── 5-optimize-strategy.po │ │ │ ├── 5-simulate-operation-in-CLI.po │ │ │ └── 6-simulate-operation-in-TUI.po │ │ │ ├── roadmap.po │ │ │ └── tutorials │ │ │ ├── 1-get-started.mo │ │ │ ├── 1-get-started.po │ │ │ ├── 2-get-data.mo │ │ │ ├── 2-get-data.po │ │ │ ├── 3-start-first-strategy.mo │ │ │ ├── 3-start-first-strategy.po │ │ │ ├── 4-build-in-strategies.mo │ │ │ ├── 4-build-in-strategies.po │ │ │ ├── 5-first-self-defined-strategy.mo │ │ │ ├── 5-first-self-defined-strategy.po │ │ │ ├── 6-more-self-defined-strategies.mo │ │ │ ├── 6-more-self-defined-strategies.po │ │ │ ├── 7-more-complicated-self-define-srtategy.mo │ │ │ ├── 7-more-complicated-self-define-srtategy.po │ │ │ ├── Tutorial 06 - 交易策略的优化.po │ │ │ ├── Tutorial 07 - 交易策略的部署及运行.po │ │ │ └── Tutorial 08 - 历史数据的操作和分析.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── CODE_OF_CONDUCT.mo │ │ │ ├── CODE_OF_CONDUCT.po │ │ │ ├── CONTRIBUTING.mo │ │ │ ├── CONTRIBUTING.po │ │ │ ├── LICENSE.mo │ │ │ ├── LICENSE.po │ │ │ ├── RELEASE_HISTORY.mo │ │ │ ├── RELEASE_HISTORY.po │ │ │ ├── about.mo │ │ │ ├── about.po │ │ │ ├── api │ │ │ ├── HistoryPanel.mo │ │ │ ├── HistoryPanel.po │ │ │ ├── Operators.mo │ │ │ ├── Operators.po │ │ │ ├── Strategies.mo │ │ │ ├── Strategies.po │ │ │ ├── api_reference.mo │ │ │ ├── api_reference.po │ │ │ ├── built_in_strategies.mo │ │ │ ├── built_in_strategies.po │ │ │ ├── data_source.mo │ │ │ ├── data_source.po │ │ │ ├── data_types.mo │ │ │ ├── data_types.po │ │ │ ├── history_data.mo │ │ │ ├── history_data.po │ │ │ ├── history_data_types.mo │ │ │ ├── history_data_types.po │ │ │ ├── use_qteasy.mo │ │ │ └── use_qteasy.po │ │ │ ├── back_testing │ │ │ ├── overview.mo │ │ │ └── overview.po │ │ │ ├── examples │ │ │ ├── Example_01_双均线择时策略.mo │ │ │ ├── Example_01_双均线择时策略.po │ │ │ ├── Example_02_Alpha选股策略.mo │ │ │ ├── Example_02_Alpha选股策略.po │ │ │ ├── Example_03_集合竞价选股.mo │ │ │ ├── Example_03_集合竞价选股.po │ │ │ ├── Example_04_多因子选股.mo │ │ │ ├── Example_04_多因子选股.po │ │ │ ├── Example_05_类网格交易.mo │ │ │ ├── Example_05_类网格交易.po │ │ │ ├── Example_06_指数增强选股.mo │ │ │ ├── Example_06_指数增强选股.po │ │ │ ├── Example_13_经典网格交易.mo │ │ │ └── Example_13_经典网格交易.po │ │ │ ├── faq.mo │ │ │ ├── faq.po │ │ │ ├── getting_started.mo │ │ │ ├── getting_started.po │ │ │ ├── help.mo │ │ │ ├── help.po │ │ │ ├── index.mo │ │ │ ├── index.po │ │ │ ├── manage_data │ │ │ ├── 1. overview.mo │ │ │ ├── 1. overview.po │ │ │ ├── 2. datasource.mo │ │ │ ├── 2. datasource.po │ │ │ ├── 3. data_tables_10.mo │ │ │ ├── 3. data_tables_10.po │ │ │ ├── 3. data_tables_20.mo │ │ │ ├── 3. data_tables_20.po │ │ │ ├── 3. data_tables_30.mo │ │ │ ├── 3. data_tables_30.po │ │ │ ├── 3. data_tables_35.mo │ │ │ ├── 3. data_tables_35.po │ │ │ ├── 3. data_tables_40.mo │ │ │ ├── 3. data_tables_40.po │ │ │ ├── 3. data_tables_50.mo │ │ │ ├── 3. data_tables_50.po │ │ │ ├── 4. data_channels.mo │ │ │ ├── 4. data_channels.po │ │ │ ├── 5. datatypes.mo │ │ │ └── 5. datatypes.po │ │ │ ├── manage_strategies │ │ │ ├── overview.mo │ │ │ └── overview.po │ │ │ ├── optimization │ │ │ ├── overview.mo │ │ │ └── overview.po │ │ │ ├── references │ │ │ ├── 1-build-in-results.mo │ │ │ ├── 1-build-in-results.po │ │ │ ├── 1-simulation-overview.mo │ │ │ ├── 1-simulation-overview.po │ │ │ ├── 2-get-history-data.mo │ │ │ ├── 2-get-history-data.po │ │ │ ├── 2-historical_data_types.mo │ │ │ ├── 2-historical_data_types.po │ │ │ ├── 3-back-test-strategy.mo │ │ │ ├── 3-back-test-strategy.po │ │ │ ├── 4-build-in-strategy-blender.mo │ │ │ ├── 4-build-in-strategy-blender.po │ │ │ ├── 5-optimize-strategy.mo │ │ │ ├── 5-optimize-strategy.po │ │ │ ├── 5-simulate-operation-in-CLI.mo │ │ │ ├── 5-simulate-operation-in-CLI.po │ │ │ ├── 6-simulate-operation-in-TUI.mo │ │ │ └── 6-simulate-operation-in-TUI.po │ │ │ ├── roadmap.mo │ │ │ ├── roadmap.po │ │ │ └── tutorials │ │ │ ├── 1-get-started.mo │ │ │ ├── 1-get-started.po │ │ │ ├── 2-get-data.mo │ │ │ ├── 2-get-data.po │ │ │ ├── 3-start-first-strategy.mo │ │ │ ├── 3-start-first-strategy.po │ │ │ ├── 4-build-in-strategies.mo │ │ │ ├── 4-build-in-strategies.po │ │ │ ├── 5-first-self-defined-strategy.mo │ │ │ ├── 5-first-self-defined-strategy.po │ │ │ ├── 6-more-self-defined-strategies.mo │ │ │ ├── 6-more-self-defined-strategies.po │ │ │ ├── 7-more-complicated-self-define-srtategy.mo │ │ │ ├── 7-more-complicated-self-define-srtategy.po │ │ │ ├── Tutorial 06 - 交易策略的优化.mo │ │ │ ├── Tutorial 06 - 交易策略的优化.po │ │ │ ├── Tutorial 07 - 交易策略的部署及运行.mo │ │ │ ├── Tutorial 07 - 交易策略的部署及运行.po │ │ │ ├── Tutorial 08 - 历史数据的操作和分析.mo │ │ │ └── Tutorial 08 - 历史数据的操作和分析.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── CODE_OF_CONDUCT.po │ │ │ ├── CONTRIBUTING.po │ │ │ ├── LICENSE.po │ │ │ ├── RELEASE_HISTORY.po │ │ │ ├── about.po │ │ │ ├── api │ │ │ ├── HistoryPanel.po │ │ │ ├── Operators.po │ │ │ ├── Strategies.po │ │ │ ├── api_reference.po │ │ │ ├── built_in_strategies.po │ │ │ ├── data_source.po │ │ │ ├── data_types.po │ │ │ ├── history_data.po │ │ │ ├── history_data_types.po │ │ │ └── use_qteasy.po │ │ │ ├── back_testing │ │ │ └── overview.po │ │ │ ├── examples │ │ │ ├── Example_01_双均线择时策略.po │ │ │ ├── Example_02_Alpha选股策略.po │ │ │ ├── Example_03_集合竞价选股.po │ │ │ ├── Example_04_多因子选股.po │ │ │ ├── Example_05_类网格交易.po │ │ │ ├── Example_06_指数增强选股.po │ │ │ └── Example_13_经典网格交易.po │ │ │ ├── faq.po │ │ │ ├── getting_started.po │ │ │ ├── help.po │ │ │ ├── index.po │ │ │ ├── manage_data │ │ │ ├── 1. overview.po │ │ │ ├── 2. datasource.po │ │ │ ├── 3. data_tables_10.po │ │ │ ├── 3. data_tables_20.po │ │ │ ├── 3. data_tables_30.po │ │ │ ├── 3. data_tables_35.po │ │ │ ├── 3. data_tables_40.po │ │ │ ├── 3. data_tables_50.po │ │ │ ├── 4. data_channels.po │ │ │ └── 5. datatypes.po │ │ │ ├── manage_strategies │ │ │ └── overview.po │ │ │ ├── optimization │ │ │ └── overview.po │ │ │ ├── references │ │ │ ├── 1-build-in-results.po │ │ │ ├── 1-simulation-overview.po │ │ │ ├── 2-get-history-data.po │ │ │ ├── 2-historical_data_types.po │ │ │ ├── 3-back-test-strategy.po │ │ │ ├── 4-build-in-strategy-blender.po │ │ │ ├── 5-optimize-strategy.po │ │ │ ├── 5-simulate-operation-in-CLI.po │ │ │ └── 6-simulate-operation-in-TUI.po │ │ │ ├── roadmap.po │ │ │ └── tutorials │ │ │ ├── 1-get-started.po │ │ │ ├── 2-get-data.po │ │ │ ├── 3-start-first-strategy.po │ │ │ ├── 4-build-in-strategies.po │ │ │ ├── 5-first-self-defined-strategy.po │ │ │ ├── 6-more-self-defined-strategies.po │ │ │ ├── 7-more-complicated-self-define-srtategy.po │ │ │ ├── Tutorial 06 - 交易策略的优化.po │ │ │ ├── Tutorial 07 - 交易策略的部署及运行.po │ │ │ └── Tutorial 08 - 历史数据的操作和分析.po │ └── fr │ │ └── LC_MESSAGES │ │ ├── CODE_OF_CONDUCT.po │ │ ├── CONTRIBUTING.po │ │ ├── LICENSE.po │ │ ├── RELEASE_HISTORY.po │ │ ├── about.po │ │ ├── api │ │ ├── HistoryPanel.po │ │ ├── Operators.po │ │ ├── Strategies.po │ │ ├── api_reference.po │ │ ├── built_in_strategies.po │ │ ├── data_source.po │ │ ├── data_types.po │ │ ├── history_data.po │ │ ├── history_data_types.po │ │ └── use_qteasy.po │ │ ├── back_testing │ │ └── overview.po │ │ ├── examples │ │ ├── Example_01_双均线择时策略.po │ │ ├── Example_02_Alpha选股策略.po │ │ ├── Example_03_集合竞价选股.po │ │ ├── Example_04_多因子选股.po │ │ ├── Example_05_类网格交易.po │ │ ├── Example_06_指数增强选股.po │ │ └── Example_13_经典网格交易.po │ │ ├── faq.po │ │ ├── getting_started.po │ │ ├── help.po │ │ ├── index.po │ │ ├── manage_data │ │ ├── 1. overview.po │ │ ├── 2. datasource.po │ │ ├── 3. data_tables_10.po │ │ ├── 3. data_tables_20.po │ │ ├── 3. data_tables_30.po │ │ ├── 3. data_tables_35.po │ │ ├── 3. data_tables_40.po │ │ ├── 3. data_tables_50.po │ │ ├── 4. data_channels.po │ │ └── 5. datatypes.po │ │ ├── manage_strategies │ │ └── overview.po │ │ ├── optimization │ │ └── overview.po │ │ ├── references │ │ ├── 1-build-in-results.po │ │ ├── 1-simulation-overview.po │ │ ├── 2-get-history-data.po │ │ ├── 2-historical_data_types.po │ │ ├── 3-back-test-strategy.po │ │ ├── 4-build-in-strategy-blender.po │ │ ├── 5-optimize-strategy.po │ │ ├── 5-simulate-operation-in-CLI.po │ │ └── 6-simulate-operation-in-TUI.po │ │ ├── roadmap.po │ │ └── tutorials │ │ ├── 1-get-started.po │ │ ├── 2-get-data.po │ │ ├── 3-start-first-strategy.po │ │ ├── 4-build-in-strategies.po │ │ ├── 5-first-self-defined-strategy.po │ │ ├── 6-more-self-defined-strategies.po │ │ ├── 7-more-complicated-self-define-srtategy.po │ │ ├── Tutorial 06 - 交易策略的优化.po │ │ ├── Tutorial 07 - 交易策略的部署及运行.po │ │ └── Tutorial 08 - 历史数据的操作和分析.po │ ├── manage_data │ ├── 1. overview.md │ ├── 2. datasource.md │ ├── 3. data_tables_10.md │ ├── 3. data_tables_20.md │ ├── 3. data_tables_30.md │ ├── 3. data_tables_35.md │ ├── 3. data_tables_40.md │ ├── 3. data_tables_50.md │ ├── 4. data_channels.md │ ├── 5. datatypes.md │ └── img │ │ ├── DataFetching.png │ │ ├── InformationExtraction.png │ │ └── Overview.png │ ├── manage_strategies │ └── overview.md │ ├── optimization │ └── overview.md │ ├── qteasy_logo_horizontal.png │ ├── references │ ├── 1-build-in-results.md │ ├── 1-simulation-overview.md │ ├── 2-get-history-data.md │ ├── 2-historical_data_types.md │ ├── 3-back-test-strategy.md │ ├── 4-build-in-strategy-blender.md │ ├── 5-optimize-strategy.md │ ├── 5-simulate-operation-in-CLI.md │ ├── 6-simulate-operation-in-TUI.md │ └── img │ │ ├── output_10_1.png │ │ ├── output_11_1.png │ │ └── output_12_1_2.png │ ├── roadmap.rst │ └── tutorials │ ├── 1-get-started.md │ ├── 2-get-data.md │ ├── 3-start-first-strategy.md │ ├── 4-build-in-strategies.md │ ├── 5-first-self-defined-strategy.md │ ├── 6-more-self-defined-strategies.md │ ├── 7-more-complicated-self-define-srtategy.md │ ├── Tutorial 06 - 交易策略的优化.md │ ├── Tutorial 07 - 交易策略的部署及运行.md │ ├── Tutorial 08 - 历史数据的操作和分析.md │ └── img │ ├── Data_window_explained.png │ ├── MAV_Cross_Strategy.png │ ├── MAV_Cross_Strategy2.png │ ├── candle-600004-b.png │ ├── candle-600004.png │ ├── get_stock_info.png │ ├── jupyter_notebook.png │ ├── mysql.png │ ├── output_11_3.png │ ├── output_11_3_copy.png │ ├── output_12_1.png │ ├── output_12_2.png │ ├── output_12_3.png │ ├── output_13_3.png │ ├── output_14_2.png │ ├── output_14_3.png │ ├── output_15_3.png │ ├── output_16_2.png │ ├── output_16_3.png │ ├── output_17_3.png │ ├── output_18_1.png │ ├── output_18_10.png │ ├── output_18_11.png │ ├── output_18_2.png │ ├── output_18_3.png │ ├── output_18_3_copy.png │ ├── output_18_4.png │ ├── output_18_5.png │ ├── output_18_6.png │ ├── output_18_7.png │ ├── output_18_8.png │ ├── output_18_9.png │ ├── output_19_3.png │ ├── output_20_2.png │ ├── output_20_2_copy.png │ ├── output_20_3.png │ ├── output_21_2.png │ ├── output_21_3.png │ ├── output_22_2.png │ ├── output_22_3.png │ ├── output_23_3.png │ ├── output_24_2.png │ ├── output_24_3.png │ ├── output_25_3.png │ ├── output_26_3.png │ ├── output_27_3.png │ ├── output_28_3.png │ ├── output_29_3.png │ ├── output_30_3.png │ ├── output_31_3.png │ ├── output_32_3.png │ ├── output_33_3.png │ ├── output_34_3.png │ ├── output_35_3.png │ ├── output_36_3.png │ ├── output_37_3.png │ ├── output_38_3.png │ ├── output_39_3.png │ ├── output_3_1.png │ ├── output_3_3.png │ ├── output_40_3.png │ ├── output_41_3.png │ ├── output_42_3.png │ ├── output_4_1.png │ ├── output_4_3.png │ ├── output_4_4.png │ ├── output_5_1.png │ ├── output_5_3.png │ ├── output_6_1.png │ ├── output_6_3.png │ ├── output_7_1.png │ ├── output_7_3.png │ ├── output_8_1.png │ ├── output_8_3.png │ ├── output_9_3.png │ ├── tushare-3.png │ ├── tushare.png │ ├── tushare4.png │ ├── tutorial02-01.png │ ├── tutorial02-02.png │ ├── tutorial02-03.png │ ├── tutorial02-04.png │ ├── tutorial02-05.png │ ├── tutorial02-06.png │ ├── tutorial02-07.png │ ├── tutorial02-08.png │ ├── tutorial02-09.png │ └── tutorial02-10.png ├── examples ├── live_daily.py ├── live_example.py ├── live_grid.py ├── live_grid_multi.py └── live_rolling.py ├── meta.yaml ├── pyproject.toml ├── qteasy ├── __init__.py ├── _arg_validators.py ├── akfuncs.py ├── backtest.py ├── backtest_api.c ├── blender.py ├── broker.py ├── built_in.py ├── configure.py ├── core.py ├── data_channels.py ├── database.py ├── datatables.py ├── datatypes.py ├── emfuncs.py ├── errors.py ├── evaluate.py ├── finance.py ├── history.py ├── optimization.py ├── qt_code.py ├── qt_operator.py ├── sinafuncs.py ├── space.py ├── strategy.py ├── tafuncs.py ├── trade_recording.py ├── trader.py ├── trader_cli.py ├── trader_tui.py ├── trading_util.py ├── tsfuncs.py ├── tui_style.tcss ├── utilfuncs.py └── visual.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_akshare.py ├── test_broker.py ├── test_cashplan.py ├── test_channels.py ├── test_code.py ├── test_config.py ├── test_core_sub_funcs.py ├── test_cost.py ├── test_datasource.py ├── test_datatables.py ├── test_datatypes.py ├── test_eastmoney.py ├── test_entry.py ├── test_evaluations.py ├── test_fast_experiments.py ├── test_historypanel.py ├── test_log.py ├── test_loop.py ├── test_operator_and_strategy.py ├── test_qt.py ├── test_space.py ├── test_ta_funcs.py ├── test_trader.py ├── test_trader_shell.py ├── test_trading.py ├── test_tui.py ├── test_tushare.py ├── test_utilityfuncs.py └── test_visual.py /.github/ISSUE_TEMPLATE/bug-report---bug报告.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/.github/ISSUE_TEMPLATE/bug-report---bug报告.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request--功能需求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/.github/ISSUE_TEMPLATE/feature-request--功能需求.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/README_EN.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/source/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/source/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/LICENSE.md -------------------------------------------------------------------------------- /docs/source/QTEASY_facebook_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/QTEASY_facebook_cover.png -------------------------------------------------------------------------------- /docs/source/RELEASE_HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/RELEASE_HISTORY.md -------------------------------------------------------------------------------- /docs/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/_static/style.css -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/about.md -------------------------------------------------------------------------------- /docs/source/api/HistoryPanel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/HistoryPanel.rst -------------------------------------------------------------------------------- /docs/source/api/Operators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/Operators.rst -------------------------------------------------------------------------------- /docs/source/api/Strategies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/Strategies.rst -------------------------------------------------------------------------------- /docs/source/api/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/api_reference.rst -------------------------------------------------------------------------------- /docs/source/api/built_in_strategies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/built_in_strategies.rst -------------------------------------------------------------------------------- /docs/source/api/data_source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/data_source.rst -------------------------------------------------------------------------------- /docs/source/api/data_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/data_types.rst -------------------------------------------------------------------------------- /docs/source/api/history_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/history_data.rst -------------------------------------------------------------------------------- /docs/source/api/history_data_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/history_data_types.rst -------------------------------------------------------------------------------- /docs/source/api/use_qteasy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/api/use_qteasy.rst -------------------------------------------------------------------------------- /docs/source/back_testing/overview.md: -------------------------------------------------------------------------------- 1 | # 交易策略的回测 2 | 3 | 未完待续 4 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/examples/Example_01_双均线择时策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_01_双均线择时策略.md -------------------------------------------------------------------------------- /docs/source/examples/Example_02_Alpha选股策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_02_Alpha选股策略.md -------------------------------------------------------------------------------- /docs/source/examples/Example_03_集合竞价选股.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_03_集合竞价选股.md -------------------------------------------------------------------------------- /docs/source/examples/Example_04_多因子选股.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_04_多因子选股.md -------------------------------------------------------------------------------- /docs/source/examples/Example_05_类网格交易.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_05_类网格交易.md -------------------------------------------------------------------------------- /docs/source/examples/Example_06_指数增强选股.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_06_指数增强选股.md -------------------------------------------------------------------------------- /docs/source/examples/Example_13_经典网格交易.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/Example_13_经典网格交易.md -------------------------------------------------------------------------------- /docs/source/examples/img/output_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_13_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_3_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_3_2.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_4_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_4_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_4_1_2.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_4_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_4_1_3.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_4_3.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_4_4.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_5_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_5_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_5_1_2.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_6_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_7_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/output_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/output_9_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/trader_app_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/trader_app_1.png -------------------------------------------------------------------------------- /docs/source/examples/img/trader_app_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/trader_app_2.png -------------------------------------------------------------------------------- /docs/source/examples/img/trader_app_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/trader_app_3.png -------------------------------------------------------------------------------- /docs/source/examples/img/trader_app_light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/examples/img/trader_app_light_theme.png -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/getting_started.md -------------------------------------------------------------------------------- /docs/source/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/help.md -------------------------------------------------------------------------------- /docs/source/img/Essence_of_Strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/Essence_of_Strategy.png -------------------------------------------------------------------------------- /docs/source/img/Strategy_Class_Illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/Strategy_Class_Illustration.png -------------------------------------------------------------------------------- /docs/source/img/output_14_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_14_3.png -------------------------------------------------------------------------------- /docs/source/img/output_15_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_15_3.png -------------------------------------------------------------------------------- /docs/source/img/output_21_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_21_1.png -------------------------------------------------------------------------------- /docs/source/img/output_24_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_24_1.png -------------------------------------------------------------------------------- /docs/source/img/output_26_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_26_1.png -------------------------------------------------------------------------------- /docs/source/img/output_27_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_27_1.png -------------------------------------------------------------------------------- /docs/source/img/output_27_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_27_2.png -------------------------------------------------------------------------------- /docs/source/img/output_27_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_27_3.png -------------------------------------------------------------------------------- /docs/source/img/output_28_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_28_1.png -------------------------------------------------------------------------------- /docs/source/img/output_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_3_1.png -------------------------------------------------------------------------------- /docs/source/img/output_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_3_4.png -------------------------------------------------------------------------------- /docs/source/img/output_3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_3_5.png -------------------------------------------------------------------------------- /docs/source/img/output_5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_5_2.png -------------------------------------------------------------------------------- /docs/source/img/output_7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_7_2.png -------------------------------------------------------------------------------- /docs/source/img/output_8_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_8_3.png -------------------------------------------------------------------------------- /docs/source/img/output_dyna_plot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/output_dyna_plot.gif -------------------------------------------------------------------------------- /docs/source/img/qteasy_logo_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/img/qteasy_logo_horizontal.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/LICENSE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/LICENSE.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/RELEASE_HISTORY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/RELEASE_HISTORY.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/about.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/about.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/about.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/about.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/HistoryPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/HistoryPanel.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/Operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/Operators.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/Strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/Strategies.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/api_reference.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/api_reference.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/built_in_strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/built_in_strategies.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/data_source.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/data_source.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/data_types.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/history_data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/history_data.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/history_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/history_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/api/use_qteasy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/api/use_qteasy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/back_testing/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/back_testing/overview.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_01_双均线择时策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_01_双均线择时策略.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_02_Alpha选股策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_02_Alpha选股策略.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_03_集合竞价选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_03_集合竞价选股.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_04_多因子选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_04_多因子选股.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_05_类网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_05_类网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_06_指数增强选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_06_指数增强选股.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/examples/Example_13_经典网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/examples/Example_13_经典网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/getting_started.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/getting_started.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/help.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/help.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/help.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/1. overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/1. overview.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/2. datasource.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/2. datasource.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_10.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_10.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_20.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_20.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_30.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_30.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_35.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_35.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_40.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_40.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_50.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/3. data_tables_50.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/4. data_channels.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/4. data_channels.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_data/5. datatypes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_data/5. datatypes.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/manage_strategies/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/manage_strategies/overview.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/optimization/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/optimization/overview.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/1-build-in-results.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/1-build-in-results.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/1-build-in-results.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/1-build-in-results.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/1-simulation-overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/1-simulation-overview.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/1-simulation-overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/1-simulation-overview.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/2-get-history-data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/2-get-history-data.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/2-get-history-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/2-get-history-data.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/2-historical_data_types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/2-historical_data_types.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/2-historical_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/2-historical_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/3-back-test-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/3-back-test-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/4-build-in-strategy-blender.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/4-build-in-strategy-blender.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/5-optimize-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/5-optimize-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/5-simulate-operation-in-CLI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/5-simulate-operation-in-CLI.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/references/6-simulate-operation-in-TUI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/references/6-simulate-operation-in-TUI.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/roadmap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/roadmap.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/1-get-started.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/1-get-started.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/1-get-started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/1-get-started.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/2-get-data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/2-get-data.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/2-get-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/2-get-data.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/3-start-first-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/3-start-first-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/3-start-first-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/3-start-first-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/4-build-in-strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/4-build-in-strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/4-build-in-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/4-build-in-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/5-first-self-defined-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/5-first-self-defined-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/6-more-self-defined-strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/6-more-self-defined-strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.mo -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po -------------------------------------------------------------------------------- /docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/de/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/CODE_OF_CONDUCT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/CODE_OF_CONDUCT.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/CONTRIBUTING.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/CONTRIBUTING.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/LICENSE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/LICENSE.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/LICENSE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/LICENSE.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/RELEASE_HISTORY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/RELEASE_HISTORY.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/RELEASE_HISTORY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/RELEASE_HISTORY.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/about.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/about.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/about.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/about.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/HistoryPanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/HistoryPanel.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/HistoryPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/HistoryPanel.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/Operators.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/Operators.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/Operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/Operators.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/Strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/Strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/Strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/Strategies.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/api_reference.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/api_reference.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/api_reference.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/api_reference.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/built_in_strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/built_in_strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/built_in_strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/built_in_strategies.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/data_source.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/data_source.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/data_source.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/data_source.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/data_types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/data_types.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/data_types.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/history_data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/history_data.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/history_data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/history_data.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/history_data_types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/history_data_types.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/history_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/history_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/use_qteasy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/use_qteasy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/api/use_qteasy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/api/use_qteasy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/back_testing/overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/back_testing/overview.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/back_testing/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/back_testing/overview.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_01_双均线择时策略.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_01_双均线择时策略.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_01_双均线择时策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_01_双均线择时策略.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_02_Alpha选股策略.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_02_Alpha选股策略.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_02_Alpha选股策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_02_Alpha选股策略.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_03_集合竞价选股.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_03_集合竞价选股.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_03_集合竞价选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_03_集合竞价选股.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_04_多因子选股.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_04_多因子选股.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_04_多因子选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_04_多因子选股.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_05_类网格交易.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_05_类网格交易.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_05_类网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_05_类网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_06_指数增强选股.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_06_指数增强选股.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_06_指数增强选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_06_指数增强选股.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_13_经典网格交易.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_13_经典网格交易.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/examples/Example_13_经典网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/examples/Example_13_经典网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/faq.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/faq.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/getting_started.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/getting_started.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/help.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/help.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/help.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/index.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/1. overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/1. overview.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/1. overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/1. overview.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/2. datasource.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/2. datasource.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/2. datasource.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/2. datasource.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_10.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_10.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_10.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_20.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_20.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_20.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_20.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_30.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_30.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_30.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_30.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_35.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_35.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_35.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_35.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_40.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_40.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_40.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_40.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_50.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_50.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/3. data_tables_50.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/4. data_channels.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/4. data_channels.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/4. data_channels.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/4. data_channels.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/5. datatypes.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/5. datatypes.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_data/5. datatypes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_data/5. datatypes.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_strategies/overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_strategies/overview.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/manage_strategies/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/manage_strategies/overview.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/optimization/overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/optimization/overview.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/optimization/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/optimization/overview.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/1-build-in-results.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/1-build-in-results.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/1-build-in-results.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/1-build-in-results.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/1-simulation-overview.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/1-simulation-overview.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/1-simulation-overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/1-simulation-overview.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/2-get-history-data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/2-get-history-data.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/2-get-history-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/2-get-history-data.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/2-historical_data_types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/2-historical_data_types.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/2-historical_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/2-historical_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/3-back-test-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/3-back-test-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/3-back-test-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/3-back-test-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/4-build-in-strategy-blender.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/4-build-in-strategy-blender.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/4-build-in-strategy-blender.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/4-build-in-strategy-blender.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/5-optimize-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/5-optimize-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/5-optimize-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/5-optimize-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/5-simulate-operation-in-CLI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/5-simulate-operation-in-CLI.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/5-simulate-operation-in-CLI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/5-simulate-operation-in-CLI.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/6-simulate-operation-in-TUI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/6-simulate-operation-in-TUI.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/references/6-simulate-operation-in-TUI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/references/6-simulate-operation-in-TUI.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/roadmap.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/roadmap.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/roadmap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/roadmap.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/1-get-started.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/1-get-started.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/1-get-started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/1-get-started.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/2-get-data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/2-get-data.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/2-get-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/2-get-data.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/3-start-first-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/3-start-first-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/3-start-first-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/3-start-first-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/4-build-in-strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/4-build-in-strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/4-build-in-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/4-build-in-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/5-first-self-defined-strategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/5-first-self-defined-strategy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/6-more-self-defined-strategies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/6-more-self-defined-strategies.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.mo -------------------------------------------------------------------------------- /docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/en/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/LICENSE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/LICENSE.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/RELEASE_HISTORY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/RELEASE_HISTORY.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/about.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/about.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/HistoryPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/HistoryPanel.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/Operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/Operators.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/Strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/Strategies.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/api_reference.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/api_reference.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/built_in_strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/built_in_strategies.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/data_source.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/data_source.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/data_types.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/history_data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/history_data.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/history_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/history_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/api/use_qteasy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/api/use_qteasy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/back_testing/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/back_testing/overview.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_01_双均线择时策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_01_双均线择时策略.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_02_Alpha选股策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_02_Alpha选股策略.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_03_集合竞价选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_03_集合竞价选股.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_04_多因子选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_04_多因子选股.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_05_类网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_05_类网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_06_指数增强选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_06_指数增强选股.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/examples/Example_13_经典网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/examples/Example_13_经典网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/help.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/1. overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/1. overview.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/2. datasource.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/2. datasource.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_10.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_10.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_20.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_20.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_30.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_30.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_35.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_35.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_40.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_40.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_50.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/3. data_tables_50.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/4. data_channels.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/4. data_channels.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_data/5. datatypes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_data/5. datatypes.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/manage_strategies/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/manage_strategies/overview.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/optimization/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/optimization/overview.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/1-build-in-results.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/1-build-in-results.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/1-simulation-overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/1-simulation-overview.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/2-get-history-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/2-get-history-data.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/2-historical_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/2-historical_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/3-back-test-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/3-back-test-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/4-build-in-strategy-blender.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/4-build-in-strategy-blender.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/5-optimize-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/5-optimize-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/5-simulate-operation-in-CLI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/5-simulate-operation-in-CLI.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/references/6-simulate-operation-in-TUI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/references/6-simulate-operation-in-TUI.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/roadmap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/roadmap.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/1-get-started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/1-get-started.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/2-get-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/2-get-data.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/3-start-first-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/3-start-first-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/4-build-in-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/4-build-in-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po -------------------------------------------------------------------------------- /docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/es/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/CONTRIBUTING.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/CONTRIBUTING.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/LICENSE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/LICENSE.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/RELEASE_HISTORY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/RELEASE_HISTORY.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/about.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/about.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/HistoryPanel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/HistoryPanel.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/Operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/Operators.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/Strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/Strategies.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/api_reference.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/api_reference.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/built_in_strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/built_in_strategies.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/data_source.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/data_source.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/data_types.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/history_data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/history_data.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/history_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/history_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/api/use_qteasy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/api/use_qteasy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/back_testing/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/back_testing/overview.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_01_双均线择时策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_01_双均线择时策略.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_02_Alpha选股策略.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_02_Alpha选股策略.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_03_集合竞价选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_03_集合竞价选股.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_04_多因子选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_04_多因子选股.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_05_类网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_05_类网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_06_指数增强选股.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_06_指数增强选股.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/examples/Example_13_经典网格交易.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/examples/Example_13_经典网格交易.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/help.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/1. overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/1. overview.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/2. datasource.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/2. datasource.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_10.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_10.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_20.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_20.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_30.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_30.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_35.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_35.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_40.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_40.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_50.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/3. data_tables_50.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/4. data_channels.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/4. data_channels.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_data/5. datatypes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_data/5. datatypes.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/manage_strategies/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/manage_strategies/overview.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/optimization/overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/optimization/overview.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/1-build-in-results.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/1-build-in-results.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/1-simulation-overview.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/1-simulation-overview.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/2-get-history-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/2-get-history-data.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/2-historical_data_types.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/2-historical_data_types.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/3-back-test-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/3-back-test-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/4-build-in-strategy-blender.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/4-build-in-strategy-blender.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/5-optimize-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/5-optimize-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/5-simulate-operation-in-CLI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/5-simulate-operation-in-CLI.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/references/6-simulate-operation-in-TUI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/references/6-simulate-operation-in-TUI.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/roadmap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/roadmap.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/1-get-started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/1-get-started.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/2-get-data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/2-get-data.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/3-start-first-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/3-start-first-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/4-build-in-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/4-build-in-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/5-first-self-defined-strategy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/6-more-self-defined-strategies.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/7-more-complicated-self-define-srtategy.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 06 - 交易策略的优化.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 07 - 交易策略的部署及运行.po -------------------------------------------------------------------------------- /docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/locale/fr/LC_MESSAGES/tutorials/Tutorial 08 - 历史数据的操作和分析.po -------------------------------------------------------------------------------- /docs/source/manage_data/1. overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/1. overview.md -------------------------------------------------------------------------------- /docs/source/manage_data/2. datasource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/2. datasource.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_10.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_20.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_30.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_35.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_40.md -------------------------------------------------------------------------------- /docs/source/manage_data/3. data_tables_50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/3. data_tables_50.md -------------------------------------------------------------------------------- /docs/source/manage_data/4. data_channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/4. data_channels.md -------------------------------------------------------------------------------- /docs/source/manage_data/5. datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/5. datatypes.md -------------------------------------------------------------------------------- /docs/source/manage_data/img/DataFetching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/img/DataFetching.png -------------------------------------------------------------------------------- /docs/source/manage_data/img/InformationExtraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/img/InformationExtraction.png -------------------------------------------------------------------------------- /docs/source/manage_data/img/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/manage_data/img/Overview.png -------------------------------------------------------------------------------- /docs/source/manage_strategies/overview.md: -------------------------------------------------------------------------------- 1 | # 使用交易策略 2 | 3 | 未完待续 -------------------------------------------------------------------------------- /docs/source/optimization/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/optimization/overview.md -------------------------------------------------------------------------------- /docs/source/qteasy_logo_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/qteasy_logo_horizontal.png -------------------------------------------------------------------------------- /docs/source/references/1-build-in-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/1-build-in-results.md -------------------------------------------------------------------------------- /docs/source/references/1-simulation-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/1-simulation-overview.md -------------------------------------------------------------------------------- /docs/source/references/2-get-history-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/2-get-history-data.md -------------------------------------------------------------------------------- /docs/source/references/2-historical_data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/2-historical_data_types.md -------------------------------------------------------------------------------- /docs/source/references/3-back-test-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/3-back-test-strategy.md -------------------------------------------------------------------------------- /docs/source/references/4-build-in-strategy-blender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/4-build-in-strategy-blender.md -------------------------------------------------------------------------------- /docs/source/references/5-optimize-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/5-optimize-strategy.md -------------------------------------------------------------------------------- /docs/source/references/5-simulate-operation-in-CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/5-simulate-operation-in-CLI.md -------------------------------------------------------------------------------- /docs/source/references/6-simulate-operation-in-TUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/6-simulate-operation-in-TUI.md -------------------------------------------------------------------------------- /docs/source/references/img/output_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/img/output_10_1.png -------------------------------------------------------------------------------- /docs/source/references/img/output_11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/img/output_11_1.png -------------------------------------------------------------------------------- /docs/source/references/img/output_12_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/references/img/output_12_1_2.png -------------------------------------------------------------------------------- /docs/source/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/roadmap.rst -------------------------------------------------------------------------------- /docs/source/tutorials/1-get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/1-get-started.md -------------------------------------------------------------------------------- /docs/source/tutorials/2-get-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/2-get-data.md -------------------------------------------------------------------------------- /docs/source/tutorials/3-start-first-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/3-start-first-strategy.md -------------------------------------------------------------------------------- /docs/source/tutorials/4-build-in-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/4-build-in-strategies.md -------------------------------------------------------------------------------- /docs/source/tutorials/5-first-self-defined-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/5-first-self-defined-strategy.md -------------------------------------------------------------------------------- /docs/source/tutorials/6-more-self-defined-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/6-more-self-defined-strategies.md -------------------------------------------------------------------------------- /docs/source/tutorials/7-more-complicated-self-define-srtategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/7-more-complicated-self-define-srtategy.md -------------------------------------------------------------------------------- /docs/source/tutorials/Tutorial 06 - 交易策略的优化.md: -------------------------------------------------------------------------------- 1 | # 交易策略的优化 2 | 3 | ## TO BE COMPLETED -------------------------------------------------------------------------------- /docs/source/tutorials/Tutorial 07 - 交易策略的部署及运行.md: -------------------------------------------------------------------------------- 1 | # 交易策略的部署运行 2 | 3 | ## TO BE COMPLETED -------------------------------------------------------------------------------- /docs/source/tutorials/Tutorial 08 - 历史数据的操作和分析.md: -------------------------------------------------------------------------------- 1 | # 历史数据的操作和分析 2 | 3 | ## TO BE COMPLETED -------------------------------------------------------------------------------- /docs/source/tutorials/img/Data_window_explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/Data_window_explained.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/MAV_Cross_Strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/MAV_Cross_Strategy.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/MAV_Cross_Strategy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/MAV_Cross_Strategy2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/candle-600004-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/candle-600004-b.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/candle-600004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/candle-600004.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/get_stock_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/get_stock_info.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/jupyter_notebook.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/mysql.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_11_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_11_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_11_3_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_11_3_copy.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_12_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_12_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_12_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_12_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_12_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_13_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_13_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_14_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_14_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_14_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_14_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_15_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_15_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_16_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_16_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_16_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_16_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_17_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_17_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_10.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_11.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_3_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_3_copy.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_4.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_5.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_6.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_7.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_8.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_18_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_18_9.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_19_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_19_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_20_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_20_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_20_2_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_20_2_copy.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_20_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_20_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_21_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_21_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_21_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_21_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_22_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_22_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_22_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_22_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_23_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_23_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_24_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_24_2.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_24_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_24_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_25_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_25_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_26_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_26_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_27_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_27_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_28_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_28_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_29_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_29_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_30_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_30_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_31_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_31_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_32_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_32_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_33_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_33_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_34_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_34_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_35_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_35_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_36_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_36_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_37_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_37_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_38_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_38_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_39_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_39_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_3_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_3_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_40_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_40_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_41_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_41_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_42_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_42_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_4_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_4_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_4_4.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_5_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_5_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_6_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_6_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_7_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_7_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_7_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_8_1.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_8_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_8_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/output_9_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/output_9_3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tushare-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tushare-3.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tushare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tushare.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tushare4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tushare4.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-01.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-02.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-03.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-04.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-05.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-06.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-07.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-08.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-09.png -------------------------------------------------------------------------------- /docs/source/tutorials/img/tutorial02-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/docs/source/tutorials/img/tutorial02-10.png -------------------------------------------------------------------------------- /examples/live_daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/examples/live_daily.py -------------------------------------------------------------------------------- /examples/live_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/examples/live_example.py -------------------------------------------------------------------------------- /examples/live_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/examples/live_grid.py -------------------------------------------------------------------------------- /examples/live_grid_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/examples/live_grid_multi.py -------------------------------------------------------------------------------- /examples/live_rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/examples/live_rolling.py -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/meta.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qteasy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/__init__.py -------------------------------------------------------------------------------- /qteasy/_arg_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/_arg_validators.py -------------------------------------------------------------------------------- /qteasy/akfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/akfuncs.py -------------------------------------------------------------------------------- /qteasy/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/backtest.py -------------------------------------------------------------------------------- /qteasy/backtest_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/backtest_api.c -------------------------------------------------------------------------------- /qteasy/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/blender.py -------------------------------------------------------------------------------- /qteasy/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/broker.py -------------------------------------------------------------------------------- /qteasy/built_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/built_in.py -------------------------------------------------------------------------------- /qteasy/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/configure.py -------------------------------------------------------------------------------- /qteasy/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/core.py -------------------------------------------------------------------------------- /qteasy/data_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/data_channels.py -------------------------------------------------------------------------------- /qteasy/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/database.py -------------------------------------------------------------------------------- /qteasy/datatables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/datatables.py -------------------------------------------------------------------------------- /qteasy/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/datatypes.py -------------------------------------------------------------------------------- /qteasy/emfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/emfuncs.py -------------------------------------------------------------------------------- /qteasy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/errors.py -------------------------------------------------------------------------------- /qteasy/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/evaluate.py -------------------------------------------------------------------------------- /qteasy/finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/finance.py -------------------------------------------------------------------------------- /qteasy/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/history.py -------------------------------------------------------------------------------- /qteasy/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/optimization.py -------------------------------------------------------------------------------- /qteasy/qt_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/qt_code.py -------------------------------------------------------------------------------- /qteasy/qt_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/qt_operator.py -------------------------------------------------------------------------------- /qteasy/sinafuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/sinafuncs.py -------------------------------------------------------------------------------- /qteasy/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/space.py -------------------------------------------------------------------------------- /qteasy/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/strategy.py -------------------------------------------------------------------------------- /qteasy/tafuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/tafuncs.py -------------------------------------------------------------------------------- /qteasy/trade_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/trade_recording.py -------------------------------------------------------------------------------- /qteasy/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/trader.py -------------------------------------------------------------------------------- /qteasy/trader_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/trader_cli.py -------------------------------------------------------------------------------- /qteasy/trader_tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/trader_tui.py -------------------------------------------------------------------------------- /qteasy/trading_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/trading_util.py -------------------------------------------------------------------------------- /qteasy/tsfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/tsfuncs.py -------------------------------------------------------------------------------- /qteasy/tui_style.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/tui_style.tcss -------------------------------------------------------------------------------- /qteasy/utilfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/utilfuncs.py -------------------------------------------------------------------------------- /qteasy/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/qteasy/visual.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_akshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_akshare.py -------------------------------------------------------------------------------- /tests/test_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_broker.py -------------------------------------------------------------------------------- /tests/test_cashplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_cashplan.py -------------------------------------------------------------------------------- /tests/test_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_channels.py -------------------------------------------------------------------------------- /tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_code.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_core_sub_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_core_sub_funcs.py -------------------------------------------------------------------------------- /tests/test_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_cost.py -------------------------------------------------------------------------------- /tests/test_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_datasource.py -------------------------------------------------------------------------------- /tests/test_datatables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_datatables.py -------------------------------------------------------------------------------- /tests/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_datatypes.py -------------------------------------------------------------------------------- /tests/test_eastmoney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_eastmoney.py -------------------------------------------------------------------------------- /tests/test_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_entry.py -------------------------------------------------------------------------------- /tests/test_evaluations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_evaluations.py -------------------------------------------------------------------------------- /tests/test_fast_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_fast_experiments.py -------------------------------------------------------------------------------- /tests/test_historypanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_historypanel.py -------------------------------------------------------------------------------- /tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_log.py -------------------------------------------------------------------------------- /tests/test_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_loop.py -------------------------------------------------------------------------------- /tests/test_operator_and_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_operator_and_strategy.py -------------------------------------------------------------------------------- /tests/test_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_qt.py -------------------------------------------------------------------------------- /tests/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_space.py -------------------------------------------------------------------------------- /tests/test_ta_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_ta_funcs.py -------------------------------------------------------------------------------- /tests/test_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_trader.py -------------------------------------------------------------------------------- /tests/test_trader_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_trader_shell.py -------------------------------------------------------------------------------- /tests/test_trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_trading.py -------------------------------------------------------------------------------- /tests/test_tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_tui.py -------------------------------------------------------------------------------- /tests/test_tushare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_tushare.py -------------------------------------------------------------------------------- /tests/test_utilityfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_utilityfuncs.py -------------------------------------------------------------------------------- /tests/test_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shepherdpp/qteasy/HEAD/tests/test_visual.py --------------------------------------------------------------------------------